diff --git a/README.md b/README.md
index 3f2ff48dd92..9714bbd1ab3 100644
--- a/README.md
+++ b/README.md
@@ -12,12 +12,12 @@ build daemon as so-called channels. To get channel information via git, add
```
For stability and maximum binary package support, it is recommended to maintain
-custom changes on top of one of the channels, e.g. `nixos-17.09` for the latest
+custom changes on top of one of the channels, e.g. `nixos-18.03` for the latest
release and `nixos-unstable` for the latest successful build of master:
```
% git remote update channels
-% git rebase channels/nixos-17.09
+% git rebase channels/nixos-18.03
```
For pull-requests, please rebase onto nixpkgs `master`.
@@ -31,9 +31,9 @@ For pull-requests, please rebase onto nixpkgs `master`.
* [Manual (NixOS)](https://nixos.org/nixos/manual/)
* [Community maintained wiki](https://nixos.wiki/)
* [Continuous package builds for unstable/master](https://hydra.nixos.org/jobset/nixos/trunk-combined)
-* [Continuous package builds for 17.09 release](https://hydra.nixos.org/jobset/nixos/release-17.09)
+* [Continuous package builds for 18.03 release](https://hydra.nixos.org/jobset/nixos/release-18.03)
* [Tests for unstable/master](https://hydra.nixos.org/job/nixos/trunk-combined/tested#tabs-constituents)
-* [Tests for 17.09 release](https://hydra.nixos.org/job/nixos/release-17.09/tested#tabs-constituents)
+* [Tests for 18.03 release](https://hydra.nixos.org/job/nixos/release-18.03/tested#tabs-constituents)
Communication:
diff --git a/doc/Makefile b/doc/Makefile
index c16e70e9c6a..0ddae8631f3 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -25,13 +25,6 @@ out/html/index.html: manual-full.xml style.css highlightjs
./manual-full.xml
mkdir -p out/html/highlightjs/
- echo "document.onreadystatechange = function () { \
- var listings = document.querySelectorAll('.programlisting, .screen'); \
- for (i = 0; i < listings.length; ++i) { \
- hljs.highlightBlock(listings[i]); \
- } \
- } " > out/html/highlightjs/loader.js
-
cp -r highlightjs out/html/
cp ./overrides.css out/html/
@@ -63,6 +56,7 @@ highlightjs:
cp -r "$$HIGHLIGHTJS/highlight.pack.js" highlightjs/
cp -r "$$HIGHLIGHTJS/LICENSE" highlightjs/
cp -r "$$HIGHLIGHTJS/mono-blue.css" highlightjs/
+ cp -r "$$HIGHLIGHTJS/loader.js" highlightjs/
manual-full.xml: ${MD_TARGETS} .version *.xml
diff --git a/doc/functions.xml b/doc/functions.xml
index 52bdf13eba9..f790512e7db 100644
--- a/doc/functions.xml
+++ b/doc/functions.xml
@@ -221,16 +221,69 @@
All generators follow a similar call interface: generatorName
- configFunctions data
, where configFunctions is a
- set of user-defined functions that format variable parts of the content.
+ configFunctions data, where configFunctions is
+ an attrset of user-defined functions that format nested parts of the
+ content.
They each have common defaults, so often they do not need to be set
manually. An example is mkSectionName ? (name: libStr.escape [ "[" "]"
- ] name)
from the INI generator. It gets the name
- of a section and returns a sanitized name. The default
+ ] name) from the INI generator. It receives the
+ name of a section and sanitizes it. The default
mkSectionName escapes [ and
] with a backslash.
+
+ Generators can be fine-tuned to produce exactly the file format required
+ by your application/service. One example is an INI-file format which uses
+ : as separator, the strings
+ "yes"/"no" as boolean values
+ and requires all string values to be quoted:
+
+
+
+with lib;
+let
+ customToINI = generators.toINI {
+ # specifies how to format a key/value pair
+ mkKeyValue = generators.mkKeyValueDefault {
+ # specifies the generated string for a subset of nix values
+ mkValueString = v:
+ if v == true then ''"yes"''
+ else if v == false then ''"no"''
+ else if isString v then ''"${v}"''
+ # and delegats all other values to the default generator
+ else generators.mkValueStringDefault {} v;
+ } ":";
+ };
+
+# the INI file can now be given as plain old nix values
+in customToINI {
+ main = {
+ pushinfo = true;
+ autopush = false;
+ host = "localhost";
+ port = 42;
+ };
+ mergetool = {
+ merge = "diff3";
+ };
+}
+
+
+ This will produce the following INI file as nix string:
+
+
+[main]
+autopush:"no"
+host:"localhost"
+port:42
+pushinfo:"yes"
+str\:ange:"very::strange"
+
+[mergetool]
+merge:"diff3"
+
+
Nix store paths can be converted to strings by enclosing a
derivation attribute like so: "${drv}"
.
diff --git a/doc/languages-frameworks/java.xml b/doc/languages-frameworks/java.xml
index 2d40a254ced..2507cc2c469 100644
--- a/doc/languages-frameworks/java.xml
+++ b/doc/languages-frameworks/java.xml
@@ -62,16 +62,7 @@ depending on the JDK at runtime.
It is possible to use a different Java compiler than
javac from the OpenJDK. For instance, to use the
-Eclipse Java Compiler:
-
-
-buildInputs = [ jre ant ecj ];
-
-
-(Note that here you don’t need the full JDK as an input, but just the
-JRE.) The ECJ has a stdenv setup hook that sets some environment
-variables to cause Ant to use ECJ, but this doesn’t work with all Ant
-files. Similarly, you can use the GNU Java Compiler:
+GNU Java Compiler:
buildInputs = [ gcj ant ];
diff --git a/doc/languages-frameworks/rust.section.md b/doc/languages-frameworks/rust.section.md
index f0498eac5b1..b77c41e9b22 100644
--- a/doc/languages-frameworks/rust.section.md
+++ b/doc/languages-frameworks/rust.section.md
@@ -16,6 +16,12 @@ cargo
into the `environment.systemPackages` or bring them into
scope with `nix-shell -p rustc cargo`.
+> If you are using NixOS and you want to use rust without a nix expression you
+> probably want to add the following in your `configuration.nix` to build
+> crates with C dependencies.
+>
+> environment.systemPackages = [binutils gcc gnumake openssl pkgconfig]
+
For daily builds (beta and nightly) use either rustup from
nixpkgs or use the [Rust nightlies
overlay](#using-the-rust-nightlies-overlay).
@@ -76,7 +82,7 @@ an example for a minimal `hello` crate:
Compiling hello v0.1.0 (file:///tmp/hello)
Finished dev [unoptimized + debuginfo] target(s) in 0.20 secs
$ carnix -o hello.nix --src ./. Cargo.lock --standalone
- $ nix-build hello.nix
+ $ nix-build hello.nix -A hello_0_1_0
Now, the file produced by the call to `carnix`, called `hello.nix`, looks like:
@@ -276,6 +282,84 @@ features, we would write:
Where `diesel.nix` is the file generated by Carnix, as explained above.
+
+## Setting Up `nix-shell`
+Oftentimes you want to develop code from within `nix-shell`. Unfortunately
+`buildRustCrate` does not support common `nix-shell` operations directly
+(see [this issue](https://github.com/NixOS/nixpkgs/issues/37945))
+so we will use `stdenv.mkDerivation` instead.
+
+Using the example `hello` project above, we want to do the following:
+- Have access to `cargo` and `rustc`
+- Have the `openssl` library available to a crate through it's _normal_
+ compilation mechanism (`pkg-config`).
+
+A typical `shell.nix` might look like:
+
+```
+with import {};
+
+stdenv.mkDerivation {
+ name = "rust-env";
+ buildInputs = [
+ rustc cargo
+
+ # Example Additional Dependencies
+ pkgconfig openssl
+ ];
+
+ # Set Environment Variables
+ RUST_BACKTRACE = 1;
+}
+```
+
+You should now be able to run the following:
+```
+$ nix-shell --pure
+$ cargo build
+$ cargo test
+```
+
+### Controlling Rust Version Inside `nix-shell`
+To control your rust version (i.e. use nightly) from within `shell.nix` (or
+other nix expressions) you can use the following `shell.nix`
+
+```
+# Latest Nightly
+with import {};
+let src = fetchFromGitHub {
+ owner = "mozilla";
+ repo = "nixpkgs-mozilla";
+ # commit from: 2018-03-27
+ rev = "2945b0b6b2fd19e7d23bac695afd65e320efcebe";
+ sha256 = "034m1dryrzh2lmjvk3c0krgip652dql46w5yfwpvh7gavd3iypyw";
+ };
+in
+with import "${src.out}/rust-overlay.nix" pkgs pkgs;
+stdenv.mkDerivation {
+ name = "rust-env";
+ buildInputs = [
+ # Note: to use use stable, just replace `nightly` with `stable`
+ latest.rustChannels.nightly.rust
+
+ # Add some extra dependencies from `pkgs`
+ pkgconfig openssl
+ ];
+
+ # Set Environment Variables
+ RUST_BACKTRACE = 1;
+}
+```
+
+Now run:
+```
+$ rustc --version
+rustc 1.26.0-nightly (188e693b3 2018-03-26)
+```
+
+To see that you are using nightly.
+
+
## Using the Rust nightlies overlay
Mozilla provides an overlay for nixpkgs to bring a nightly version of Rust into scope.
diff --git a/doc/package-notes.xml b/doc/package-notes.xml
index 2d6c87c3d07..1fccfd5d329 100644
--- a/doc/package-notes.xml
+++ b/doc/package-notes.xml
@@ -713,7 +713,7 @@ the inotify.py script in weechat-scripts requires
D-Bus or libnotify, and the fish.py script requires
pycrypto. To use these scripts, use the python
plugin's withPackages attribute:
-weechat.override {configure = {availablePlugins, ...}: {
+weechat.override { configure = {availablePlugins, ...}: {
plugins = with availablePlugins; [
(python.withPackages (ps: with ps; [ pycrypto python-dbus ]))
];
@@ -721,5 +721,15 @@ plugin's withPackages attribute:
}
+
+In order to also keep all default plugins installed, it is possible to use
+the following method:
+weechat.override { configure = { availablePlugins, ... }: {
+ plugins = builtins.attrValues (availablePlugins // {
+ python = availablePlugins.python.withPackages (ps: with ps; [ pycrypto python-dbus ]);
+ });
+}; }
+
+
diff --git a/doc/style.css b/doc/style.css
index 83dae0dd2cd..0db907815b6 100644
--- a/doc/style.css
+++ b/doc/style.css
@@ -248,6 +248,23 @@ table
box-shadow: 0.4em 0.4em 0.5em #e0e0e0;
}
+table.simplelist
+{
+ text-align: left;
+ color: #005aa0;
+ border: 0;
+ padding: 5px;
+ background: #fffff5;
+ font-weight: normal;
+ font-style: italic;
+ box-shadow: none;
+ margin-bottom: 1em;
+}
+
+div.navheader table, div.navfooter table {
+ box-shadow: none;
+}
+
div.affiliation
{
font-style: italic;
diff --git a/doc/submitting-changes.xml b/doc/submitting-changes.xml
index f65b2898262..d3cf221c9b6 100644
--- a/doc/submitting-changes.xml
+++ b/doc/submitting-changes.xml
@@ -317,11 +317,11 @@ Additional information.
review uncommitted changes:
- nix-shell -p nox --run nox-review wip
+ nix-shell -p nox --run "nox-review wip"
review changes from pull request number 12345:
- nix-shell -p nox --run nox-review pr 12345
+ nix-shell -p nox --run "nox-review pr 12345"
diff --git a/lib/default.nix b/lib/default.nix
index cbe0a0ba21b..59b3d2159da 100644
--- a/lib/default.nix
+++ b/lib/default.nix
@@ -5,9 +5,11 @@
*/
let
- callLibs = file: import file { inherit lib; };
+ inherit (import ./fixed-points.nix {}) makeExtensible;
- lib = rec {
+ lib = makeExtensible (self: let
+ callLibs = file: import file { lib = self; };
+ in with self; {
# often used, or depending on very little
trivial = callLibs ./trivial.nix;
@@ -128,5 +130,5 @@ let
mergeAttrsNoOverride mergeAttrByFunc mergeAttrsByFuncDefaults
mergeAttrsByFuncDefaultsClean mergeAttrBy
prepareDerivationArgs nixType imap overridableDelayableArgs;
- };
+ });
in lib
diff --git a/lib/generators.nix b/lib/generators.nix
index 73017f2c679..d1a8f6bf8dc 100644
--- a/lib/generators.nix
+++ b/lib/generators.nix
@@ -4,6 +4,12 @@
* They all follow a similar interface:
* generator { config-attrs } data
*
+ * `config-attrs` are “holes” in the generators
+ * with sensible default implementations that
+ * can be overwritten. The default implementations
+ * are mostly generators themselves, called with
+ * their respective default values; they can be reused.
+ *
* Tests can be found in ./tests.nix
* Documentation in the manual, #sec-generators
*/
@@ -20,6 +26,32 @@ in
rec {
+ ## -- HELPER FUNCTIONS & DEFAULTS --
+
+ /* Convert a value to a sensible default string representation.
+ * The builtin `toString` function has some strange defaults,
+ * suitable for bash scripts but not much else.
+ */
+ mkValueStringDefault = {}: v: with builtins;
+ let err = t: v: abort
+ ("generators.mkValueStringDefault: " +
+ "${t} not supported: ${toPretty {} v}");
+ in if isInt v then toString v
+ # we default to not quoting strings
+ else if isString v then v
+ # isString returns "1", which is not a good default
+ else if true == v then "true"
+ # here it returns to "", which is even less of a good default
+ else if false == v then "false"
+ else if null == v then "null"
+ # if you have lists you probably want to replace this
+ else if isList v then err "lists" v
+ # same as for lists, might want to replace
+ else if isAttrs v then err "attrsets" v
+ else if isFunction v then err "functions" v
+ else err "this value is" (toString v);
+
+
/* Generate a line of key k and value v, separated by
* character sep. If sep appears in k, it is escaped.
* Helper for synaxes with different separators.
@@ -30,11 +62,14 @@ rec {
* > "f\:oo:bar"
*/
mkKeyValueDefault = {
- mkValueString ? toString
+ mkValueString ? mkValueStringDefault {}
}: sep: k: v:
"${libStr.escape [sep] k}${sep}${mkValueString v}";
+ ## -- FILE FORMAT GENERATORS --
+
+
/* Generate a key-value-style config file from an attrset.
*
* mkKeyValue is the same as in toINI.
@@ -98,6 +133,7 @@ rec {
*/
toYAML = {}@args: toJSON args;
+
/* Pretty print a value, akin to `builtins.trace`.
* Should probably be a builtin as well.
*/
@@ -108,8 +144,9 @@ rec {
allowPrettyValues ? false
}@args: v: with builtins;
if isInt v then toString v
- else if isBool v then (if v == true then "true" else "false")
- else if isString v then "\"" + v + "\""
+ else if isString v then ''"${libStr.escape [''"''] v}"''
+ else if true == v then "true"
+ else if false == v then "false"
else if null == v then "null"
else if isFunction v then
let fna = lib.functionArgs v;
@@ -132,6 +169,6 @@ rec {
(name: value:
"${toPretty args name} = ${toPretty args value};") v)
+ " }"
- else abort "toPretty: should never happen (v = ${v})";
+ else abort "generators.toPretty: should never happen (v = ${v})";
}
diff --git a/lib/modules.nix b/lib/modules.nix
index 654c4c588de..4ef982c7ec9 100644
--- a/lib/modules.nix
+++ b/lib/modules.nix
@@ -59,7 +59,7 @@ rec {
};
};
- closed = closeModules (modules ++ [ internalModule ]) ({ inherit config options; lib = import ./.; } // specialArgs);
+ closed = closeModules (modules ++ [ internalModule ]) ({ inherit config options lib; } // specialArgs);
options = mergeModules prefix (reverseList (filterModules (specialArgs.modulesPath or "") closed));
@@ -660,7 +660,7 @@ rec {
doRename = { from, to, visible, warn, use }:
let
toOf = attrByPath to
- (abort "Renaming error: option `${showOption to}' does not exists.");
+ (abort "Renaming error: option `${showOption to}' does not exist.");
in
{ config, options, ... }:
{ options = setAttrByPath from (mkOption {
diff --git a/lib/tests/misc.nix b/lib/tests/misc.nix
index e10aea48e48..5f19dd63f2d 100644
--- a/lib/tests/misc.nix
+++ b/lib/tests/misc.nix
@@ -207,6 +207,29 @@ runTests {
expected = ''f\:oo:bar'';
};
+ testMkValueString = {
+ expr = let
+ vals = {
+ int = 42;
+ string = ''fo"o'';
+ bool = true;
+ bool2 = false;
+ null = null;
+ # float = 42.23; # floats are strange
+ };
+ in mapAttrs
+ (const (generators.mkValueStringDefault {}))
+ vals;
+ expected = {
+ int = "42";
+ string = ''fo"o'';
+ bool = "true";
+ bool2 = "false";
+ null = "null";
+ # float = "42.23" true false [ "bar" ] ]'';
+ };
+ };
+
testToKeyValue = {
expr = generators.toKeyValue {} {
key = "value";
@@ -249,6 +272,8 @@ runTests {
"section 1" = {
attribute1 = 5;
x = "Me-se JarJar Binx";
+ # booleans are converted verbatim by default
+ boolean = false;
};
"foo[]" = {
"he\\h=he" = "this is okay";
@@ -260,6 +285,7 @@ runTests {
[section 1]
attribute1=5
+ boolean=false
x=Me-se JarJar Binx
'';
};
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index b38d9b16353..6169959367a 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -72,6 +72,11 @@
github = "FireyFly";
name = "Jonas Höglund";
};
+ Fresheyeball = {
+ email = "fresheyeball@gmail.com";
+ github = "fresheyeball";
+ name = "Isaac Shapira";
+ };
Gonzih = {
email = "gonzih@gmail.com";
github = "Gonzih";
@@ -512,6 +517,11 @@
email = "sivaraman.balaji@gmail.com";
name = "Balaji Sivaraman";
};
+ bandresen = {
+ email = "bandresen@gmail.com";
+ github = "bandresen";
+ name = "Benjamin Andresen";
+ };
barrucadu = {
email = "mike@barrucadu.co.uk";
github = "barrucadu";
@@ -596,6 +606,11 @@
github = "bjornfor";
name = "Bjørn Forsman";
};
+ bkchr = {
+ email = "nixos@kchr.de";
+ github = "bkchr";
+ name = "Bastian Köcher";
+ };
bluescreen303 = {
email = "mathijs@bluescreen303.nl";
github = "bluescreen303";
@@ -690,6 +705,11 @@
github = "carlsverre";
name = "Carl Sverre";
};
+ cartr = {
+ email = "carter.sande@duodecima.technology";
+ github = "cartr";
+ name = "Carter Sande";
+ };
casey = {
email = "casey@rodarmor.net";
github = "casey";
@@ -1171,6 +1191,11 @@
github = "ellis";
name = "Ellis Whitehead";
};
+ elvishjerricco = {
+ email = "elvishjerricco@gmail.com";
+ github = "ElvishJerricco";
+ name = "Will Fancher";
+ };
enzime = {
email = "enzime@users.noreply.github.com";
github = "enzime";
@@ -1996,6 +2021,11 @@
github = "leenaars";
name = "Michiel Leenaars";
};
+ leo60228 = {
+ email = "iakornfeld@gmail.com";
+ github = "leo60228";
+ name = "leo60228";
+ };
leonardoce = {
email = "leonardo.cecchi@gmail.com";
github = "leonardoce";
@@ -2964,6 +2994,11 @@
github = "redbaron";
name = "Maxim Ivanov";
};
+ redfish64 = {
+ email = "engler@gmail.com";
+ github = "redfish64";
+ name = "Tim Engler";
+ };
redvers = {
email = "red@infect.me";
github = "redvers";
@@ -3406,6 +3441,11 @@
github = "suvash";
name = "Suvash Thapaliya";
};
+ sveitser = {
+ email = "sveitser@gmail.com";
+ github = "sveitser";
+ name = "Mathis Antony";
+ };
svsdep = {
email = "svsdep@gmail.com";
github = "svsdep";
@@ -3586,6 +3626,11 @@
github = "tnias";
name = "Philipp Bartsch";
};
+ tobim = {
+ email = "nix@tobim.fastmail.fm";
+ github = "tobimpub";
+ name = "Tobias Mayer";
+ };
tohl = {
email = "tom@logand.com";
github = "tohl";
@@ -3961,6 +4006,11 @@
github = "yrashk";
name = "Yurii Rashkovskii";
};
+ ysndr = {
+ email = "me@ysndr.de";
+ github = "ysndr";
+ name = "Yannik Sander";
+ };
yuriaisaka = {
email = "yuri.aisaka+nix@gmail.com";
github = "yuriaisaka";
diff --git a/maintainers/scripts/copy-tarballs.pl b/maintainers/scripts/copy-tarballs.pl
index f3fe7236760..31e6045fb64 100755
--- a/maintainers/scripts/copy-tarballs.pl
+++ b/maintainers/scripts/copy-tarballs.pl
@@ -100,7 +100,10 @@ sub uploadFile {
sub redirect {
my ($name, $dest) = @_;
#print STDERR "linking $name to $dest...\n";
- $bucket->add_key($name, "", { 'x-amz-website-redirect-location' => "/" . $dest })
+ $bucket->add_key($name, "", {
+ 'x-amz-website-redirect-location' => "/" . $dest,
+ 'x-amz-acl' => "public-read"
+ })
or die "failed to create redirect from $name to $dest\n";
$cache{$name} = 1;
}
@@ -112,7 +115,10 @@ sub uploadFile {
# Upload the file as sha512/.
print STDERR "uploading $fn to $mainKey...\n";
- $bucket->add_key_filename($mainKey, $fn, { 'x-amz-meta-original-name' => $name })
+ $bucket->add_key_filename($mainKey, $fn, {
+ 'x-amz-meta-original-name' => $name,
+ 'x-amz-acl' => "public-read"
+ })
or die "failed to upload $fn to $mainKey\n";
$cache{$mainKey} = 1;
}
diff --git a/nixos/doc/manual/default.nix b/nixos/doc/manual/default.nix
index c51c30065a3..ac22712baf8 100644
--- a/nixos/doc/manual/default.nix
+++ b/nixos/doc/manual/default.nix
@@ -124,11 +124,12 @@ let
manualXsltprocOptions = toString [
"--param section.autolabel 1"
"--param section.label.includes.component.label 1"
- "--stringparam html.stylesheet style.css"
+ "--stringparam html.stylesheet 'style.css overrides.css highlightjs/mono-blue.css'"
+ "--stringparam html.script './highlightjs/highlight.pack.js ./highlightjs/loader.js'"
"--param xref.with.number.and.title 1"
"--param toc.section.depth 3"
"--stringparam admon.style ''"
- "--stringparam callout.graphics.extension .gif"
+ "--stringparam callout.graphics.extension .svg"
"--stringparam current.docid manual"
"--param chunk.section.depth 0"
"--param chunk.first.sections 1"
@@ -260,9 +261,11 @@ in rec {
${manual-combined}/manual-combined.xml
mkdir -p $dst/images/callouts
- cp ${docbook5_xsl}/xml/xsl/docbook/images/callouts/*.gif $dst/images/callouts/
+ cp ${docbook5_xsl}/xml/xsl/docbook/images/callouts/*.svg $dst/images/callouts/
- cp ${./style.css} $dst/style.css
+ cp ${../../../doc/style.css} $dst/style.css
+ cp ${../../../doc/overrides.css} $dst/overrides.css
+ cp -r ${pkgs.documentation-highlighter} $dst/highlightjs
mkdir -p $out/nix-support
echo "nix-build out $out" >> $out/nix-support/hydra-build-products
@@ -286,7 +289,7 @@ in rec {
${manual-combined}/manual-combined.xml
mkdir -p $dst/epub/OEBPS/images/callouts
- cp -r ${docbook5_xsl}/xml/xsl/docbook/images/callouts/*.gif $dst/epub/OEBPS/images/callouts # */
+ cp -r ${docbook5_xsl}/xml/xsl/docbook/images/callouts/*.svg $dst/epub/OEBPS/images/callouts # */
echo "application/epub+zip" > mimetype
manual="$dst/nixos-manual.epub"
zip -0Xq "$manual" mimetype
diff --git a/nixos/doc/manual/release-notes/rl-1803.xml b/nixos/doc/manual/release-notes/rl-1803.xml
index 60c17c60413..9221c2951ed 100644
--- a/nixos/doc/manual/release-notes/rl-1803.xml
+++ b/nixos/doc/manual/release-notes/rl-1803.xml
@@ -4,7 +4,7 @@
version="5.0"
xml:id="sec-release-18.03">
-Release 18.03 (“Impala”, 2018/03/??)
+Release 18.03 (“Impala”, 2018/04/04)
+
+
+
+ End of support is planned for end of October 2018, handing over to 18.09.
+
+
+
+
+
+ Platform support: x86_64-linux and x86_64-darwin since release time (the latter isn't NixOS, really).
+ Binaries for aarch64-linux are available, but no channel exists yet, as it's waiting for some test fixes, etc.
+
+
+
Nix now defaults to 2.0; see its
@@ -27,13 +41,13 @@ has the following highlights:
- Linux kernel defaults to the 4.14 branch (it was 4.9).
+ Core version changes: linux: 4.9 -> 4.14, glibc: 2.25 -> 2.26, gcc: 6 -> 7, systemd: 234 -> 237.
- GCC defaults to 7.x (it was 6.x).
+ Desktop version changes: gnome: 3.24 -> 3.26, (KDE) plasma-desktop: 5.10 -> 5.12.
@@ -59,13 +73,7 @@ has the following highlights:
-
- The GNOME version is now 3.26.
-
-
-
-
- PHP now defaults to PHP 7.2
+ PHP now defaults to PHP 7.2, updated from 7.1.
@@ -81,9 +89,66 @@ has the following highlights:
The following new services were added since the last release:
-
-
-
+ ./config/krb5/default.nix
+ ./hardware/digitalbitbox.nix
+ ./misc/label.nix
+ ./programs/ccache.nix
+ ./programs/criu.nix
+ ./programs/digitalbitbox/default.nix
+ ./programs/less.nix
+ ./programs/npm.nix
+ ./programs/plotinus.nix
+ ./programs/rootston.nix
+ ./programs/systemtap.nix
+ ./programs/sway.nix
+ ./programs/udevil.nix
+ ./programs/way-cooler.nix
+ ./programs/yabar.nix
+ ./programs/zsh/zsh-autoenv.nix
+ ./services/backup/borgbackup.nix
+ ./services/backup/crashplan-small-business.nix
+ ./services/desktops/dleyna-renderer.nix
+ ./services/desktops/dleyna-server.nix
+ ./services/desktops/pipewire.nix
+ ./services/desktops/gnome3/chrome-gnome-shell.nix
+ ./services/desktops/gnome3/tracker-miners.nix
+ ./services/hardware/fwupd.nix
+ ./services/hardware/interception-tools.nix
+ ./services/hardware/u2f.nix
+ ./services/hardware/usbmuxd.nix
+ ./services/mail/clamsmtp.nix
+ ./services/mail/dkimproxy-out.nix
+ ./services/mail/pfix-srsd.nix
+ ./services/misc/gitea.nix
+ ./services/misc/home-assistant.nix
+ ./services/misc/ihaskell.nix
+ ./services/misc/logkeys.nix
+ ./services/misc/novacomd.nix
+ ./services/misc/osrm.nix
+ ./services/misc/plexpy.nix
+ ./services/misc/pykms.nix
+ ./services/misc/tzupdate.nix
+ ./services/monitoring/fusion-inventory.nix
+ ./services/monitoring/prometheus/exporters.nix
+ ./services/network-filesystems/beegfs.nix
+ ./services/network-filesystems/davfs2.nix
+ ./services/network-filesystems/openafs/client.nix
+ ./services/network-filesystems/openafs/server.nix
+ ./services/network-filesystems/ceph.nix
+ ./services/networking/aria2.nix
+ ./services/networking/monero.nix
+ ./services/networking/nghttpx/default.nix
+ ./services/networking/nixops-dns.nix
+ ./services/networking/rxe.nix
+ ./services/networking/stunnel.nix
+ ./services/web-apps/matomo.nix
+ ./services/web-apps/restya-board.nix
+ ./services/web-servers/mighttpd2.nix
+ ./services/x11/fractalart.nix
+ ./system/boot/binfmt.nix
+ ./system/boot/grow-partition.nix
+ ./tasks/filesystems/ecryptfs.nix
+ ./virtualisation/hyperv-guest.nix
@@ -174,7 +239,7 @@ following incompatible changes:
the openssh_with_kerberos package
is now a deprecated alias.
If you do not want Kerberos support,
- you can do openssh.override { withKerboros = false; }.
+ you can do openssh.override { withKerberos = false; }.
Note, this also applies to the openssh_hpn package.
@@ -418,15 +483,6 @@ following incompatible changes:
have been added to set up static routing.
-
-
- The option is now
- none by default. An assertion failure is thrown if WM's
- and DM's default are none.
- To explicitly run a plain X session without and DM or WM, the newly
- introduced option must be set to true.
-
-
The option is now 127.0.0.1 by default.
diff --git a/nixos/doc/manual/style.css b/nixos/doc/manual/style.css
deleted file mode 100644
index 3118b37ead1..00000000000
--- a/nixos/doc/manual/style.css
+++ /dev/null
@@ -1,267 +0,0 @@
-/* Copied from http://bakefile.sourceforge.net/, which appears
- licensed under the GNU GPL. */
-
-
-/***************************************************************************
- Basic headers and text:
- ***************************************************************************/
-
-body
-{
- font-family: "Nimbus Sans L", sans-serif;
- background: white;
- margin: 2em 1em 2em 1em;
-}
-
-h1, h2, h3, h4
-{
- color: #005aa0;
-}
-
-h1 /* title */
-{
- font-size: 200%;
-}
-
-h2 /* chapters, appendices, subtitle */
-{
- font-size: 180%;
-}
-
-/* Extra space between chapters, appendices. */
-div.chapter > div.titlepage h2, div.appendix > div.titlepage h2
-{
- margin-top: 1.5em;
-}
-
-div.section > div.titlepage h2 /* sections */
-{
- font-size: 150%;
- margin-top: 1.5em;
-}
-
-h3 /* subsections */
-{
- font-size: 125%;
-}
-
-div.simplesect h2
-{
- font-size: 110%;
-}
-
-div.appendix h3
-{
- font-size: 150%;
- margin-top: 1.5em;
-}
-
-div.refnamediv h2, div.refsynopsisdiv h2, div.refsection h2 /* refentry parts */
-{
- margin-top: 1.4em;
- font-size: 125%;
-}
-
-div.refsection h3
-{
- font-size: 110%;
-}
-
-
-/***************************************************************************
- Examples:
- ***************************************************************************/
-
-div.example
-{
- border: 1px solid #b0b0b0;
- padding: 6px 6px;
- margin-left: 1.5em;
- margin-right: 1.5em;
- background: #f4f4f8;
- border-radius: 0.4em;
- box-shadow: 0.4em 0.4em 0.5em #e0e0e0;
-}
-
-div.example p.title
-{
- margin-top: 0em;
-}
-
-div.example pre
-{
- box-shadow: none;
-}
-
-
-/***************************************************************************
- Screen dumps:
- ***************************************************************************/
-
-pre.screen, pre.programlisting
-{
- border: 1px solid #b0b0b0;
- padding: 3px 3px;
- margin-left: 1.5em;
- margin-right: 1.5em;
- color: #600000;
- background: #f4f4f8;
- font-family: monospace;
- border-radius: 0.4em;
- box-shadow: 0.4em 0.4em 0.5em #e0e0e0;
-}
-
-div.example pre.programlisting
-{
- border: 0px;
- padding: 0 0;
- margin: 0 0 0 0;
-}
-
-
-/***************************************************************************
- Notes, warnings etc:
- ***************************************************************************/
-
-.note, .warning
-{
- border: 1px solid #b0b0b0;
- padding: 3px 3px;
- margin-left: 1.5em;
- margin-right: 1.5em;
- margin-bottom: 1em;
- padding: 0.3em 0.3em 0.3em 0.3em;
- background: #fffff5;
- border-radius: 0.4em;
- box-shadow: 0.4em 0.4em 0.5em #e0e0e0;
-}
-
-div.note, div.warning
-{
- font-style: italic;
-}
-
-div.note h3, div.warning h3
-{
- color: red;
- font-size: 100%;
- padding-right: 0.5em;
- display: inline;
-}
-
-div.note p, div.warning p
-{
- margin-bottom: 0em;
-}
-
-div.note h3 + p, div.warning h3 + p
-{
- display: inline;
-}
-
-div.note h3
-{
- color: blue;
- font-size: 100%;
-}
-
-div.navfooter *
-{
- font-size: 90%;
-}
-
-
-/***************************************************************************
- Links colors and highlighting:
- ***************************************************************************/
-
-a { text-decoration: none; }
-a:hover { text-decoration: underline; }
-a:link { color: #0048b3; }
-a:visited { color: #002a6a; }
-
-
-/***************************************************************************
- Table of contents:
- ***************************************************************************/
-
-div.toc
-{
- font-size: 90%;
-}
-
-div.toc dl
-{
- margin-top: 0em;
- margin-bottom: 0em;
-}
-
-
-/***************************************************************************
- Special elements:
- ***************************************************************************/
-
-tt, code
-{
- color: #400000;
-}
-
-.term
-{
- font-weight: bold;
-
-}
-
-div.variablelist dd p, div.glosslist dd p
-{
- margin-top: 0em;
-}
-
-div.variablelist dd, div.glosslist dd
-{
- margin-left: 1.5em;
-}
-
-div.glosslist dt
-{
- font-style: italic;
-}
-
-.varname
-{
- color: #400000;
-}
-
-span.command strong
-{
- font-weight: normal;
- color: #400000;
-}
-
-div.calloutlist table
-{
- box-shadow: none;
-}
-
-table
-{
- border-collapse: collapse;
- box-shadow: 0.4em 0.4em 0.5em #e0e0e0;
-}
-
-table.simplelist
-{
- text-align: left;
- color: #005aa0;
- border: 0;
- padding: 5px;
- background: #fffff5;
- font-weight: normal;
- font-style: italic;
- box-shadow: none;
- margin-bottom: 1em;
-}
-
-div.navheader table, div.navfooter table {
- box-shadow: none;
-}
diff --git a/nixos/lib/make-system-tarball.nix b/nixos/lib/make-system-tarball.nix
index a2a0340a6bd..92539235be7 100644
--- a/nixos/lib/make-system-tarball.nix
+++ b/nixos/lib/make-system-tarball.nix
@@ -1,4 +1,4 @@
-{ stdenv, perl, xz, pathsFromGraph
+{ stdenv, perl, pixz, pathsFromGraph
, # The file name of the resulting tarball
fileName ? "nixos-system-${stdenv.system}"
@@ -21,14 +21,20 @@
# Extra tar arguments
, extraArgs ? ""
+ # Command used for compression
+, compressCommand ? "pixz"
+ # Extension for the compressed tarball
+, compressionExtension ? ".xz"
+ # extra inputs, like the compressor to use
+, extraInputs ? [ pixz ]
}:
stdenv.mkDerivation {
name = "tarball";
builder = ./make-system-tarball.sh;
- buildInputs = [perl xz];
+ buildInputs = [ perl ] ++ extraInputs;
- inherit fileName pathsFromGraph extraArgs extraCommands;
+ inherit fileName pathsFromGraph extraArgs extraCommands compressCommand;
# !!! should use XML.
sources = map (x: x.source) contents;
@@ -41,4 +47,6 @@ stdenv.mkDerivation {
# For obtaining the closure of `storeContents'.
exportReferencesGraph =
map (x: [("closure-" + baseNameOf x.object) x.object]) storeContents;
+
+ extension = compressionExtension;
}
diff --git a/nixos/lib/make-system-tarball.sh b/nixos/lib/make-system-tarball.sh
index 73a009d8488..1a52a284a25 100644
--- a/nixos/lib/make-system-tarball.sh
+++ b/nixos/lib/make-system-tarball.sh
@@ -1,5 +1,4 @@
source $stdenv/setup
-set -x
sources_=($sources)
targets_=($targets)
@@ -54,8 +53,8 @@ mkdir -p $out/tarball
rm env-vars
-tar --sort=name --mtime='@1' --owner=0 --group=0 --numeric-owner -cvJf $out/tarball/$fileName.tar.xz * $extraArgs
+time tar --sort=name --mtime='@1' --owner=0 --group=0 --numeric-owner -c * $extraArgs | $compressCommand > $out/tarball/$fileName.tar${extension}
mkdir -p $out/nix-support
echo $system > $out/nix-support/system
-echo "file system-tarball $out/tarball/$fileName.tar.xz" > $out/nix-support/hydra-build-products
+echo "file system-tarball $out/tarball/$fileName.tar${extension}" > $out/nix-support/hydra-build-products
diff --git a/nixos/maintainers/option-usages.nix b/nixos/maintainers/option-usages.nix
index 7be0255b35a..371ee7d9180 100644
--- a/nixos/maintainers/option-usages.nix
+++ b/nixos/maintainers/option-usages.nix
@@ -15,7 +15,7 @@
#
# $ nix-build ./option-usage.nix --argstr testOption service.xserver.enable -A txt -o service.xserver.enable._txt
#
-# otther target exists such as, `dotContent`, `dot`, and `pdf`. If you are
+# Other targets exists such as `dotContent`, `dot`, and `pdf`. If you are
# looking for the option usage of multiple options, you can provide a list
# as argument.
#
@@ -35,7 +35,7 @@
# value is replaced by a `throw` statement which is caught by the `tryEval`
# evaluation of each option value.
#
-# We then compare the result of the evluation of the original module, with
+# We then compare the result of the evaluation of the original module, with
# the result of the second evaluation, and consider that the new failures are
# caused by our mutation of the `config` argument.
#
@@ -62,7 +62,7 @@ let
"_module.args"
# For some reasons which we yet have to investigate, some options cannot
- # be replaced by a throw without cuasing a non-catchable failure.
+ # be replaced by a throw without causing a non-catchable failure.
"networking.bonds"
"networking.bridges"
"networking.interfaces"
diff --git a/nixos/maintainers/scripts/gce/create-gce.sh b/nixos/maintainers/scripts/gce/create-gce.sh
index ef1801fe54b..0fd26d34d07 100755
--- a/nixos/maintainers/scripts/gce/create-gce.sh
+++ b/nixos/maintainers/scripts/gce/create-gce.sh
@@ -3,7 +3,7 @@
set -euo pipefail
-BUCKET_NAME="${BUCKET_NAME:-nixos-images}"
+BUCKET_NAME="${BUCKET_NAME:-nixos-cloud-images}"
TIMESTAMP="$(date +%Y%m%d%H%M)"
export TIMESTAMP
@@ -19,5 +19,5 @@ img_name=$(basename "$img_path")
img_id=$(echo "$img_name" | sed 's|.raw.tar.gz$||;s|\.|-|g;s|_|-|g')
if ! gsutil ls "gs://${BUCKET_NAME}/$img_name"; then
gsutil cp "$img_path" "gs://${BUCKET_NAME}/$img_name"
+ gsutil acl ch -u AllUsers:R "gs://${BUCKET_NAME}/$img_name"
fi
-gcloud compute images create "$img_id" --source-uri "gs://${BUCKET_NAME}/$img_name"
diff --git a/nixos/modules/config/nsswitch.nix b/nixos/modules/config/nsswitch.nix
index 7b36d4f1cbd..c595c693294 100644
--- a/nixos/modules/config/nsswitch.nix
+++ b/nixos/modules/config/nsswitch.nix
@@ -17,23 +17,23 @@ let
resolved = canLoadExternalModules && config.services.resolved.enable;
hostArray = [ "files" ]
- ++ optionals mymachines [ "mymachines" ]
- ++ optionals nssmdns [ "mdns_minimal [NOTFOUND=return]" ]
- ++ optionals nsswins [ "wins" ]
- ++ optionals resolved ["resolve [!UNAVAIL=return]"]
+ ++ optional mymachines "mymachines"
+ ++ optional nssmdns "mdns_minimal [NOTFOUND=return]"
+ ++ optional nsswins "wins"
+ ++ optional resolved "resolve [!UNAVAIL=return]"
++ [ "dns" ]
- ++ optionals nssmdns [ "mdns" ]
- ++ optionals myhostname ["myhostname" ];
+ ++ optional nssmdns "mdns"
+ ++ optional myhostname "myhostname";
passwdArray = [ "files" ]
++ optional sssd "sss"
- ++ optionals ldap [ "ldap" ]
- ++ optionals mymachines [ "mymachines" ]
+ ++ optional ldap "ldap"
+ ++ optional mymachines "mymachines"
++ [ "systemd" ];
shadowArray = [ "files" ]
++ optional sssd "sss"
- ++ optionals ldap [ "ldap" ];
+ ++ optional ldap "ldap";
servicesArray = [ "files" ]
++ optional sssd "sss";
diff --git a/nixos/modules/config/system-path.nix b/nixos/modules/config/system-path.nix
index d3212d93160..36115166501 100644
--- a/nixos/modules/config/system-path.nix
+++ b/nixos/modules/config/system-path.nix
@@ -109,7 +109,6 @@ in
"/sbin"
"/share/applications"
"/share/desktop-directories"
- "/share/doc"
"/share/emacs"
"/share/icons"
"/share/menus"
diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix
index 11e969b760e..42d5d233f1c 100644
--- a/nixos/modules/config/users-groups.nix
+++ b/nixos/modules/config/users-groups.nix
@@ -35,6 +35,7 @@ let
name = mkOption {
type = types.str;
+ apply = x: assert (builtins.stringLength x < 32 || abort "Username '${x}' is longer than 31 characters which is not allowed!"); x;
description = ''
The name of the user account. If undefined, the name of the
attribute set will be used.
@@ -91,6 +92,7 @@ let
group = mkOption {
type = types.str;
+ apply = x: assert (builtins.stringLength x < 17 || abort "Group name '${x}' is longer than 16 characters which is not allowed!"); x;
default = "nogroup";
description = "The user's primary group.";
};
@@ -502,9 +504,6 @@ in {
};
};
- # Install all the user shells
- environment.systemPackages = systemShells;
-
users.groups = {
root.gid = ids.gids.root;
wheel.gid = ids.gids.wheel;
@@ -541,14 +540,29 @@ in {
# for backwards compatibility
system.activationScripts.groups = stringAfter [ "users" ] "";
- environment.etc."subuid" = {
- text = subuidFile;
- mode = "0644";
- };
- environment.etc."subgid" = {
- text = subgidFile;
- mode = "0644";
- };
+ # Install all the user shells
+ environment.systemPackages = systemShells;
+
+ environment.etc = {
+ "subuid" = {
+ text = subuidFile;
+ mode = "0644";
+ };
+ "subgid" = {
+ text = subgidFile;
+ mode = "0644";
+ };
+ } // (mapAttrs' (name: { packages, ... }: {
+ name = "profiles/per-user/${name}";
+ value.source = pkgs.buildEnv {
+ name = "user-environment";
+ paths = packages;
+ inherit (config.environment) pathsToLink extraOutputsToInstall;
+ inherit (config.system.path) ignoreCollisions postBuild;
+ };
+ }) (filterAttrs (_: u: u.packages != []) cfg.users));
+
+ environment.profiles = [ "/etc/profiles/per-user/$USER" ];
assertions = [
{ assertion = !cfg.enforceIdUniqueness || (uidsAreUnique && gidsAreUnique);
@@ -579,22 +593,4 @@ in {
};
- imports =
- [ (mkAliasOptionModule [ "users" "extraUsers" ] [ "users" "users" ])
- (mkAliasOptionModule [ "users" "extraGroups" ] [ "users" "groups" ])
- {
- environment = {
- etc = mapAttrs' (name: { packages, ... }: {
- name = "profiles/per-user/${name}";
- value.source = pkgs.buildEnv {
- name = "user-environment";
- paths = packages;
- inherit (config.environment) pathsToLink extraOutputsToInstall;
- inherit (config.system.path) ignoreCollisions postBuild;
- };
- }) (filterAttrs (_: { packages, ... }: packages != []) cfg.users);
- profiles = ["/etc/profiles/per-user/$USER"];
- };
- }
- ];
}
diff --git a/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix b/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix
index 3306846b7fa..ddf91a5656c 100644
--- a/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix
+++ b/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix
@@ -21,9 +21,6 @@ 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;
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 08903ba397a..891923234dd 100644
--- a/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix
+++ b/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix
@@ -21,9 +21,6 @@ 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;
diff --git a/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix b/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix
index 2833b75b84d..212013b5e28 100644
--- a/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix
+++ b/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix
@@ -21,9 +21,6 @@ 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;
diff --git a/nixos/modules/installer/cd-dvd/sd-image.nix b/nixos/modules/installer/cd-dvd/sd-image.nix
index 23312c073d5..c091923de60 100644
--- a/nixos/modules/installer/cd-dvd/sd-image.nix
+++ b/nixos/modules/installer/cd-dvd/sd-image.nix
@@ -20,6 +20,20 @@ let
in
{
options.sdImage = {
+ imageName = mkOption {
+ default = "${config.sdImage.imageBaseName}-${config.system.nixos.label}-${pkgs.stdenv.system}.img";
+ description = ''
+ Name of the generated image file.
+ '';
+ };
+
+ imageBaseName = mkOption {
+ default = "nixos-sd-image";
+ description = ''
+ Prefix of the name of the generated image file.
+ '';
+ };
+
storePaths = mkOption {
type = with types; listOf package;
example = literalExample "[ pkgs.stdenv ]";
@@ -61,19 +75,25 @@ in
sdImage.storePaths = [ config.system.build.toplevel ];
system.build.sdImage = pkgs.stdenv.mkDerivation {
- name = "sd-image-${pkgs.stdenv.system}.img";
+ name = config.sdImage.imageName;
buildInputs = with pkgs; [ dosfstools e2fsprogs mtools libfaketime utillinux ];
buildCommand = ''
+ mkdir -p $out/nix-support $out/sd-image
+ export img=$out/sd-image/${config.sdImage.imageName}
+
+ echo "${pkgs.stdenv.system}" > $out/nix-support/system
+ echo "file sd-image $img" >> $out/nix-support/hydra-build-products
+
# Create the image file sized to fit /boot and /, plus 20M of slack
rootSizeBlocks=$(du -B 512 --apparent-size ${rootfsImage} | awk '{ print $1 }')
bootSizeBlocks=$((${toString config.sdImage.bootSize} * 1024 * 1024 / 512))
imageSize=$((rootSizeBlocks * 512 + bootSizeBlocks * 512 + 20 * 1024 * 1024))
- truncate -s $imageSize $out
+ truncate -s $imageSize $img
# type=b is 'W95 FAT32', type=83 is 'Linux'.
- sfdisk $out <environment.systemPackages into the generated system path.
+ '';
+ };
+
+ man.enable = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ Whether to install manual pages and the man command.
+ This also includes "man" outputs.
+ '';
+ };
+
+ doc.enable = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ Whether to install documentation distributed in packages' /share/doc.
+ Usually plain text and/or HTML.
+ This also includes "doc" outputs.
+ '';
+ };
+
+ info.enable = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ Whether to install info pages and the info command.
+ This also includes "info" outputs.
+ '';
+ };
+
+ };
+
+ };
+
+ config = mkIf cfg.enable (mkMerge [
+
+ (mkIf cfg.man.enable {
+ environment.systemPackages = [ pkgs.man-db ];
+ environment.pathsToLink = [ "/share/man" ];
+ environment.extraOutputsToInstall = [ "man" ];
+ })
+
+ (mkIf cfg.doc.enable {
+ # TODO(@oxij): put it here and remove from profiles?
+ # environment.systemPackages = [ pkgs.w3m ]; # w3m-nox?
+ environment.pathsToLink = [ "/share/doc" ];
+ environment.extraOutputsToInstall = [ "doc" ];
+ })
+
+ (mkIf cfg.info.enable {
+ environment.systemPackages = [ pkgs.texinfoInteractive ];
+ environment.pathsToLink = [ "/share/info" ];
+ environment.extraOutputsToInstall = [ "info" ];
+ })
+
+ ]);
+
+}
diff --git a/nixos/modules/misc/version.nix b/nixos/modules/misc/version.nix
index b8f0a223c91..7519d917698 100644
--- a/nixos/modules/misc/version.nix
+++ b/nixos/modules/misc/version.nix
@@ -16,6 +16,21 @@ in
options.system = {
+ # XXX: Reintroduce old options to make nixops before 1.6 able to evaluate configurations
+ # XXX: Remove after nixops has been bumped to a compatible version
+ nixosVersion = mkOption {
+ readOnly = true;
+ internal = true;
+ type = types.str;
+ default = config.system.nixos.version;
+ };
+ nixosVersionSuffix = mkOption {
+ readOnly = true;
+ internal = true;
+ type = types.str;
+ default = config.system.nixos.versionSuffix;
+ };
+
nixos.version = mkOption {
internal = true;
type = types.str;
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 9e232ce1f4e..3a8b1014553 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -58,6 +58,7 @@
./installer/tools/tools.nix
./misc/assertions.nix
./misc/crashdump.nix
+ ./misc/documentation.nix
./misc/extra-arguments.nix
./misc/ids.nix
./misc/lib.nix
@@ -85,12 +86,10 @@
./programs/freetds.nix
./programs/gnupg.nix
./programs/gphoto2.nix
- ./programs/info.nix
./programs/java.nix
./programs/kbdlight.nix
./programs/less.nix
./programs/light.nix
- ./programs/man.nix
./programs/mosh.nix
./programs/mtr.nix
./programs/nano.nix
@@ -323,8 +322,9 @@
./services/misc/geoip-updater.nix
./services/misc/gitea.nix
#./services/misc/gitit.nix
- ./services/misc/gitlab.nix
+ #./services/misc/gitlab.nix
./services/misc/gitolite.nix
+ ./services/misc/gitweb.nix
./services/misc/gogs.nix
./services/misc/gollum.nix
./services/misc/gpsd.nix
@@ -650,6 +650,7 @@
./services/web-servers/mighttpd2.nix
./services/web-servers/minio.nix
./services/web-servers/nginx/default.nix
+ ./services/web-servers/nginx/gitweb.nix
./services/web-servers/phpfpm/default.nix
./services/web-servers/shellinabox.nix
./services/web-servers/tomcat.nix
diff --git a/nixos/modules/profiles/docker-container.nix b/nixos/modules/profiles/docker-container.nix
index 433492b9613..7031d7d1d59 100644
--- a/nixos/modules/profiles/docker-container.nix
+++ b/nixos/modules/profiles/docker-container.nix
@@ -14,9 +14,7 @@ in {
];
# Create the tarball
- system.build.tarball = import ../../lib/make-system-tarball.nix {
- inherit (pkgs) stdenv perl xz pathsFromGraph;
-
+ system.build.tarball = pkgs.callPackage ../../lib/make-system-tarball.nix {
contents = [];
extraArgs = "--owner=0";
diff --git a/nixos/modules/profiles/minimal.nix b/nixos/modules/profiles/minimal.nix
index e2497d04252..40df7063a9b 100644
--- a/nixos/modules/profiles/minimal.nix
+++ b/nixos/modules/profiles/minimal.nix
@@ -10,10 +10,9 @@ with lib;
# This isn't perfect, but let's expect the user specifies an UTF-8 defaultLocale
i18n.supportedLocales = [ (config.i18n.defaultLocale + "/UTF-8") ];
- services.nixosManual.enable = mkDefault false;
- programs.man.enable = mkDefault false;
- programs.info.enable = mkDefault false;
+ documentation.enable = mkDefault false;
+ services.nixosManual.enable = mkDefault false;
sound.enable = mkDefault false;
}
diff --git a/nixos/modules/programs/info.nix b/nixos/modules/programs/info.nix
deleted file mode 100644
index be6439dca5a..00000000000
--- a/nixos/modules/programs/info.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-with lib;
-
-{
-
- options = {
-
- programs.info.enable = mkOption {
- type = types.bool;
- default = true;
- description = ''
- Whether to enable info pages and the info command.
- '';
- };
-
- };
-
-
- config = mkIf config.programs.info.enable {
-
- environment.systemPackages = [ pkgs.texinfoInteractive ];
-
- environment.pathsToLink = [ "/info" "/share/info" ];
-
- environment.extraOutputsToInstall = [ "info" ];
-
- };
-
-}
diff --git a/nixos/modules/programs/man.nix b/nixos/modules/programs/man.nix
deleted file mode 100644
index 5b20a38d885..00000000000
--- a/nixos/modules/programs/man.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-with lib;
-
-{
-
- options = {
-
- programs.man.enable = mkOption {
- type = types.bool;
- default = true;
- description = ''
- Whether to enable manual pages and the man command.
- This also includes "man" outputs of all systemPackages.
- '';
- };
-
- };
-
-
- config = mkIf config.programs.man.enable {
-
- environment.systemPackages = [ pkgs.man-db ];
-
- environment.pathsToLink = [ "/share/man" ];
-
- environment.extraOutputsToInstall = [ "man" ];
-
- };
-
-}
diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix
index b0ca274b939..0c3ac054292 100644
--- a/nixos/modules/rename.nix
+++ b/nixos/modules/rename.nix
@@ -4,6 +4,7 @@ with lib;
{
imports = [
+ (mkRenamedOptionModule [ "dysnomia" ] [ "services" "dysnomia" ])
(mkRenamedOptionModule [ "environment" "x11Packages" ] [ "environment" "systemPackages" ])
(mkRenamedOptionModule [ "environment" "enableBashCompletion" ] [ "programs" "bash" "enableCompletion" ])
(mkRenamedOptionModule [ "environment" "nix" ] [ "nix" "package" ])
@@ -196,13 +197,17 @@ with lib;
(mkRenamedOptionModule [ "virtualization" "growPartition" ] [ "boot" "growPartition" ])
# misc/version.nix
- (mkRenamedOptionModule [ "config" "system" "nixosVersion" ] [ "config" "system" "nixos" "version" ])
+ #(mkRenamedOptionModule [ "config" "system" "nixosVersion" ] [ "config" "system" "nixos" "version" ])
(mkRenamedOptionModule [ "config" "system" "nixosRelease" ] [ "config" "system" "nixos" "release" ])
- (mkRenamedOptionModule [ "config" "system" "nixosVersionSuffix" ] [ "config" "system" "nixos" "versionSuffix" ])
+ #(mkRenamedOptionModule [ "config" "system" "nixosVersionSuffix" ] [ "config" "system" "nixos" "versionSuffix" ])
(mkRenamedOptionModule [ "config" "system" "nixosRevision" ] [ "config" "system" "nixos" "revision" ])
(mkRenamedOptionModule [ "config" "system" "nixosCodeName" ] [ "config" "system" "nixos" "codeName" ])
(mkRenamedOptionModule [ "config" "system" "nixosLabel" ] [ "config" "system" "nixos" "label" ])
+ # Users
+ (mkAliasOptionModule [ "users" "extraUsers" ] [ "users" "users" ])
+ (mkAliasOptionModule [ "users" "extraGroups" ] [ "users" "groups" ])
+
# Options that are obsolete and have no replacement.
(mkRemovedOptionModule [ "boot" "initrd" "luks" "enable" ] "")
(mkRemovedOptionModule [ "programs" "bash" "enable" ] "")
@@ -240,6 +245,10 @@ with lib;
# Xen
(mkRenamedOptionModule [ "virtualisation" "xen" "qemu-package" ] [ "virtualisation" "xen" "package-qemu" ])
+
+ (mkRenamedOptionModule [ "programs" "info" "enable" ] [ "documentation" "info" "enable" ])
+ (mkRenamedOptionModule [ "programs" "man" "enable" ] [ "documentation" "man" "enable" ])
+
] ++ (flip map [ "blackboxExporter" "collectdExporter" "fritzboxExporter"
"jsonExporter" "minioExporter" "nginxExporter" "nodeExporter"
"snmpExporter" "unifiExporter" "varnishExporter" ]
diff --git a/nixos/modules/services/cluster/kubernetes/default.nix b/nixos/modules/services/cluster/kubernetes/default.nix
index 39c5d78d419..aeb0a0d2432 100644
--- a/nixos/modules/services/cluster/kubernetes/default.nix
+++ b/nixos/modules/services/cluster/kubernetes/default.nix
@@ -766,7 +766,7 @@ in {
rm /opt/cni/bin/* || true
${concatMapStrings (package: ''
echo "Linking cni package: ${package}"
- ln -fs ${package.plugins}/* /opt/cni/bin
+ ln -fs ${package}/bin/* /opt/cni/bin
'') cfg.kubelet.cni.packages}
'';
serviceConfig = {
@@ -828,7 +828,7 @@ in {
};
# Allways include cni plugins
- services.kubernetes.kubelet.cni.packages = [pkgs.cni];
+ services.kubernetes.kubelet.cni.packages = [pkgs.cni-plugins];
boot.kernelModules = ["br_netfilter"];
diff --git a/nixos/modules/services/mail/dovecot.nix b/nixos/modules/services/mail/dovecot.nix
index b42c73b8666..543e732127a 100644
--- a/nixos/modules/services/mail/dovecot.nix
+++ b/nixos/modules/services/mail/dovecot.nix
@@ -30,6 +30,7 @@ let
''
default_internal_user = ${cfg.user}
+ default_internal_group = ${cfg.group}
${optionalString (cfg.mailUser != null) "mail_uid = ${cfg.mailUser}"}
${optionalString (cfg.mailGroup != null) "mail_gid = ${cfg.mailGroup}"}
diff --git a/nixos/modules/services/misc/disnix.nix b/nixos/modules/services/misc/disnix.nix
index 39d23610b06..e4517c636e8 100644
--- a/nixos/modules/services/misc/disnix.nix
+++ b/nixos/modules/services/misc/disnix.nix
@@ -57,7 +57,7 @@ in
###### implementation
config = mkIf cfg.enable {
- dysnomia.enable = true;
+ services.dysnomia.enable = true;
environment.systemPackages = [ pkgs.disnix ] ++ optional cfg.useWebServiceInterface pkgs.DisnixWebService;
diff --git a/nixos/modules/services/misc/dysnomia.nix b/nixos/modules/services/misc/dysnomia.nix
index c5c41ad296d..25cd0038e36 100644
--- a/nixos/modules/services/misc/dysnomia.nix
+++ b/nixos/modules/services/misc/dysnomia.nix
@@ -3,8 +3,8 @@
with lib;
let
- cfg = config.dysnomia;
-
+ cfg = config.services.dysnomia;
+
printProperties = properties:
concatMapStrings (propertyName:
let
@@ -13,7 +13,7 @@ let
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 = ''
@@ -22,13 +22,13 @@ let
EOF
'';
};
-
+
containersDir = pkgs.stdenv.mkDerivation {
name = "dysnomia-containers";
buildCommand = ''
mkdir -p $out
cd $out
-
+
${concatMapStrings (containerName:
let
containerProperties = cfg.containers."${containerName}";
@@ -42,11 +42,11 @@ let
) (builtins.attrNames cfg.containers)}
'';
};
-
+
linkMutableComponents = {containerName}:
''
mkdir ${containerName}
-
+
${concatMapStrings (componentName:
let
component = cfg.components."${containerName}"."${componentName}";
@@ -54,13 +54,13 @@ let
"ln -s ${component} ${containerName}/${componentName}\n"
) (builtins.attrNames (cfg.components."${containerName}" or {}))}
'';
-
+
componentsDir = pkgs.stdenv.mkDerivation {
name = "dysnomia-components";
buildCommand = ''
mkdir -p $out
cd $out
-
+
${concatMapStrings (containerName:
let
components = cfg.components."${containerName}";
@@ -72,59 +72,59 @@ let
in
{
options = {
- dysnomia = {
-
+ services.dysnomia = {
+
enable = mkOption {
type = types.bool;
default = false;
description = "Whether to enable Dysnomia";
};
-
+
enableAuthentication = mkOption {
type = types.bool;
default = false;
description = "Whether to publish privacy-sensitive authentication credentials";
};
-
+
package = mkOption {
type = types.path;
description = "The Dysnomia package";
};
-
+
properties = mkOption {
description = "An attribute set in which each attribute represents a machine property. Optionally, these values can be shell substitutions.";
default = {};
};
-
+
containers = mkOption {
description = "An attribute set in which each key represents a container and each value an attribute set providing its configuration properties";
default = {};
};
-
+
components = mkOption {
description = "An atttribute set in which each key represents a container and each value an attribute set in which each key represents a component and each value a derivation constructing its initial state";
default = {};
};
-
+
extraContainerProperties = mkOption {
description = "An attribute set providing additional container settings in addition to the default properties";
default = {};
};
-
+
extraContainerPaths = mkOption {
description = "A list of paths containing additional container configurations that are added to the search folders";
default = [];
};
-
+
extraModulePaths = mkOption {
description = "A list of paths containing additional modules that are added to the search folders";
default = [];
};
};
};
-
+
config = mkIf cfg.enable {
-
+
environment.etc = {
"dysnomia/containers" = {
source = containersDir;
@@ -136,16 +136,16 @@ in
source = properties;
};
};
-
+
environment.variables = {
DYSNOMIA_STATEDIR = "/var/state/dysnomia-nixos";
DYSNOMIA_CONTAINERS_PATH = "${lib.concatMapStrings (containerPath: "${containerPath}:") cfg.extraContainerPaths}/etc/dysnomia/containers";
DYSNOMIA_MODULES_PATH = "${lib.concatMapStrings (modulePath: "${modulePath}:") cfg.extraModulePaths}/etc/dysnomia/modules";
};
-
+
environment.systemPackages = [ cfg.package ];
-
- dysnomia.package = pkgs.dysnomia.override (origArgs: {
+
+ services.dysnomia.package = pkgs.dysnomia.override (origArgs: {
enableApacheWebApplication = config.services.httpd.enable;
enableAxis2WebService = config.services.tomcat.axis2.enable;
enableEjabberdDump = config.services.ejabberd.enable;
@@ -155,8 +155,8 @@ in
enableTomcatWebApplication = config.services.tomcat.enable;
enableMongoDatabase = config.services.mongodb.enable;
});
-
- dysnomia.properties = {
+
+ services.dysnomia.properties = {
hostname = config.networking.hostName;
system = if config.nixpkgs.system == "" then builtins.currentSystem else config.nixpkgs.system;
@@ -173,8 +173,8 @@ in
'';
}}");
};
-
- dysnomia.containers = lib.recursiveUpdate ({
+
+ services.dysnomia.containers = lib.recursiveUpdate ({
process = {};
wrapper = {};
}
diff --git a/nixos/modules/services/misc/gitweb.nix b/nixos/modules/services/misc/gitweb.nix
new file mode 100644
index 00000000000..b0e34a690ca
--- /dev/null
+++ b/nixos/modules/services/misc/gitweb.nix
@@ -0,0 +1,51 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.gitweb;
+
+in
+{
+
+ options.services.gitweb = {
+
+ projectroot = mkOption {
+ default = "/srv/git";
+ type = types.path;
+ description = ''
+ Path to git projects (bare repositories) that should be served by
+ gitweb. Must not end with a slash.
+ '';
+ };
+
+ extraConfig = mkOption {
+ default = "";
+ type = types.lines;
+ description = ''
+ Verbatim configuration text appended to the generated gitweb.conf file.
+ '';
+ example = ''
+ $feature{'highlight'}{'default'} = [1];
+ $feature{'ctags'}{'default'} = [1];
+ $feature{'avatar'}{'default'} = ['gravatar'];
+ '';
+ };
+
+ gitwebConfigFile = mkOption {
+ default = pkgs.writeText "gitweb.conf" ''
+ # path to git projects (.git)
+ $projectroot = "${cfg.projectroot}";
+ $highlight_bin = "${pkgs.highlight}/bin/highlight";
+ ${cfg.extraConfig}
+ '';
+ type = types.path;
+ readOnly = true;
+ internal = true;
+ };
+
+ };
+
+ meta.maintainers = with maintainers; [ gnidorah ];
+
+}
diff --git a/nixos/modules/services/misc/gogs.nix b/nixos/modules/services/misc/gogs.nix
index f6d326e43d9..ba744d37e71 100644
--- a/nixos/modules/services/misc/gogs.nix
+++ b/nixos/modules/services/misc/gogs.nix
@@ -35,6 +35,9 @@ let
SECRET_KEY = #secretkey#
INSTALL_LOCK = true
+ [log]
+ ROOT_PATH = ${cfg.stateDir}/log
+
${cfg.extraConfig}
'';
in
diff --git a/nixos/modules/services/misc/nix-daemon.nix b/nixos/modules/services/misc/nix-daemon.nix
index ea964fd68e4..f2d34560a71 100644
--- a/nixos/modules/services/misc/nix-daemon.nix
+++ b/nixos/modules/services/misc/nix-daemon.nix
@@ -439,17 +439,18 @@ in
services.xserver.displayManager.hiddenUsers = map ({ name, ... }: name) nixbldUsers;
+ # FIXME: use systemd-tmpfiles to create Nix directories.
system.activationScripts.nix = stringAfter [ "etc" "users" ]
''
# Nix initialisation.
- mkdir -m 0755 -p \
+ install -m 0755 -d \
/nix/var/nix/gcroots \
/nix/var/nix/temproots \
/nix/var/nix/userpool \
/nix/var/nix/profiles \
/nix/var/nix/db \
/nix/var/log/nix/drvs
- mkdir -m 1777 -p \
+ install -m 1777 -d \
/nix/var/nix/gcroots/per-user \
/nix/var/nix/profiles/per-user \
/nix/var/nix/gcroots/tmp
diff --git a/nixos/modules/services/misc/nixos-manual.nix b/nixos/modules/services/misc/nixos-manual.nix
index b8253956d54..abf506ea7c6 100644
--- a/nixos/modules/services/misc/nixos-manual.nix
+++ b/nixos/modules/services/misc/nixos-manual.nix
@@ -112,10 +112,10 @@ in
system.build.manual = manual;
- environment.systemPackages =
- [ manual.manual helpScript ]
- ++ optionals config.services.xserver.enable [desktopItem pkgs.nixos-icons]
- ++ optional config.programs.man.enable manual.manpages;
+ environment.systemPackages = []
+ ++ optionals config.services.xserver.enable [ desktopItem pkgs.nixos-icons ]
+ ++ optional config.documentation.man.enable manual.manpages
+ ++ optionals config.documentation.doc.enable [ manual.manual helpScript ];
boot.extraTTYs = mkIf cfg.showManual ["tty${toString cfg.ttyNumber}"];
diff --git a/nixos/modules/services/misc/parsoid.nix b/nixos/modules/services/misc/parsoid.nix
index ae3f84333d2..c757093e5c1 100644
--- a/nixos/modules/services/misc/parsoid.nix
+++ b/nixos/modules/services/misc/parsoid.nix
@@ -6,6 +6,8 @@ let
cfg = config.services.parsoid;
+ parsoid = pkgs.nodePackages."parsoid-git://github.com/abbradar/parsoid#stable";
+
confTree = {
worker_heartbeat_timeout = 300000;
logging = { level = "info"; };
@@ -93,7 +95,7 @@ in
after = [ "network.target" ];
serviceConfig = {
User = "nobody";
- ExecStart = "${pkgs.nodePackages.parsoid}/lib/node_modules/parsoid/bin/server.js -c ${confFile} -n ${toString cfg.workers}";
+ ExecStart = "${parsoid}/lib/node_modules/parsoid/bin/server.js -c ${confFile} -n ${toString cfg.workers}";
};
};
diff --git a/nixos/modules/services/monitoring/monit.nix b/nixos/modules/services/monitoring/monit.nix
index 71f50cc0f19..d48e5c550ab 100644
--- a/nixos/modules/services/monitoring/monit.nix
+++ b/nixos/modules/services/monitoring/monit.nix
@@ -26,16 +26,10 @@ in
environment.systemPackages = [ pkgs.monit ];
- environment.etc = [
- {
- source = pkgs.writeTextFile {
- name = "monitrc";
- text = config.services.monit.config;
- };
- target = "monitrc";
- mode = "0400";
- }
- ];
+ environment.etc."monitrc" = {
+ text = config.services.monit.config;
+ mode = "0400";
+ };
systemd.services.monit = {
description = "Pro-active monitoring utility for unix systems";
@@ -48,6 +42,8 @@ in
KillMode = "process";
Restart = "always";
};
+ restartTriggers = [ config.environment.etc."monitrc".source ];
};
+
};
}
diff --git a/nixos/modules/services/networking/dhcpd.nix b/nixos/modules/services/networking/dhcpd.nix
index 2eac6dfec5b..fd7e317eee9 100644
--- a/nixos/modules/services/networking/dhcpd.nix
+++ b/nixos/modules/services/networking/dhcpd.nix
@@ -36,6 +36,7 @@ let
preStart = ''
mkdir -m 755 -p ${cfg.stateDir}
+ chown dhcpd:nogroup ${cfg.stateDir}
touch ${cfg.stateDir}/dhcpd.leases
'';
diff --git a/nixos/modules/services/networking/tcpcrypt.nix b/nixos/modules/services/networking/tcpcrypt.nix
index 2f304165eb4..ee005e11aa3 100644
--- a/nixos/modules/services/networking/tcpcrypt.nix
+++ b/nixos/modules/services/networking/tcpcrypt.nix
@@ -44,9 +44,9 @@ in
path = [ pkgs.iptables pkgs.tcpcrypt pkgs.procps ];
preStart = ''
- mkdir -p /var/run/tcpcryptd
- chown tcpcryptd /var/run/tcpcryptd
- sysctl -n net.ipv4.tcp_ecn >/run/pre-tcpcrypt-ecn-state
+ mkdir -p /run/tcpcryptd
+ chown tcpcryptd /run/tcpcryptd
+ sysctl -n net.ipv4.tcp_ecn > /run/tcpcryptd/pre-tcpcrypt-ecn-state
sysctl -w net.ipv4.tcp_ecn=0
iptables -t raw -N nixos-tcpcrypt
@@ -61,8 +61,8 @@ in
script = "tcpcryptd -x 0x10";
postStop = ''
- if [ -f /run/pre-tcpcrypt-ecn-state ]; then
- sysctl -w net.ipv4.tcp_ecn=$(cat /run/pre-tcpcrypt-ecn-state)
+ if [ -f /run/tcpcryptd/pre-tcpcrypt-ecn-state ]; then
+ sysctl -w net.ipv4.tcp_ecn=$(cat /run/tcpcryptd/pre-tcpcrypt-ecn-state)
fi
iptables -t mangle -D POSTROUTING -j nixos-tcpcrypt || true
diff --git a/nixos/modules/services/networking/unbound.nix b/nixos/modules/services/networking/unbound.nix
index 545ee327d59..f069a9883a7 100644
--- a/nixos/modules/services/networking/unbound.nix
+++ b/nixos/modules/services/networking/unbound.nix
@@ -112,7 +112,7 @@ in
mkdir -m 0755 -p ${stateDir}/dev/
cp ${confFile} ${stateDir}/unbound.conf
${optionalString cfg.enableRootTrustAnchor ''
- ${pkgs.unbound}/bin/unbound-anchor -a ${rootTrustAnchorFile}
+ ${pkgs.unbound}/bin/unbound-anchor -a ${rootTrustAnchorFile} || echo "Root anchor updated!"
chown unbound ${stateDir} ${rootTrustAnchorFile}
''}
touch ${stateDir}/dev/random
diff --git a/nixos/modules/services/networking/zerotierone.nix b/nixos/modules/services/networking/zerotierone.nix
index 86e0204ec2f..cd1617b8e2b 100644
--- a/nixos/modules/services/networking/zerotierone.nix
+++ b/nixos/modules/services/networking/zerotierone.nix
@@ -7,6 +7,16 @@ let
in
{
options.services.zerotierone.enable = mkEnableOption "ZeroTierOne";
+
+ options.services.zerotierone.joinNetworks = mkOption {
+ default = [];
+ example = [ "a8a2c3c10c1a68de" ];
+ type = types.listOf types.str;
+ description = ''
+ List of ZeroTier Network IDs to join on startup
+ '';
+ };
+
options.services.zerotierone.package = mkOption {
default = pkgs.zerotierone;
defaultText = "pkgs.zerotierone";
@@ -22,12 +32,13 @@ in
path = [ cfg.package ];
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
- preStart =
- ''
- mkdir -p /var/lib/zerotier-one
+ preStart = ''
+ mkdir -p /var/lib/zerotier-one/networks.d
chmod 700 /var/lib/zerotier-one
chown -R root:root /var/lib/zerotier-one
- '';
+ '' + (concatMapStrings (netId: ''
+ touch "/var/lib/zerotier-one/networks.d/${netId}.conf"
+ '') cfg.joinNetworks);
serviceConfig = {
ExecStart = "${cfg.package}/bin/zerotier-one";
Restart = "always";
@@ -38,6 +49,9 @@ in
# ZeroTier does not issue DHCP leases, but some strangers might...
networking.dhcpcd.denyInterfaces = [ "zt0" ];
+ # ZeroTier receives UDP transmissions on port 9993 by default
+ networking.firewall.allowedUDPPorts = [ 9993 ];
+
environment.systemPackages = [ cfg.package ];
};
}
diff --git a/nixos/modules/services/torrent/transmission.nix b/nixos/modules/services/torrent/transmission.nix
index 4911a64c95d..0998d5a7107 100644
--- a/nixos/modules/services/torrent/transmission.nix
+++ b/nixos/modules/services/torrent/transmission.nix
@@ -21,6 +21,19 @@ let
# for users in group "transmission" to have access to torrents
fullSettings = { umask = 2; download-dir = downloadDir; incomplete-dir = incompleteDir; } // cfg.settings;
+
+ # Directories transmission expects to exist and be ug+rwx.
+ directoriesToManage = [ homeDir settingsDir fullSettings.download-dir fullSettings.incomplete-dir ];
+
+ preStart = pkgs.writeScript "transmission-pre-start" ''
+ #!${pkgs.runtimeShell}
+ set -ex
+ for DIR in ${escapeShellArgs directoriesToManage}; do
+ mkdir -p "$DIR"
+ chmod 770 "$DIR"
+ done
+ cp -f ${settingsFile} ${settingsDir}/settings.json
+ '';
in
{
options = {
@@ -59,8 +72,8 @@ in
time the service starts). String values must be quoted, integer and
boolean values must not.
- See https://trac.transmissionbt.com/wiki/EditConfigFiles for
- documentation.
+ See https://github.com/transmission/transmission/wiki/Editing-Configuration-Files
+ for documentation.
'';
};
@@ -89,9 +102,7 @@ in
# 1) Only the "transmission" user and group have access to torrents.
# 2) Optionally update/force specific fields into the configuration file.
- serviceConfig.ExecStartPre = ''
- ${pkgs.runtimeShell} -c "mkdir -p ${homeDir} ${settingsDir} ${fullSettings.download-dir} ${fullSettings.incomplete-dir} && chmod 770 ${homeDir} ${settingsDir} ${fullSettings.download-dir} ${fullSettings.incomplete-dir} && rm -f ${settingsDir}/settings.json && cp -f ${settingsFile} ${settingsDir}/settings.json"
- '';
+ serviceConfig.ExecStartPre = preStart;
serviceConfig.ExecStart = "${pkgs.transmission}/bin/transmission-daemon -f --port ${toString config.services.transmission.port}";
serviceConfig.ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
serviceConfig.User = "transmission";
diff --git a/nixos/modules/services/web-servers/apache-httpd/per-server-options.nix b/nixos/modules/services/web-servers/apache-httpd/per-server-options.nix
index 1d53ce65900..4bbd041b6e0 100644
--- a/nixos/modules/services/web-servers/apache-httpd/per-server-options.nix
+++ b/nixos/modules/services/web-servers/apache-httpd/per-server-options.nix
@@ -118,7 +118,7 @@ with lib;
default = [];
example = [
{ urlPath = "/foo/bar.png";
- files = "/home/eelco/some-file.png";
+ file = "/home/eelco/some-file.png";
}
];
description = ''
diff --git a/nixos/modules/services/web-servers/lighttpd/gitweb.nix b/nixos/modules/services/web-servers/lighttpd/gitweb.nix
index c8d9836b0b6..37128d90401 100644
--- a/nixos/modules/services/web-servers/lighttpd/gitweb.nix
+++ b/nixos/modules/services/web-servers/lighttpd/gitweb.nix
@@ -3,12 +3,7 @@
with lib;
let
- cfg = config.services.lighttpd.gitweb;
- gitwebConfigFile = pkgs.writeText "gitweb.conf" ''
- # path to git projects (.git)
- $projectroot = "${cfg.projectroot}";
- ${cfg.extraConfig}
- '';
+ cfg = config.services.gitweb;
in
{
@@ -23,26 +18,9 @@ in
'';
};
- projectroot = mkOption {
- default = "/srv/git";
- type = types.path;
- description = ''
- Path to git projects (bare repositories) that should be served by
- gitweb. Must not end with a slash.
- '';
- };
-
- extraConfig = mkOption {
- default = "";
- type = types.lines;
- description = ''
- Verbatim configuration text appended to the generated gitweb.conf file.
- '';
- };
-
};
- config = mkIf cfg.enable {
+ config = mkIf config.services.lighttpd.gitweb.enable {
# declare module dependencies
services.lighttpd.enableModules = [ "mod_cgi" "mod_redirect" "mod_alias" "mod_setenv" ];
@@ -60,7 +38,7 @@ in
"/gitweb/" => "${pkgs.git}/share/gitweb/gitweb.cgi"
)
setenv.add-environment = (
- "GITWEB_CONFIG" => "${gitwebConfigFile}",
+ "GITWEB_CONFIG" => "${cfg.gitwebConfigFile}",
"HOME" => "${cfg.projectroot}"
)
}
diff --git a/nixos/modules/services/web-servers/nginx/gitweb.nix b/nixos/modules/services/web-servers/nginx/gitweb.nix
new file mode 100644
index 00000000000..3dc3ebc7e4c
--- /dev/null
+++ b/nixos/modules/services/web-servers/nginx/gitweb.nix
@@ -0,0 +1,59 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.gitweb;
+
+in
+{
+
+ options.services.nginx.gitweb = {
+
+ enable = mkOption {
+ default = false;
+ type = types.bool;
+ description = ''
+ If true, enable gitweb in nginx. Access it at http://yourserver/gitweb
+ '';
+ };
+
+ };
+
+ config = mkIf config.services.nginx.gitweb.enable {
+
+ systemd.services.gitweb = {
+ description = "GitWeb service";
+ script = "${pkgs.git}/share/gitweb/gitweb.cgi --fastcgi --nproc=1";
+ environment = {
+ FCGI_SOCKET_PATH = "/run/gitweb/gitweb.sock";
+ };
+ serviceConfig = {
+ User = "nginx";
+ Group = "nginx";
+ RuntimeDirectory = [ "gitweb" ];
+ };
+ wantedBy = [ "multi-user.target" ];
+ };
+
+ services.nginx = {
+ virtualHosts.default = {
+ locations."/gitweb/" = {
+ root = "${pkgs.git}/share";
+ tryFiles = "$uri @gitweb";
+ };
+ locations."@gitweb" = {
+ extraConfig = ''
+ include ${pkgs.nginx}/conf/fastcgi_params;
+ fastcgi_param GITWEB_CONFIG ${cfg.gitwebConfigFile};
+ fastcgi_pass unix:/run/gitweb/gitweb.sock;
+ '';
+ };
+ };
+ };
+
+ };
+
+ meta.maintainers = with maintainers; [ gnidorah ];
+
+}
diff --git a/nixos/modules/services/x11/desktop-managers/default.nix b/nixos/modules/services/x11/desktop-managers/default.nix
index 4622c7b760f..f435e85f6b8 100644
--- a/nixos/modules/services/x11/desktop-managers/default.nix
+++ b/nixos/modules/services/x11/desktop-managers/default.nix
@@ -87,11 +87,11 @@ in
default = mkOption {
type = types.str;
- default = "none";
- example = "plasma5";
+ default = "";
+ example = "none";
description = "Default desktop manager loaded if none have been chosen.";
apply = defaultDM:
- if defaultDM == "none" && cfg.session.list != [] then
+ if defaultDM == "" && cfg.session.list != [] then
(head cfg.session.list).name
else if any (w: w.name == defaultDM) cfg.session.list then
defaultDM
diff --git a/nixos/modules/services/x11/desktop-managers/lxqt.nix b/nixos/modules/services/x11/desktop-managers/lxqt.nix
index fb907618d35..2596ec4ad85 100644
--- a/nixos/modules/services/x11/desktop-managers/lxqt.nix
+++ b/nixos/modules/services/x11/desktop-managers/lxqt.nix
@@ -61,6 +61,8 @@ in
environment.variables.GIO_EXTRA_MODULES = [ "${pkgs.gvfs}/lib/gio/modules" ];
+ services.upower.enable = config.powerManagement.enable;
};
+
}
diff --git a/nixos/modules/services/x11/desktop-managers/mate.nix b/nixos/modules/services/x11/desktop-managers/mate.nix
index 0117dc9d132..db83aaf3c19 100644
--- a/nixos/modules/services/x11/desktop-managers/mate.nix
+++ b/nixos/modules/services/x11/desktop-managers/mate.nix
@@ -108,6 +108,8 @@ in
services.gnome3.gnome-keyring.enable = true;
services.upower.enable = config.powerManagement.enable;
+ security.pam.services."mate-screensaver".unixAuth = true;
+
environment.pathsToLink = [ "/share" ];
};
diff --git a/nixos/modules/services/x11/window-managers/default.nix b/nixos/modules/services/x11/window-managers/default.nix
index bc420831ad8..e617e55a7a5 100644
--- a/nixos/modules/services/x11/window-managers/default.nix
+++ b/nixos/modules/services/x11/window-managers/default.nix
@@ -62,9 +62,7 @@ in
example = "wmii";
description = "Default window manager loaded if none have been chosen.";
apply = defaultWM:
- if defaultWM == "none" && cfg.session != [] then
- (head cfg.session).name
- else if any (w: w.name == defaultWM) cfg.session then
+ if any (w: w.name == defaultWM) cfg.session then
defaultWM
else
throw "Default window manager (${defaultWM}) not found.";
diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix
index f96d3c5afba..e7918cf9d31 100644
--- a/nixos/modules/services/x11/xserver.nix
+++ b/nixos/modules/services/x11/xserver.nix
@@ -161,15 +161,6 @@ in
'';
};
- plainX = mkOption {
- type = types.bool;
- default = false;
- description = ''
- Whether the X11 session can be plain (without DM/WM) and
- the Xsession script will be used as fallback or not.
- '';
- };
-
autorun = mkOption {
type = types.bool;
default = true;
@@ -561,11 +552,6 @@ in
+ "${toString (length primaryHeads)} heads set to primary: "
+ concatMapStringsSep ", " (x: x.output) primaryHeads;
})
- { assertion = cfg.desktopManager.default == "none" && cfg.windowManager.default == "none" -> cfg.plainX;
- message = "Either the desktop manager or the window manager shouldn't be `none`! "
- + "To explicitly allow this, you can also set `services.xserver.plainX` to `true`. "
- + "The `default` value looks for enabled WMs/DMs and select the first one.";
- }
];
environment.etc =
diff --git a/nixos/modules/system/boot/stage-2-init.sh b/nixos/modules/system/boot/stage-2-init.sh
index 9d2c580d62a..b83012dfda7 100644
--- a/nixos/modules/system/boot/stage-2-init.sh
+++ b/nixos/modules/system/boot/stage-2-init.sh
@@ -43,7 +43,7 @@ if [ ! -e /proc/1 ]; then
local options="$3"
local fsType="$4"
- mkdir -m 0755 -p "$mountPoint"
+ install -m 0755 -d "$mountPoint"
mount -n -t "$fsType" -o "$options" "$device" "$mountPoint"
}
source @earlyMountScript@
@@ -71,7 +71,7 @@ fi
# Provide a /etc/mtab.
-mkdir -m 0755 -p /etc
+install -m 0755 -d /etc
test -e /etc/fstab || touch /etc/fstab # to shut up mount
rm -f /etc/mtab* # not that we care about stale locks
ln -s /proc/mounts /etc/mtab
@@ -79,8 +79,8 @@ ln -s /proc/mounts /etc/mtab
# More special file systems, initialise required directories.
[ -e /proc/bus/usb ] && mount -t usbfs usbfs /proc/bus/usb # UML doesn't have USB by default
-mkdir -m 01777 -p /tmp
-mkdir -m 0755 -p /var/{log,lib,db} /nix/var /etc/nixos/ \
+install -m 01777 -d /tmp
+install -m 0755 -d /var/{log,lib,db} /nix/var /etc/nixos/ \
/run/lock /home /bin # for the /bin/sh symlink
diff --git a/nixos/modules/tasks/network-interfaces-scripted.nix b/nixos/modules/tasks/network-interfaces-scripted.nix
index 630fe6d114c..c7d56790fa0 100644
--- a/nixos/modules/tasks/network-interfaces-scripted.nix
+++ b/nixos/modules/tasks/network-interfaces-scripted.nix
@@ -68,8 +68,7 @@ let
(hasAttr dev cfg.macvlans) ||
(hasAttr dev cfg.sits) ||
(hasAttr dev cfg.vlans) ||
- (hasAttr dev cfg.vswitches) ||
- (hasAttr dev cfg.wlanInterfaces)
+ (hasAttr dev cfg.vswitches)
then [ "${dev}-netdev.service" ]
else optional (dev != null && dev != "lo" && !config.boot.isContainer) (subsystemDevice dev);
diff --git a/nixos/modules/tasks/network-interfaces.nix b/nixos/modules/tasks/network-interfaces.nix
index a2d2eb1c311..14f9b956751 100644
--- a/nixos/modules/tasks/network-interfaces.nix
+++ b/nixos/modules/tasks/network-interfaces.nix
@@ -62,35 +62,6 @@ let
then mapAttrsToList (n: v: v//{_iName=n;}) (filterAttrs (n: _: n==device) interfaces) ++ mapAttrsToList (n: v: v//{_iName=n;}) (filterAttrs (n: _: n!=device) interfaces)
else mapAttrsToList (n: v: v // {_iName = n;}) interfaces;
- # udev script that configures a physical wlan device and adds virtual interfaces
- wlanDeviceUdevScript = device: interfaceList: pkgs.writeScript "wlan-${device}-udev-script" ''
- #!${pkgs.runtimeShell}
-
- # Change the wireless phy device to a predictable name.
- if [ -e "/sys/class/net/${device}/phy80211/name" ]; then
- ${pkgs.iw}/bin/iw phy `${pkgs.coreutils}/bin/cat /sys/class/net/${device}/phy80211/name` set name ${device} || true
- fi
-
- # Crate new, virtual interfaces and configure them at the same time
- ${flip concatMapStrings (drop 1 interfaceList) (i: ''
- ${pkgs.iw}/bin/iw dev ${device} interface add ${i._iName} type ${i.type} \
- ${optionalString (i.type == "mesh" && i.meshID != null) "mesh_id ${i.meshID}"} \
- ${optionalString (i.type == "monitor" && i.flags != null) "flags ${i.flags}"} \
- ${optionalString (i.type == "managed" && i.fourAddr != null) "4addr ${if i.fourAddr then "on" else "off"}"} \
- ${optionalString (i.mac != null) "addr ${i.mac}"}
- '')}
-
- # Reconfigure and rename the default interface that already exists
- ${flip concatMapStrings (take 1 interfaceList) (i: ''
- ${pkgs.iw}/bin/iw dev ${device} set type ${i.type}
- ${optionalString (i.type == "mesh" && i.meshID != null) "${pkgs.iw}/bin/iw dev ${device} set meshid ${i.meshID}"}
- ${optionalString (i.type == "monitor" && i.flags != null) "${pkgs.iw}/bin/iw dev ${device} set monitor ${i.flags}"}
- ${optionalString (i.type == "managed" && i.fourAddr != null) "${pkgs.iw}/bin/iw dev ${device} set 4addr ${if i.fourAddr then "on" else "off"}"}
- ${optionalString (i.mac != null) "${pkgs.iproute}/bin/ip link set dev ${device} address ${i.mac}"}
- ${optionalString (device != i._iName) "${pkgs.iproute}/bin/ip link set dev ${device} name ${i._iName}"}
- '')}
- '';
-
# We must escape interfaces due to the systemd interpretation
subsystemDevice = interface:
"sys-subsystem-net-devices-${escapeSystemdPath interface}.device";
diff --git a/nixos/modules/virtualisation/ec2-amis.nix b/nixos/modules/virtualisation/ec2-amis.nix
index 01512911a05..baffad79b00 100644
--- a/nixos/modules/virtualisation/ec2-amis.nix
+++ b/nixos/modules/virtualisation/ec2-amis.nix
@@ -240,5 +240,22 @@ let self = {
"17.09".sa-east-1.hvm-ebs = "ami-4762202b";
"17.09".ap-south-1.hvm-ebs = "ami-4e376021";
- latest = self."17.09";
+ # 18.03.131792.becbe4dbe16
+ "18.03".eu-west-1.hvm-ebs = "ami-cda4fab4";
+ "18.03".eu-west-2.hvm-ebs = "ami-d96786be";
+ "18.03".eu-west-3.hvm-ebs = "ami-6b0cba16";
+ "18.03".eu-central-1.hvm-ebs = "ami-5e2b75b5";
+ "18.03".us-east-1.hvm-ebs = "ami-d464cba9";
+ "18.03".us-east-2.hvm-ebs = "ami-fd221298";
+ "18.03".us-west-1.hvm-ebs = "ami-ff0d1d9f";
+ "18.03".us-west-2.hvm-ebs = "ami-c05c3bb8";
+ "18.03".ca-central-1.hvm-ebs = "ami-cc72f4a8";
+ "18.03".ap-southeast-1.hvm-ebs = "ami-b61633ca";
+ "18.03".ap-southeast-2.hvm-ebs = "ami-530fc131";
+ "18.03".ap-northeast-1.hvm-ebs = "ami-90d6c0ec";
+ "18.03".ap-northeast-2.hvm-ebs = "ami-a1248bcf";
+ "18.03".sa-east-1.hvm-ebs = "ami-b090c6dc";
+ "18.03".ap-south-1.hvm-ebs = "ami-32c9ec5d";
+
+ latest = self."18.03";
}; in self
diff --git a/nixos/modules/virtualisation/google-compute-image.nix b/nixos/modules/virtualisation/google-compute-image.nix
index 155a33b3bb3..559c30b9416 100644
--- a/nixos/modules/virtualisation/google-compute-image.nix
+++ b/nixos/modules/virtualisation/google-compute-image.nix
@@ -2,7 +2,7 @@
with lib;
let
- diskSize = 1024; # MB
+ diskSize = 1536; # MB
gce = pkgs.google-compute-engine;
in
{
@@ -57,6 +57,12 @@ in
# Always include cryptsetup so that NixOps can use it.
environment.systemPackages = [ pkgs.cryptsetup ];
+ # Make sure GCE image does not replace host key that NixOps sets
+ environment.etc."default/instance_configs.cfg".text = lib.mkDefault ''
+ [InstanceSetup]
+ set_host_keys = false
+ '';
+
# Rely on GCP's firewall instead
networking.firewall.enable = mkDefault false;
diff --git a/nixos/release.nix b/nixos/release.nix
index 9b4aa4b0399..c84853a142c 100644
--- a/nixos/release.nix
+++ b/nixos/release.nix
@@ -55,6 +55,17 @@ let
}).config.system.build.isoImage);
+ makeSdImage =
+ { module, maintainers ? ["dezgeg"], system }:
+
+ with import nixpkgs { inherit system; };
+
+ hydraJob ((import lib/eval-config.nix {
+ inherit system;
+ modules = [ module versionModule ];
+ }).config.system.build.sdImage);
+
+
makeSystemTarball =
{ module, maintainers ? ["viric"], system }:
@@ -155,6 +166,10 @@ in rec {
inherit system;
});
+ sd_image = forMatchingSystems [ "aarch64-linux" ] (system: makeSdImage {
+ module = ./modules/installer/cd-dvd/sd-image-aarch64.nix;
+ inherit system;
+ });
# A bootable VirtualBox virtual appliance as an OVA file (i.e. packaged OVF).
ova = forMatchingSystems [ "x86_64-linux" ] (system:
@@ -296,7 +311,10 @@ in rec {
tests.kernel-copperhead = callTest tests/kernel-copperhead.nix {};
tests.kernel-latest = callTest tests/kernel-latest.nix {};
tests.kernel-lts = callTest tests/kernel-lts.nix {};
- tests.kubernetes = callSubTestsOnMatchingSystems ["x86_64-linux"] tests/kubernetes/default.nix {};
+ tests.kubernetes.dns = callSubTestsOnMatchingSystems ["x86_64-linux"] tests/kubernetes/dns.nix {};
+ ## kubernetes.e2e should eventually replace kubernetes.rbac when it works
+ #tests.kubernetes.e2e = callSubTestsOnMatchingSystems ["x86_64-linux"] tests/kubernetes/e2e.nix {};
+ tests.kubernetes.rbac = callSubTestsOnMatchingSystems ["x86_64-linux"] tests/kubernetes/rbac.nix {};
tests.latestKernel.login = callTest tests/login.nix { latestKernel = true; };
tests.ldap = callTest tests/ldap.nix {};
#tests.lightdm = callTest tests/lightdm.nix {};
@@ -365,6 +383,7 @@ in rec {
tests.switchTest = callTest tests/switch-test.nix {};
tests.taskserver = callTest tests/taskserver.nix {};
tests.tomcat = callTest tests/tomcat.nix {};
+ tests.transmission = callTest tests/transmission.nix {};
tests.udisks2 = callTest tests/udisks2.nix {};
tests.vault = callTest tests/vault.nix {};
tests.virtualbox = callSubTestsOnMatchingSystems ["x86_64-linux"] tests/virtualbox.nix {};
diff --git a/nixos/tests/atd.nix b/nixos/tests/atd.nix
index c2c0a716e0d..5260c8ddfb8 100644
--- a/nixos/tests/atd.nix
+++ b/nixos/tests/atd.nix
@@ -17,20 +17,14 @@ import ./make-test.nix ({ pkgs, lib, ... }:
startAll;
$machine->fail("test -f ~root/at-1");
- $machine->fail("test -f ~root/batch-1");
$machine->fail("test -f ~alice/at-1");
- $machine->fail("test -f ~alice/batch-1");
$machine->succeed("echo 'touch ~root/at-1' | at now+1min");
- $machine->succeed("echo 'touch ~root/batch-1' | batch");
$machine->succeed("su - alice -c \"echo 'touch at-1' | at now+1min\"");
- $machine->succeed("su - alice -c \"echo 'touch batch-1' | batch\"");
$machine->succeed("sleep 1.5m");
$machine->succeed("test -f ~root/at-1");
- $machine->succeed("test -f ~root/batch-1");
$machine->succeed("test -f ~alice/at-1");
- $machine->succeed("test -f ~alice/batch-1");
'';
})
diff --git a/nixos/tests/containers-imperative.nix b/nixos/tests/containers-imperative.nix
index 7e2a5497638..20902913e9a 100644
--- a/nixos/tests/containers-imperative.nix
+++ b/nixos/tests/containers-imperative.nix
@@ -20,7 +20,7 @@ import ./make-test.nix ({ pkgs, ...} : {
containers.foo.config = {};
};
};
- in [ pkgs.stdenv emptyContainer.config.containers.foo.path ];
+ in [ pkgs.stdenv emptyContainer.config.containers.foo.path pkgs.libxslt ];
};
testScript =
diff --git a/nixos/tests/containers-physical_interfaces.nix b/nixos/tests/containers-physical_interfaces.nix
index bd1228b8e37..bde8e175f95 100644
--- a/nixos/tests/containers-physical_interfaces.nix
+++ b/nixos/tests/containers-physical_interfaces.nix
@@ -52,7 +52,7 @@ import ./make-test.nix ({ pkgs, ...} : {
config = {
networking.bonds.bond0 = {
interfaces = [ "eth1" ];
- mode = "active-backup";
+ driverOptions.mode = "active-backup";
};
networking.interfaces.bond0.ipv4.addresses = [
{ address = "10.10.0.3"; prefixLength = 24; }
@@ -73,7 +73,7 @@ import ./make-test.nix ({ pkgs, ...} : {
config = {
networking.bonds.bond0 = {
interfaces = [ "eth1" ];
- mode = "active-backup";
+ driverOptions.mode = "active-backup";
};
networking.bridges.br0.interfaces = [ "bond0" ];
networking.interfaces.br0.ipv4.addresses = [
diff --git a/nixos/tests/kubernetes/certs.nix b/nixos/tests/kubernetes/certs.nix
index d3eff910c46..520c728b65e 100644
--- a/nixos/tests/kubernetes/certs.nix
+++ b/nixos/tests/kubernetes/certs.nix
@@ -6,29 +6,62 @@
kubelets
}:
let
- runWithCFSSL = name: cmd:
- builtins.fromJSON (builtins.readFile (
- pkgs.runCommand "${name}-cfss.json" {
- buildInputs = [ pkgs.cfssl ];
- } "cfssl ${cmd} > $out"
- ));
+ runWithCFSSL = name: cmd:
+ let secrets = pkgs.runCommand "${name}-cfss.json" {
+ buildInputs = [ pkgs.cfssl pkgs.jq ];
+ outputs = [ "out" "cert" "key" "csr" ];
+ }
+ ''
+ (
+ echo "${cmd}"
+ cfssl ${cmd} > tmp
+ cat tmp | jq -r .key > $key
+ cat tmp | jq -r .cert > $cert
+ cat tmp | jq -r .csr > $csr
- writeCFSSL = content:
- pkgs.runCommand content.name {
- buildInputs = [ pkgs.cfssl ];
- } ''
- mkdir -p $out
- cd $out
- cat ${writeFile content} | cfssljson -bare ${content.name}
- '';
+ touch $out
+ ) 2>&1 | fold -w 80 -s
+ '';
+ in {
+ key = secrets.key;
+ cert = secrets.cert;
+ csr = secrets.csr;
+ };
+
+ writeCFSSL = content:
+ pkgs.runCommand content.name {
+ buildInputs = [ pkgs.cfssl pkgs.jq ];
+ } ''
+ mkdir -p $out
+ cd $out
+
+ json=${pkgs.lib.escapeShellArg (builtins.toJSON content)}
+
+ # for a given $field in the $json, treat the associated value as a
+ # file path and substitute the contents thereof into the $json
+ # object.
+ expandFileField() {
+ local field=$1
+ if jq -e --arg field "$field" 'has($field)'; then
+ local path="$(echo "$json" | jq -r ".$field")"
+ json="$(echo "$json" | jq --arg val "$(cat "$path")" ".$field = \$val")"
+ fi
+ }
+
+ expandFileField key
+ expandFileField ca
+ expandFileField cert
+
+ echo "$json" | cfssljson -bare ${content.name}
+ '';
noCSR = content: pkgs.lib.filterAttrs (n: v: n != "csr") content;
noKey = content: pkgs.lib.filterAttrs (n: v: n != "key") content;
- writeFile = content: pkgs.writeText "content" (
- if pkgs.lib.isAttrs content then builtins.toJSON content
- else toString content
- );
+ writeFile = content:
+ if pkgs.lib.isDerivation content
+ then content
+ else pkgs.writeText "content" (builtins.toJSON content);
createServingCertKey = { ca, cn, hosts? [], size ? 2048, name ? cn }:
noCSR (
diff --git a/nixos/tests/kubernetes/e2e.nix b/nixos/tests/kubernetes/e2e.nix
index d9d7ba9bb2c..175d8413045 100644
--- a/nixos/tests/kubernetes/e2e.nix
+++ b/nixos/tests/kubernetes/e2e.nix
@@ -2,7 +2,7 @@
with import ./base.nix { inherit system; };
let
domain = "my.zyx";
- certs = import ./certs.nix { externalDomain = domain; };
+ certs = import ./certs.nix { externalDomain = domain; kubelets = ["machine1" "machine2"]; };
kubeconfig = pkgs.writeText "kubeconfig.json" (builtins.toJSON {
apiVersion = "v1";
kind = "Config";
diff --git a/nixos/tests/kubernetes/rbac.nix b/nixos/tests/kubernetes/rbac.nix
index 1966fed3a5f..226808c4b26 100644
--- a/nixos/tests/kubernetes/rbac.nix
+++ b/nixos/tests/kubernetes/rbac.nix
@@ -12,7 +12,7 @@ let
});
roRoleBinding = pkgs.writeText "ro-role-binding.json" (builtins.toJSON {
- apiVersion = "rbac.authorization.k8s.io/v1beta1";
+ apiVersion = "rbac.authorization.k8s.io/v1";
kind = "RoleBinding";
metadata = {
name = "read-pods";
@@ -31,7 +31,7 @@ let
});
roRole = pkgs.writeText "ro-role.json" (builtins.toJSON {
- apiVersion = "rbac.authorization.k8s.io/v1beta1";
+ apiVersion = "rbac.authorization.k8s.io/v1";
kind = "Role";
metadata = {
name = "pod-reader";
diff --git a/nixos/tests/openldap.nix b/nixos/tests/openldap.nix
index 1bef867c57b..1eaf87a8eaa 100644
--- a/nixos/tests/openldap.nix
+++ b/nixos/tests/openldap.nix
@@ -1,5 +1,5 @@
import ./make-test.nix {
- name = "dovecot";
+ name = "openldap";
machine = { pkgs, ... }: {
services.openldap = {
diff --git a/nixos/tests/transmission.nix b/nixos/tests/transmission.nix
new file mode 100644
index 00000000000..34c49bd7f15
--- /dev/null
+++ b/nixos/tests/transmission.nix
@@ -0,0 +1,21 @@
+import ./make-test.nix ({ pkgs, ...} : {
+ name = "transmission";
+ meta = with pkgs.stdenv.lib.maintainers; {
+ maintainers = [ coconnor ];
+ };
+
+ machine = { config, pkgs, ... }: {
+ imports = [ ../modules/profiles/minimal.nix ];
+
+ networking.firewall.allowedTCPPorts = [ 9091 ];
+
+ services.transmission.enable = true;
+ };
+
+ testScript =
+ ''
+ startAll;
+ $machine->waitForUnit("transmission");
+ $machine->shutdown;
+ '';
+})
diff --git a/pkgs/applications/altcoins/go-ethereum.nix b/pkgs/applications/altcoins/go-ethereum.nix
index 84e0a32e7b2..65e1dbc9b19 100644
--- a/pkgs/applications/altcoins/go-ethereum.nix
+++ b/pkgs/applications/altcoins/go-ethereum.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "go-ethereum-${version}";
- version = "1.8.2";
+ version = "1.8.3";
goPackagePath = "github.com/ethereum/go-ethereum";
# Fix for usb-related segmentation faults on darwin
@@ -27,7 +27,7 @@ buildGoPackage rec {
owner = "ethereum";
repo = "go-ethereum";
rev = "v${version}";
- sha256 = "19ryfy9dsmgk3kimkmq2hif1di4binqg9718xrmirf063rajk02a";
+ sha256 = "1vdrf3fi4arr6aivyp5myj4jy7apqbiqa6brr3jplmc07q1yijnf";
};
meta = with stdenv.lib; {
diff --git a/pkgs/applications/altcoins/monero-gui/default.nix b/pkgs/applications/altcoins/monero-gui/default.nix
index 0d2899b2e64..2aff86ae1d3 100644
--- a/pkgs/applications/altcoins/monero-gui/default.nix
+++ b/pkgs/applications/altcoins/monero-gui/default.nix
@@ -2,32 +2,34 @@
, makeWrapper, makeDesktopItem
, qtbase, qmake, qtmultimedia, qttools
, qtgraphicaleffects, qtdeclarative
-, qtlocation, qtquickcontrols, qtwebchannel
+, qtlocation, qtquickcontrols2, qtwebchannel
, qtwebengine, qtx11extras, qtxmlpatterns
, monero, unbound, readline, boost, libunwind
+, pcsclite, zeromq, cppzmq, pkgconfig
}:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "monero-gui-${version}";
- version = "0.11.1.0";
+ version = "0.12.0.0";
src = fetchFromGitHub {
owner = "monero-project";
repo = "monero-gui";
rev = "v${version}";
- sha256 = "01d7apwrv8j8bh7plvvhlnll3ransaha3n6rx19nkgvfn319hswq";
+ sha256 = "1mg5ival8a2wdp14yib4wzqax4xyvd40zjy9anhszljds1439jhl";
};
- nativeBuildInputs = [ qmake ];
+ nativeBuildInputs = [ qmake pkgconfig ];
buildInputs = [
qtbase qtmultimedia qtgraphicaleffects
- qtdeclarative qtlocation qtquickcontrols
+ qtdeclarative qtlocation qtquickcontrols2
qtwebchannel qtwebengine qtx11extras
qtxmlpatterns monero unbound readline
- boost libunwind makeWrapper
+ boost libunwind pcsclite zeromq cppzmq
+ makeWrapper
];
patches = [
diff --git a/pkgs/applications/altcoins/monero-gui/move-log-file.patch b/pkgs/applications/altcoins/monero-gui/move-log-file.patch
index 928fb32911f..08840c6a65e 100644
--- a/pkgs/applications/altcoins/monero-gui/move-log-file.patch
+++ b/pkgs/applications/altcoins/monero-gui/move-log-file.patch
@@ -1,8 +1,8 @@
diff --git a/main.cpp b/main.cpp
-index 1a9a979..2316929 100644
+index c03b160..a8ea263 100644
--- a/main.cpp
+++ b/main.cpp
-@@ -74,10 +74,6 @@ int main(int argc, char *argv[])
+@@ -80,14 +80,16 @@ int main(int argc, char *argv[])
// qDebug() << "High DPI auto scaling - enabled";
//#endif
@@ -13,9 +13,6 @@ index 1a9a979..2316929 100644
MainApp app(argc, argv);
qDebug() << "app startd";
-@@ -86,6 +82,13 @@ int main(int argc, char *argv[])
- app.setOrganizationDomain("getmonero.org");
- app.setOrganizationName("monero-project");
+ // Log settings
+ QString logfile =
@@ -23,20 +20,19 @@ index 1a9a979..2316929 100644
+ + "/monero-wallet-gui.log";
+ Monero::Wallet::init(argv[0], logfile.toUtf8().constData());
+
-+
- filter *eventFilter = new filter;
- app.installEventFilter(eventFilter);
-
+ app.setApplicationName("monero-core");
+ app.setOrganizationDomain("getmonero.org");
+ app.setOrganizationName("monero-project");
diff --git a/src/libwalletqt/Wallet.cpp b/src/libwalletqt/Wallet.cpp
-index 8525bf3..6967b24 100644
+index 74649ce..fe1efc6 100644
--- a/src/libwalletqt/Wallet.cpp
+++ b/src/libwalletqt/Wallet.cpp
-@@ -613,7 +613,7 @@ QString Wallet::getDaemonLogPath() const
-
- QString Wallet::getWalletLogPath() const
- {
-- return QCoreApplication::applicationDirPath() + "/monero-wallet-gui.log";
-+ return QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/monero-wallet-gui.log";
+@@ -729,7 +729,7 @@ QString Wallet::getWalletLogPath() const
+ #ifdef Q_OS_MACOS
+ return QStandardPaths::standardLocations(QStandardPaths::HomeLocation).at(0) + "/Library/Logs/" + filename;
+ #else
+- return QCoreApplication::applicationDirPath() + "/" + filename;
++ return QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + filename;
+ #endif
}
- Wallet::Wallet(Monero::Wallet *w, QObject *parent)
diff --git a/pkgs/applications/altcoins/monero/build-wallet-rpc.patch b/pkgs/applications/altcoins/monero/build-wallet-rpc.patch
deleted file mode 100644
index 5436332db80..00000000000
--- a/pkgs/applications/altcoins/monero/build-wallet-rpc.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-diff --git a/src/wallet/CMakeLists.txt b/src/wallet/CMakeLists.txt
-index 63908005..f6656d5c 100644
---- a/src/wallet/CMakeLists.txt
-+++ b/src/wallet/CMakeLists.txt
-@@ -86,43 +86,40 @@ target_link_libraries(wallet
- ${EXTRA_LIBRARIES})
- add_dependencies(wallet version)
-
--if (NOT BUILD_GUI_DEPS)
-- set(wallet_rpc_sources
-- wallet_rpc_server.cpp)
-+set(wallet_rpc_sources
-+ wallet_rpc_server.cpp)
-
-- set(wallet_rpc_headers)
-+set(wallet_rpc_headers)
-
-- set(wallet_rpc_private_headers
-- wallet_rpc_server.h)
-+set(wallet_rpc_private_headers
-+ wallet_rpc_server.h)
-
-- monero_private_headers(wallet_rpc_server
-- ${wallet_rpc_private_headers})
-- monero_add_executable(wallet_rpc_server
-- ${wallet_rpc_sources}
-- ${wallet_rpc_headers}
-- ${wallet_rpc_private_headers})
--
-- target_link_libraries(wallet_rpc_server
-- PRIVATE
-- wallet
-- epee
-- rpc
-- cryptonote_core
-- cncrypto
-- common
-- ${Boost_CHRONO_LIBRARY}
-- ${Boost_PROGRAM_OPTIONS_LIBRARY}
-- ${Boost_FILESYSTEM_LIBRARY}
-- ${Boost_THREAD_LIBRARY}
-- ${CMAKE_THREAD_LIBS_INIT}
-- ${EXTRA_LIBRARIES})
-- add_dependencies(wallet_rpc_server version)
-- set_property(TARGET wallet_rpc_server
-- PROPERTY
-- OUTPUT_NAME "monero-wallet-rpc")
-- install(TARGETS wallet_rpc_server DESTINATION bin)
--endif()
-+monero_private_headers(wallet_rpc_server
-+ ${wallet_rpc_private_headers})
-+monero_add_executable(wallet_rpc_server
-+ ${wallet_rpc_sources}
-+ ${wallet_rpc_headers}
-+ ${wallet_rpc_private_headers})
-
-+target_link_libraries(wallet_rpc_server
-+ PRIVATE
-+ wallet
-+ epee
-+ rpc
-+ cryptonote_core
-+ cncrypto
-+ common
-+ ${Boost_CHRONO_LIBRARY}
-+ ${Boost_PROGRAM_OPTIONS_LIBRARY}
-+ ${Boost_FILESYSTEM_LIBRARY}
-+ ${Boost_THREAD_LIBRARY}
-+ ${CMAKE_THREAD_LIBS_INIT}
-+ ${EXTRA_LIBRARIES})
-+add_dependencies(wallet_rpc_server version)
-+set_property(TARGET wallet_rpc_server
-+ PROPERTY
-+ OUTPUT_NAME "monero-wallet-rpc")
-+install(TARGETS wallet_rpc_server DESTINATION bin)
-
- # build and install libwallet_merged only if we building for GUI
- if (BUILD_GUI_DEPS)
diff --git a/pkgs/applications/altcoins/monero/default.nix b/pkgs/applications/altcoins/monero/default.nix
index 57a058bada6..8be24522f56 100644
--- a/pkgs/applications/altcoins/monero/default.nix
+++ b/pkgs/applications/altcoins/monero/default.nix
@@ -1,48 +1,44 @@
-{ stdenv, fetchpatch, fetchFromGitHub, cmake
-, boost, miniupnpc, openssl, pkgconfig, unbound
-, IOKit
+{ stdenv, fetchFromGitHub, cmake, pkgconfig, git
+, boost, miniupnpc, openssl, unbound, cppzmq
+, zeromq, pcsclite, readline
+, CoreData, IOKit, PCSC
}:
+assert stdenv.isDarwin -> IOKit != null;
+
+with stdenv.lib;
+
stdenv.mkDerivation rec {
name = "monero-${version}";
- version = "0.11.1.0";
+ version = "0.12.0.0";
src = fetchFromGitHub {
owner = "monero-project";
repo = "monero";
rev = "v${version}";
- sha256 = "0nrpxx6r63ia6ard85d504x2kgaikvrhb5sg93ml70l6djyy1148";
+ sha256 = "1lc9mkrl1m8mdbvj88y8y5rv44vinxf7dyv221ndmw5c5gs5zfgk";
};
- nativeBuildInputs = [ cmake pkgconfig ];
+ nativeBuildInputs = [ cmake pkgconfig git ];
- buildInputs = [ boost miniupnpc openssl unbound ]
- ++ stdenv.lib.optional stdenv.isDarwin IOKit;
-
- patches = [
- ./build-wallet-rpc.patch # fixed in next release
- ];
+ buildInputs = [
+ boost miniupnpc openssl unbound
+ cppzmq zeromq pcsclite readline
+ ] ++ optionals stdenv.isDarwin [ IOKit CoreData PCSC ];
cmakeFlags = [
"-DCMAKE_BUILD_TYPE=Release"
"-DBUILD_GUI_DEPS=ON"
+ "-DReadline_ROOT_DIR=${readline.dev}"
];
- doCheck = false;
+ hardeningDisable = [ "fortify" ];
- installPhase = ''
- make install
- install -Dt "$out/bin/" \
- bin/monero-blockchain-export \
- bin/monero-blockchain-import \
- bin/monero-wallet-rpc
- '';
-
- meta = with stdenv.lib; {
+ meta = {
description = "Private, secure, untraceable currency";
homepage = https://getmonero.org/;
license = licenses.bsd3;
platforms = platforms.all;
- maintainers = [ maintainers.ehmry ];
+ maintainers = with maintainers; [ ehmry rnhmjoj ];
};
}
diff --git a/pkgs/applications/audio/easytag/default.nix b/pkgs/applications/audio/easytag/default.nix
index 1ca2570fd4b..e3263c944f4 100644
--- a/pkgs/applications/audio/easytag/default.nix
+++ b/pkgs/applications/audio/easytag/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, glib, libid3tag, id3lib, taglib
-, libvorbis, libogg, flac, itstool, libxml2, gsettings-desktop-schemas
+, libvorbis, libogg, opusfile, flac, itstool, libxml2, gsettings-desktop-schemas
, gnome3, wrapGAppsHook
}:
@@ -18,7 +18,7 @@ in stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool itstool libxml2 wrapGAppsHook ];
buildInputs = [
- gtk3 glib libid3tag id3lib taglib libvorbis libogg flac
+ gtk3 glib libid3tag id3lib taglib libvorbis libogg opusfile flac
gsettings-desktop-schemas gnome3.defaultIconTheme
];
diff --git a/pkgs/applications/audio/elisa/default.nix b/pkgs/applications/audio/elisa/default.nix
index 6affb16e073..4ef1f1dd202 100644
--- a/pkgs/applications/audio/elisa/default.nix
+++ b/pkgs/applications/audio/elisa/default.nix
@@ -7,14 +7,13 @@
mkDerivation rec {
name = "elisa-${version}";
- # 0.1 is expected in early/mid 2018-04
- version = "0.0.20180320";
+ version = "0.1";
src = fetchFromGitHub {
owner = "KDE";
repo = "elisa";
- rev = "9dd35d7244a8a3553275152f5b50fbe6d272ce64";
- sha256 = "0mjqvcpk2y4jlwkka8gzl50wgqjjx9bzpbrj79cr0ib3jyviss4k";
+ rev = version;
+ sha256 = "13i0fkpwrskric3gfalh7mcpp4l2knwnq7jpq391lgh6krq04r4w";
};
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
diff --git a/pkgs/applications/audio/fmit/default.nix b/pkgs/applications/audio/fmit/default.nix
index e238f883142..f1bdcd8c524 100644
--- a/pkgs/applications/audio/fmit/default.nix
+++ b/pkgs/applications/audio/fmit/default.nix
@@ -11,10 +11,10 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "fmit-${version}";
- version = "1.1.13";
+ version = "1.1.14";
src = fetchFromGitHub {
- sha256 = "1p374gf7iksrlyvddm3w4qk3l0rxsiyymz5s8dmc447yvin8ykfq";
+ sha256 = "18gvl8smcnigzldy1acs5h8rscf287b39xi4y2cl5armqbj0y38x";
rev = "v${version}";
repo = "fmit";
owner = "gillesdegottex";
diff --git a/pkgs/applications/audio/mpg123/default.nix b/pkgs/applications/audio/mpg123/default.nix
index 1b30399ae0a..3aef2e35943 100644
--- a/pkgs/applications/audio/mpg123/default.nix
+++ b/pkgs/applications/audio/mpg123/default.nix
@@ -4,11 +4,11 @@
}:
stdenv.mkDerivation rec {
- name = "mpg123-1.25.8";
+ name = "mpg123-1.25.10";
src = fetchurl {
url = "mirror://sourceforge/mpg123/${name}.tar.bz2";
- sha256 = "16s9z1xc5kv1p90g42vsr9m4gq3dwjsmrj873x4i8601mvpm3nkr";
+ sha256 = "08vhp8lz7d9ybhxcmkq3adwfryhivfvp0745k4r9kgz4wap3f4vc";
};
buildInputs = stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
diff --git a/pkgs/applications/audio/pd-plugins/helmholtz/default.nix b/pkgs/applications/audio/pd-plugins/helmholtz/default.nix
index 8f04bf116a6..3670fb8347d 100644
--- a/pkgs/applications/audio/pd-plugins/helmholtz/default.nix
+++ b/pkgs/applications/audio/pd-plugins/helmholtz/default.nix
@@ -20,13 +20,16 @@ stdenv.mkDerivation rec {
mv helmholtz~/src/Makefile .
rm -rf helmholtz~/src/
rm helmholtz~/helmholtz~.pd_darwin
+ rm helmholtz~/helmholtz~.pd_linux
rm helmholtz~/helmholtz~.dll
rm -rf __MACOSX
'';
patchPhase = ''
+ mkdir -p $out/helmholtz~
sed -i "s@current: pd_darwin@current: pd_linux@g" Makefile
sed -i "s@-Wl@@g" Makefile
+ sed -i "s@\$(NAME).pd_linux \.\./\$(NAME).pd_linux@helmholtz~.pd_linux $out/helmholtz~/@g" Makefile
'';
installPhase = ''
diff --git a/pkgs/applications/audio/praat/default.nix b/pkgs/applications/audio/praat/default.nix
index 94b240ebb02..ada12eefaf7 100644
--- a/pkgs/applications/audio/praat/default.nix
+++ b/pkgs/applications/audio/praat/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "praat-${version}";
- version = "6.0.37";
+ version = "6.0.38";
src = fetchurl {
url = "https://github.com/praat/praat/archive/v${version}.tar.gz";
- sha256 = "1c675jfzcrwfn8lcswm5y5kmazkhnb0p4mzlf5sim57hms88ffjq";
+ sha256 = "1l01mdhd0kf6mnyrg8maydr56cpw4312gryk303kr0a4w0gwzhhc";
};
configurePhase = ''
diff --git a/pkgs/applications/display-managers/slim/default.nix b/pkgs/applications/display-managers/slim/default.nix
index 5d06c2221b3..5160e02963f 100644
--- a/pkgs/applications/display-managers/slim/default.nix
+++ b/pkgs/applications/display-managers/slim/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, cmake, pkgconfig, xorg, libjpeg, libpng
+{ stdenv, fetchurl, fetchpatch, cmake, pkgconfig, xorg, libjpeg, libpng
, fontconfig, freetype, pam, dbus_libs, makeWrapper }:
stdenv.mkDerivation rec {
@@ -26,7 +26,10 @@ stdenv.mkDerivation rec {
# Allow to set logfile to a special "/dev/stderr" in order to continue
# logging to stderr and thus to the journal.
./no-logfile.patch
- ];
+ ] ++ stdenv.lib.optional stdenv.hostPlatform.isMusl (fetchpatch {
+ url = "https://raw.githubusercontent.com/gentoo/musl/8eddda8072add075ebf56cf6d288bc1450d6b5f8/x11-misc/slim/files/slim-1.3.6-add-missing-libgen_h.patch";
+ sha256 = "0f82672s2r2cmdqfn2mbg3di76mbla9n0ik20p2gv4igi6p866xm";
+ });
preConfigure = "substituteInPlace CMakeLists.txt --replace /lib $out/lib";
diff --git a/pkgs/applications/editors/android-studio/default.nix b/pkgs/applications/editors/android-studio/default.nix
index fa929d714b7..72794df5fde 100644
--- a/pkgs/applications/editors/android-studio/default.nix
+++ b/pkgs/applications/editors/android-studio/default.nix
@@ -8,9 +8,9 @@ let
inherit (gnome2) GConf gnome_vfs;
};
latestVersion = {
- version = "3.2.0.7"; # "Android Studio 3.2 Canary 8"
- build = "173.4670218";
- sha256Hash = "0p1lls1pkhji8x0p32clsiq3ng64jhqv2vxkhdkmsbh5p4dc1g21";
+ version = "3.2.0.8"; # "Android Studio 3.2 Canary 9"
+ build = "173.4688006";
+ sha256Hash = "13kln5s45qzdi54gca0bvdiwl2mi6lg8zgp7f36a24zbmvdmnslv";
};
in rec {
# Old alias
@@ -21,9 +21,9 @@ in rec {
stable = mkStudio {
pname = "android-studio";
#pname = "android-studio-stable"; # TODO: Rename and provide symlink
- version = "3.0.1.0"; # "Android Studio 3.0.1"
- build = "171.4443003";
- sha256Hash = "1krahlqr70nq3csqiinq2m4fgs68j11hd9gg2dx2nrpw5zni0wdd";
+ version = "3.1.0.16"; # "Android Studio 3.1"
+ build = "173.4670197";
+ sha256Hash = "1i0ldyadrcyy5pl9vjpm2k755mf08xi9x5qz8655qsbiajzqf9fy";
meta = with stdenv.lib; {
description = "The Official IDE for Android (stable channel)";
@@ -41,9 +41,9 @@ in rec {
beta = mkStudio {
pname = "android-studio-preview";
#pname = "android-studio-beta"; # TODO: Rename and provide symlink
- version = "3.1.0.15"; # "Android Studio 3.1 RC 3"
- build = "173.4658569";
- sha256Hash = "0jvq7k5vhrli41bj2imnsp3z70c7yws3fvs8m873qrjvfgmi5qrq";
+ version = "3.1.0.16"; # "Android Studio 3.1"
+ build = "173.4670197";
+ sha256Hash = "1i0ldyadrcyy5pl9vjpm2k755mf08xi9x5qz8655qsbiajzqf9fy";
meta = stable.meta // {
description = "The Official IDE for Android (beta channel)";
diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix
index 8c7ff7b5eae..9fbf4431f60 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.25.0";
+ version = "1.25.1";
src = fetchurl {
url = "https://github.com/atom/atom/releases/download/v${version}/atom-amd64.deb";
- sha256 = "04iiw0qzl9025l4lasz42w5nfnvsmc7vwcf4a9c2hvl9xsyckajh";
+ sha256 = "0h0kr4w26c6i89rb9y4aw4l8f63al42i2cy3ddk16m1irzij9fk4";
name = "${name}.deb";
};
diff --git a/pkgs/applications/editors/eclipse/build-eclipse.nix b/pkgs/applications/editors/eclipse/build-eclipse.nix
index 23e4449ee2e..a26d380ec1d 100644
--- a/pkgs/applications/editors/eclipse/build-eclipse.nix
+++ b/pkgs/applications/editors/eclipse/build-eclipse.nix
@@ -1,5 +1,5 @@
{ stdenv, makeDesktopItem, freetype, fontconfig, libX11, libXrender
-, zlib, jdk, glib, gtk2, libXtst, gsettings-desktop-schemas, webkitgtk24x-gtk2
+, zlib, jdk, glib, gtk3, libXtst, gsettings-desktop-schemas, webkitgtk
, makeWrapper, ... }:
{ name, src ? builtins.getAttr stdenv.system sources, sources ? null, description }:
@@ -18,9 +18,9 @@ stdenv.mkDerivation rec {
};
buildInputs = [
- fontconfig freetype glib gsettings-desktop-schemas gtk2 jdk libX11
+ fontconfig freetype glib gsettings-desktop-schemas gtk3 jdk libX11
libXrender libXtst makeWrapper zlib
- ] ++ stdenv.lib.optional (webkitgtk24x-gtk2 != null) webkitgtk24x-gtk2;
+ ] ++ stdenv.lib.optional (webkitgtk != null) webkitgtk;
buildCommand = ''
# Unpack tarball.
@@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
makeWrapper $out/eclipse/eclipse $out/bin/eclipse \
--prefix PATH : ${jdk}/bin \
- --prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath ([ glib gtk2 libXtst ] ++ stdenv.lib.optional (webkitgtk24x-gtk2 != null) webkitgtk24x-gtk2)} \
+ --prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath ([ glib gtk3 libXtst ] ++ stdenv.lib.optional (webkitgtk != null) webkitgtk)} \
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" \
--add-flags "-configuration \$HOME/.eclipse/''${productId}_$productVersion/configuration"
diff --git a/pkgs/applications/editors/eclipse/default.nix b/pkgs/applications/editors/eclipse/default.nix
index c69686a0967..1688e606222 100644
--- a/pkgs/applications/editors/eclipse/default.nix
+++ b/pkgs/applications/editors/eclipse/default.nix
@@ -1,7 +1,7 @@
{ stdenv, lib, fetchurl, makeDesktopItem, makeWrapper
, freetype, fontconfig, libX11, libXext, libXrender, zlib
-, glib, gtk2, libXtst, jdk, gsettings-desktop-schemas
-, webkitgtk24x-gtk2 ? null # for internal web browser
+, glib, gtk3, libXtst, jdk, gsettings-desktop-schemas
+, webkitgtk ? null # for internal web browser
, buildEnv, writeText, runCommand
, callPackage
}:
@@ -15,7 +15,7 @@ rec {
buildEclipse = import ./build-eclipse.nix {
inherit stdenv makeDesktopItem freetype fontconfig libX11 libXrender zlib
- jdk glib gtk2 libXtst gsettings-desktop-schemas webkitgtk24x-gtk2
+ jdk glib gtk3 libXtst gsettings-desktop-schemas webkitgtk
makeWrapper;
};
diff --git a/pkgs/applications/editors/emacs-modes/elpa-generated.nix b/pkgs/applications/editors/emacs-modes/elpa-generated.nix
index 49783650393..b550f31ff99 100644
--- a/pkgs/applications/editors/emacs-modes/elpa-generated.nix
+++ b/pkgs/applications/editors/emacs-modes/elpa-generated.nix
@@ -175,10 +175,10 @@
}) {};
auctex = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild {
pname = "auctex";
- version = "12.1.0";
+ version = "12.1.1";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/auctex-12.1.0.tar";
- sha256 = "0iy5x61xqkxaph2hq64sg50l1c6yp6qhzppwadayxkdz00b46sas";
+ url = "https://elpa.gnu.org/packages/auctex-12.1.1.tar";
+ sha256 = "10l96569dy9pfp8bm64pndhk1skg65kqhsyllwfa0zvb7mjkm70l";
};
packageRequires = [];
meta = {
@@ -713,10 +713,10 @@
ebdb = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib, seq }:
elpaBuild {
pname = "ebdb";
- version = "0.4.3";
+ version = "0.5";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/ebdb-0.4.3.tar";
- sha256 = "1xq0nhhgzgzrvxbb0lgpz71rfd0dcjakh87wg8wi3cpiw9w7zx41";
+ url = "https://elpa.gnu.org/packages/ebdb-0.5.tar";
+ sha256 = "1apsb08ml50nacqa6i86zwa2xxdfqry380bksp16zv63cj86b67g";
};
packageRequires = [ cl-lib emacs seq ];
meta = {
@@ -768,10 +768,10 @@
el-search = callPackage ({ cl-print, elpaBuild, emacs, fetchurl, lib, stream }:
elpaBuild {
pname = "el-search";
- version = "1.6";
+ version = "1.6.3";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/el-search-1.6.tar";
- sha256 = "18pv2l6rl8f9x0yjn4iyf6g94c0ly5mizqg0vxr3m420bkbyk95h";
+ url = "https://elpa.gnu.org/packages/el-search-1.6.3.tar";
+ sha256 = "1yd8qlq95fb5qfmg3m16i9d5nsmkkgr12q0981r5ng06pc0j4al6";
};
packageRequires = [ cl-print emacs stream ];
meta = {
@@ -861,10 +861,10 @@
}) {};
exwm = callPackage ({ elpaBuild, fetchurl, lib, xelb }: elpaBuild {
pname = "exwm";
- version = "0.17";
+ version = "0.18";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/exwm-0.17.tar";
- sha256 = "03vgrrrc1d3xr9ydl1ydvmqnvpnzg858dzdky2nd65h9ssyp2f5f";
+ url = "https://elpa.gnu.org/packages/exwm-0.18.tar";
+ sha256 = "1shz5bf4v4gg3arjaaldics5qkg3aiiaf3ngys8lb6qyxhcpvh6q";
};
packageRequires = [ xelb ];
meta = {
@@ -931,10 +931,10 @@
gited = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "gited";
- version = "0.3.4";
+ version = "0.4.1";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/gited-0.3.4.tar";
- sha256 = "0s03p0z5dqhigl01hzin2qy53nm7b4ilvfm83d0ca683i9rb7hx1";
+ url = "https://elpa.gnu.org/packages/gited-0.4.1.tar";
+ sha256 = "0080jcr10xvvf2rl7ar01c6zmzd0pafrs6w2l8v4cwwapyhv0dcd";
};
packageRequires = [ cl-lib emacs ];
meta = {
@@ -1106,10 +1106,10 @@
}) {};
iterators = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild {
pname = "iterators";
- version = "0.1";
+ version = "0.1.1";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/iterators-0.1.el";
- sha256 = "0rljqdaj88cbhngj4ddd2z3bfd35r84aivq4h10mk4n4h8whjpj4";
+ url = "https://elpa.gnu.org/packages/iterators-0.1.1.el";
+ sha256 = "1r2cz2n6cr6wal5pqiqi5pn28pams639czgrvd60xcqmlr3li3g5";
};
packageRequires = [ emacs ];
meta = {
@@ -1160,10 +1160,10 @@
js2-mode = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "js2-mode";
- version = "20170721";
+ version = "20180301";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/js2-mode-20170721.tar";
- sha256 = "02w2hgk8qbmwkksqf1dmslpr3xn9zjp3srl3qh8730w8r8s8czni";
+ url = "https://elpa.gnu.org/packages/js2-mode-20180301.tar";
+ sha256 = "0kcs70iygbpaxs094q6agsjs56sz03jy4fwk178f9hr93x95pynx";
};
packageRequires = [ cl-lib emacs ];
meta = {
@@ -1423,14 +1423,29 @@
license = lib.licenses.free;
};
}) {};
- multishell = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild {
+ mmm-mode = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib }:
+ elpaBuild {
+ pname = "mmm-mode";
+ version = "0.5.6";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/mmm-mode-0.5.6.tar";
+ sha256 = "1vwsi8sk1i16dvz940c6q7i75023hrw07sc4cpmcz06rj8r68gr0";
+ };
+ packageRequires = [ cl-lib ];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/mmm-mode.html";
+ license = lib.licenses.free;
+ };
+ }) {};
+ multishell = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib }:
+ elpaBuild {
pname = "multishell";
version = "1.1.5";
src = fetchurl {
url = "https://elpa.gnu.org/packages/multishell-1.1.5.tar";
sha256 = "0g38p5biyxqkjdkmxlikvhkhkmafyy3ibd012q83skaf8fi4cv1y";
};
- packageRequires = [];
+ packageRequires = [ cl-lib ];
meta = {
homepage = "https://elpa.gnu.org/packages/multishell.html";
license = lib.licenses.free;
@@ -1438,10 +1453,10 @@
}) {};
muse = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild {
pname = "muse";
- version = "3.20.1";
+ version = "3.20.2";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/muse-3.20.1.tar";
- sha256 = "0h8lxm08r519psz93m1i43prkcpsm2dgkcvdlpvg7sm0ky7i5cay";
+ url = "https://elpa.gnu.org/packages/muse-3.20.2.tar";
+ sha256 = "0g2ff6x45x2k5dnkp31sk3bjj92jyhhnar7l5hzn8vp22l0rv8wn";
};
packageRequires = [];
meta = {
@@ -1544,10 +1559,10 @@
}) {};
num3-mode = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild {
pname = "num3-mode";
- version = "1.2";
+ version = "1.3";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/num3-mode-1.2.el";
- sha256 = "1nm3yjp5qs6rq4ak47gb6325vjfw0dnkryfgybgly0m6h4hhpbd8";
+ url = "https://elpa.gnu.org/packages/num3-mode-1.3.el";
+ sha256 = "0x2jpnzvpbj03pbmhsny5gygh63c4dbl4g3k0cfs3vh4qmp2dg6w";
};
packageRequires = [];
meta = {
@@ -1595,6 +1610,19 @@
license = lib.licenses.free;
};
}) {};
+ org = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild {
+ pname = "org";
+ version = "9.1.9";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/org-9.1.9.tar";
+ sha256 = "16yr0srfzsrzv2b1f2wjk8gb2pyhsgj2hxbscixirkxqz674c5cl";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/org.html";
+ license = lib.licenses.free;
+ };
+ }) {};
osc = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild {
pname = "osc";
version = "0.1";
@@ -1717,10 +1745,10 @@
python = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "python";
- version = "0.26";
+ version = "0.26.1";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/python-0.26.el";
- sha256 = "197sq42xd4ryqq2zy1802pns6wf6n4vzx90yxgn1zzqpwffpv317";
+ url = "https://elpa.gnu.org/packages/python-0.26.1.el";
+ sha256 = "1dpw2w2nk6ggr8pz293qysjkiya3i7k25i447fbycjil59anzpb3";
};
packageRequires = [ cl-lib emacs ];
meta = {
@@ -1756,10 +1784,10 @@
}) {};
rainbow-mode = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild {
pname = "rainbow-mode";
- version = "0.13";
+ version = "1.0";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/rainbow-mode-0.13.el";
- sha256 = "1d3aamx6qgqqpqijwsr02ggwrh67gfink1bir0692alfkm3zdddl";
+ url = "https://elpa.gnu.org/packages/rainbow-mode-1.0.el";
+ sha256 = "1mg9dbgvg79sphpic56d11mrjwx668xffx5z5jszc9fdl5b8ygml";
};
packageRequires = [];
meta = {
@@ -1809,10 +1837,10 @@
realgud = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib, load-relative, loc-changes, test-simple }:
elpaBuild {
pname = "realgud";
- version = "1.4.4";
+ version = "1.4.5";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/realgud-1.4.4.tar";
- sha256 = "1nc8km339ip90h1j55ahfga03v7x7rh4iycmw6yrxyzir68vwn7c";
+ url = "https://elpa.gnu.org/packages/realgud-1.4.5.tar";
+ sha256 = "108wgxg7fb4byaiasgvbxv2hq7b00biq9f0mh9hy6vw4160y5w24";
};
packageRequires = [
cl-lib
diff --git a/pkgs/applications/editors/emacs-modes/melpa-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-generated.nix
index c91812fc30a..2a1a5cd320c 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-generated.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-generated.nix
@@ -250,48 +250,6 @@
license = lib.licenses.free;
};
}) {};
- ac-cake = callPackage ({ auto-complete, cake, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "ac-cake";
- version = "20140315.929";
- src = fetchFromGitHub {
- owner = "k1LoW";
- repo = "emacs-ac-cake";
- rev = "f34c9e3ba8cb962e4708c8f53b623e1922500176";
- sha256 = "1llpnb9vy612sg214i76rxnzcl3qx8pqnixczc5pik9kd3fdaz5f";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2257db76719cb1e3e2f79aff2b61073b655f9061/recipes/ac-cake";
- sha256 = "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl";
- name = "ac-cake";
- };
- packageRequires = [ auto-complete cake ];
- meta = {
- homepage = "https://melpa.org/#/ac-cake";
- license = lib.licenses.free;
- };
- }) {};
- ac-cake2 = callPackage ({ auto-complete, cake2, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "ac-cake2";
- version = "20140320.8";
- src = fetchFromGitHub {
- owner = "k1LoW";
- repo = "emacs-ac-cake2";
- rev = "ffbb679c0d5c261b05abde06d8d1d1e5d5990b6a";
- sha256 = "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b8b728c2caed96d7505cafc42d0d7ed49d6cadcd/recipes/ac-cake2";
- sha256 = "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy";
- name = "ac-cake2";
- };
- packageRequires = [ auto-complete cake2 ];
- meta = {
- homepage = "https://melpa.org/#/ac-cake2";
- license = lib.licenses.free;
- };
- }) {};
ac-capf = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ac-capf";
@@ -337,12 +295,12 @@
ac-clang = callPackage ({ auto-complete, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip, yasnippet }:
melpaBuild {
pname = "ac-clang";
- version = "20171209.240";
+ version = "20180318.1124";
src = fetchFromGitHub {
owner = "yaruopooner";
repo = "ac-clang";
- rev = "f11f17382646e13a0c794821ed5efe1692f96652";
- sha256 = "0ynl5fvsamij5ji2cnxp4vbqwbw09c8x8fxx3s80v02yi3xi5fr0";
+ rev = "daddbea033d3c6f934e5043cc2fff8eca3b6e5f7";
+ sha256 = "1hp3xpv0kwmilfivif2smbbgknjyk8kcgp399dghdcq71qsxz3wr";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ffe0485048b85825f5e8ba95917d8c9dc64fe5de/recipes/ac-clang";
@@ -740,8 +698,8 @@
src = fetchFromGitHub {
owner = "xcwen";
repo = "ac-php";
- rev = "221a8a854488cf455aa05eeda1f2b3f658639c9c";
- sha256 = "0nrwda6fvnbwpcya4hk6ibh6rxjw19mb1b3prwl3zmfigjf0z35y";
+ rev = "24204333743b3ba26a9a8d51f56f1d3195ae4115";
+ sha256 = "0y3pzf2zvqlsqs7255ihrswaxjq0q389yiiprlwzm86xsws8fbkw";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php";
@@ -757,12 +715,12 @@
ac-php-core = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode, popup, s, xcscope }:
melpaBuild {
pname = "ac-php-core";
- version = "20180314.2055";
+ version = "20180323.503";
src = fetchFromGitHub {
owner = "xcwen";
repo = "ac-php";
- rev = "221a8a854488cf455aa05eeda1f2b3f658639c9c";
- sha256 = "0nrwda6fvnbwpcya4hk6ibh6rxjw19mb1b3prwl3zmfigjf0z35y";
+ rev = "24204333743b3ba26a9a8d51f56f1d3195ae4115";
+ sha256 = "0y3pzf2zvqlsqs7255ihrswaxjq0q389yiiprlwzm86xsws8fbkw";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php-core";
@@ -803,8 +761,8 @@
src = fetchFromGitHub {
owner = "Andersbakken";
repo = "rtags";
- rev = "4310b26e69dd9569582962d0013ebc8c372730e5";
- sha256 = "03mkchsrfxf8g9c36n8b8wxb99kb3nb74x293yw9ch1rbfvw3xis";
+ rev = "a595d13f60c13d67a28467b3941d5ed558102e91";
+ sha256 = "0yp6h6nsbji7dmc9pnf9qi7zsqxrxa1bln90bn0y71xf6z11kbp4";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/ac-rtags";
@@ -880,6 +838,27 @@
license = lib.licenses.free;
};
}) {};
+ academic-phrases = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, s }:
+ melpaBuild {
+ pname = "academic-phrases";
+ version = "20180318.438";
+ src = fetchFromGitHub {
+ owner = "nashamri";
+ repo = "academic-phrases";
+ rev = "0823ed8c24b26c32f909b896a469833ec4d7b656";
+ sha256 = "0qfzsq8jh05w4zkr0cvq3i1hdn97bq344vcqjg46sib26x3wpz6r";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fe4323043fb875c0252861800e61fdd0a51ed453/recipes/academic-phrases";
+ sha256 = "18y6lff7xwg6hczwgavwp32848gnlmc30afra9x7m8wmdddps1bh";
+ name = "academic-phrases";
+ };
+ packageRequires = [ dash emacs ht s ];
+ meta = {
+ homepage = "https://melpa.org/#/academic-phrases";
+ license = lib.licenses.free;
+ };
+ }) {};
ace-flyspell = callPackage ({ avy, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ace-flyspell";
@@ -1531,12 +1510,12 @@
alect-themes = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "alect-themes";
- version = "20180312.1338";
+ version = "20180322.1408";
src = fetchFromGitHub {
owner = "alezost";
repo = "alect-themes";
- rev = "69045201a8597181509c71c770d0fbce398f0af5";
- sha256 = "0qmrd9csa3w8a0nkrc8f4a3f67inj7hpbdwsk0883dnc7lq4lkjn";
+ rev = "f61eec647abd9981139c720811e1c4e2501f250c";
+ sha256 = "0hfhk2bnhml2sc1i7i4py06x9sph1g7qa50x6bffkxx92ry4wvl0";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/84c25a290ae4bcc4674434c83c66ae128e4c4282/recipes/alect-themes";
@@ -2209,194 +2188,6 @@
license = lib.licenses.free;
};
}) {};
- anything = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "anything";
- version = "20170125.1710";
- src = fetchgit {
- url = "http://repo.or.cz/r/anything-config.git";
- rev = "9e2259fc779eef1a3e947e74cc7d301d1cea0ca6";
- sha256 = "1rl60k9imk5wma2xnx1s0av7rzgjjbaw7nkb539vwk4pwj1kmqqq";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e1700e86cb35617178f5d7c61c88718ac7849f9b/recipes/anything";
- sha256 = "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj";
- name = "anything";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/anything";
- license = lib.licenses.free;
- };
- }) {};
- anything-exuberant-ctags = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "anything-exuberant-ctags";
- version = "20140316.1637";
- src = fetchFromGitHub {
- owner = "k1LoW";
- repo = "anything-exuberant-ctags";
- rev = "8ed688fd526751e044435bb77135f5315c8167e5";
- sha256 = "0dbf510gcd0m191samih0r4lx6d7sgk0ls0sx2jrdkyacy82ridy";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/66cae648d534468e5e9f125679847fb876935f68/recipes/anything-exuberant-ctags";
- sha256 = "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk";
- name = "anything-exuberant-ctags";
- };
- packageRequires = [ anything ];
- meta = {
- homepage = "https://melpa.org/#/anything-exuberant-ctags";
- license = lib.licenses.free;
- };
- }) {};
- anything-git-files = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "anything-git-files";
- version = "20130609.243";
- src = fetchFromGitHub {
- owner = "tarao";
- repo = "anything-git-files-el";
- rev = "efeec4f8001e2a95f36a9c31181bb30f7561015c";
- sha256 = "0gj0p7420wx5c186kdccjb9icn656sg5b0zwnwy3fjvhsbbvrb2r";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7f69f8362790ef4a9200f99a8f7ac3770b402b97/recipes/anything-git-files";
- sha256 = "13giasg8lh5968plva449ki9nc3478a63700f8c0yghnwjb77asw";
- name = "anything-git-files";
- };
- packageRequires = [ anything ];
- meta = {
- homepage = "https://melpa.org/#/anything-git-files";
- license = lib.licenses.free;
- };
- }) {};
- anything-git-grep = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "anything-git-grep";
- version = "20130608.1940";
- src = fetchFromGitHub {
- owner = "mechairoi";
- repo = "anything-git-grep";
- rev = "6ee26e68bb8ec23ffacf5c5f9698c451a4bc905c";
- sha256 = "06fyvk7cjz1aag6fj52qraqmr23b0fqwml41yyid8gjxl4ygmkpv";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/784a04ab60ef0862105d2bec309994d3a755c043/recipes/anything-git-grep";
- sha256 = "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl";
- name = "anything-git-grep";
- };
- packageRequires = [ anything ];
- meta = {
- homepage = "https://melpa.org/#/anything-git-grep";
- license = lib.licenses.free;
- };
- }) {};
- anything-milkode = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild, milkode }:
- melpaBuild {
- pname = "anything-milkode";
- version = "20140518.743";
- src = fetchFromGitHub {
- owner = "ongaeshi";
- repo = "anything-milkode";
- rev = "d6b2be13a351c41793e9cc13c1320953939d3ac9";
- sha256 = "1jw6gqwcl3fx1m7w0a15w2pnzzlqyr1fbg0m81ay358s4w3jn6v7";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/124d55605500c30ca7b01ae31eec3f3da51a2c7e/recipes/anything-milkode";
- sha256 = "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan";
- name = "anything-milkode";
- };
- packageRequires = [ anything milkode ];
- meta = {
- homepage = "https://melpa.org/#/anything-milkode";
- license = lib.licenses.free;
- };
- }) {};
- anything-prosjekt = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild, prosjekt }:
- melpaBuild {
- pname = "anything-prosjekt";
- version = "20140129.4";
- src = fetchFromGitHub {
- owner = "abingham";
- repo = "prosjekt";
- rev = "a864a8be5842223043702395f311e3350c28e9db";
- sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6d359ec827573dd8c871c4f23df5d1737f1830e7/recipes/anything-prosjekt";
- sha256 = "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8";
- name = "anything-prosjekt";
- };
- packageRequires = [ anything prosjekt ];
- meta = {
- homepage = "https://melpa.org/#/anything-prosjekt";
- license = lib.licenses.free;
- };
- }) {};
- anything-replace-string = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "anything-replace-string";
- version = "20140317.336";
- src = fetchFromGitHub {
- owner = "k1LoW";
- repo = "anything-replace-string";
- rev = "1962f24243d6013bcef7e8d23136277d42e13130";
- sha256 = "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/39b7f3a8de2f7728b374c09a1387beb3f7595d2e/recipes/anything-replace-string";
- sha256 = "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71";
- name = "anything-replace-string";
- };
- packageRequires = [ anything ];
- meta = {
- homepage = "https://melpa.org/#/anything-replace-string";
- license = lib.licenses.free;
- };
- }) {};
- anything-sage = callPackage ({ anything, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, sage-shell-mode }:
- melpaBuild {
- pname = "anything-sage";
- version = "20141005.413";
- src = fetchFromGitHub {
- owner = "stakemori";
- repo = "anything-sage";
- rev = "370b4248935dd4527127954788a028399644f578";
- sha256 = "08xr6fkk1r4r5jqh349d4dfal9nbs2a8y2fp8zn3zlrj2cd0g80k";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/07be4b11bbddb376e11616525e7b226c5a9f2296/recipes/anything-sage";
- sha256 = "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3";
- name = "anything-sage";
- };
- packageRequires = [ anything cl-lib sage-shell-mode ];
- meta = {
- homepage = "https://melpa.org/#/anything-sage";
- license = lib.licenses.free;
- };
- }) {};
- anything-tramp = callPackage ({ anything, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "anything-tramp";
- version = "20180311.2344";
- src = fetchFromGitHub {
- owner = "masasam";
- repo = "emacs-anything-tramp";
- rev = "9b88be0c58843569dcb016550e6fad4f75847fc5";
- sha256 = "18016zgdqa7i0vaqj9j3zkdw2i3iw8i2axyrm0579hq4hksx69w0";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/anything-tramp";
- sha256 = "053bi7b6d9aa6xwsgm0yxbklbs5sl3dgi529gsapj30lw68lh1vh";
- name = "anything-tramp";
- };
- packageRequires = [ anything emacs ];
- meta = {
- homepage = "https://melpa.org/#/anything-tramp";
- license = lib.licenses.free;
- };
- }) {};
anzu = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "anzu";
@@ -2505,12 +2296,12 @@
apiwrap = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "apiwrap";
- version = "20180201.637";
+ version = "20180318.1515";
src = fetchFromGitHub {
owner = "vermiculus";
repo = "apiwrap.el";
- rev = "44fe79d56bafaaf3a688e5441298ec5f7bbf419e";
- sha256 = "12i39kl4fj1xhzrdw24i4mi2m3aj2w3isxpcyr48z23d1x0grviq";
+ rev = "d80ae8d80520786dd5527e53c0a9374534168d41";
+ sha256 = "0v2bnndrhvdkk5qa3rzzdl83471i00s0cxbvrsl8ijcm6xpc0m1b";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0197fd3657e65e3826375d9b6f19da3058366c91/recipes/apiwrap";
@@ -2987,12 +2778,12 @@
atomic-chrome = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, websocket }:
melpaBuild {
pname = "atomic-chrome";
- version = "20171116.2332";
+ version = "20180322.301";
src = fetchFromGitHub {
owner = "alpha22jp";
repo = "atomic-chrome";
- rev = "7dd8a45ebccb9b5bbbfd2e822bd914b38dad6008";
- sha256 = "0nbhw43c7jrpx7iyyjp3fdzprccj549d6k1kd3wgym83qljf236d";
+ rev = "d6577d61981a8bf293928eddaa6b83d22d59bd8c";
+ sha256 = "0qi5g5js885hp0xkwib12zbz84sganb8lnrps48097zlkcxppm3p";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/35785773942a5510e2317ded5bdf872ffe434e8c/recipes/atomic-chrome";
@@ -3131,24 +2922,24 @@
license = lib.licenses.free;
};
}) {};
- auth-password-store = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ auth-source-pass = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
- pname = "auth-password-store";
- version = "20180222.916";
+ pname = "auth-source-pass";
+ version = "20180326.8";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "auth-password-store";
- rev = "0a83b8fa074571023a10aed263d2ee7d865a49f7";
- sha256 = "0z4pk614ndjg68z70lbc20ns9kv8r3vdayv4yy6n0jj9fvnd2pn8";
+ rev = "5690092e40c790384692d8e8da3451e6878d8c17";
+ sha256 = "1dv202z8briifd4aqn8yvn4kd6zi1cabb2p86qcjj40lzkgn6w3p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0f4d2a28373ba93da5b280ebf40c5a3fa758ea11/recipes/auth-password-store";
- sha256 = "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5";
- name = "auth-password-store";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5e268441634a6e58a00e577d6e2292fa226c11b8/recipes/auth-source-pass";
+ sha256 = "0icwdwz2zy3f9ynksr81pgq482iapsbx8lpyssiklyw0xgd1k8ak";
+ name = "auth-source-pass";
};
- packageRequires = [];
+ packageRequires = [ emacs ];
meta = {
- homepage = "https://melpa.org/#/auth-password-store";
+ homepage = "https://melpa.org/#/auth-source-pass";
license = lib.licenses.free;
};
}) {};
@@ -3197,12 +2988,12 @@
auto-compile = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, packed }:
melpaBuild {
pname = "auto-compile";
- version = "20180111.436";
+ version = "20180321.807";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "auto-compile";
- rev = "8d117868a0a091389d528428136e60f951e9c550";
- sha256 = "1qkw8qzhqzk16kvk1200ha10gi6ny0saqvyqm6b1ww0iw3q1ic5c";
+ rev = "6ce4255ab9a0b010ef8414c5bd9a6d6d9eea012f";
+ sha256 = "013vw4sgw6hpz7kskilndv7i7ik40asrkgicghjbygwk0lj5ran3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/auto-compile";
@@ -3554,12 +3345,12 @@
auto-minor-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-minor-mode";
- version = "20170917.1437";
+ version = "20180401.245";
src = fetchFromGitHub {
owner = "joewreschnig";
repo = "auto-minor-mode";
- rev = "07ea9df59c5364d1938beef3dfbba24afd46c230";
- sha256 = "007w6j6zhjv2647njh80vfbrhjzhmb8rx9yi9rf94fhf17z8pmk3";
+ rev = "c0aa31d9385ec809969288d0029c7a6db319690f";
+ sha256 = "0fzw91d1ysv82g2mfwc5f1a1zq1ih9f6i26hk9jyyqp5izx9ydfw";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b3ab5f048034777551e344101d8415cac92362c8/recipes/auto-minor-mode";
@@ -3596,12 +3387,12 @@
auto-package-update = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-package-update";
- version = "20170803.1005";
+ version = "20180323.1547";
src = fetchFromGitHub {
owner = "rranelli";
repo = "auto-package-update.el";
- rev = "0b296970d09d7deb7f780cb041fcbc313d39aa5d";
- sha256 = "1nicx2sjnmf3i7dlzi788rh2kjc7mj9q69knp3g2x72zxqy8x07d";
+ rev = "85c64d11ccfffd58527ef39cac390a88c5b6d979";
+ sha256 = "0pg9qw63ii4268hwzz7sj9g6rkmxr956849fpa2rwbfzfhjmns2f";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/78f549a299a06941edce13381f597f3a61e8c723/recipes/auto-package-update";
@@ -4016,12 +3807,12 @@
avy = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "avy";
- version = "20171230.220";
+ version = "20180322.1333";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "avy";
- rev = "34d3531a3cd35ae6b9e8dbc37343c027504fdcb0";
- sha256 = "0rgwbm5jcbv132xldbz2kcp09c7hs96329mwfa019v99qdbb5k32";
+ rev = "2d613eb050d94c1cdfb403da7446883ce6d35baa";
+ sha256 = "1dmn94bigw5xnxbwmrlyj810iqjgcvqp3qlsgszj6cbg2pv75sqf";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/77fac7a702d4086fb860514e377037acedc60412/recipes/avy";
@@ -4163,11 +3954,11 @@
axiom-environment = callPackage ({ emacs, fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "axiom-environment";
- version = "20171111.1152";
+ version = "20180401.1257";
src = fetchgit {
url = "https://bitbucket.org/pdo/axiom-environment";
- rev = "b4f0fa9cd013e107d2af8e2ebedff8a7f40be7b5";
- sha256 = "0p2mg2824mw8l1zrfq5va1mnxg0ib5f960306vvsm6b3pi1w5kv0";
+ rev = "6842fb7f85df839acde395093647e2f91cf62fdd";
+ sha256 = "1ag5isg0bvarf86978zd2zq1mbs3ysy29ywvgapls6115ws5k9k8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf/recipes/axiom-environment";
@@ -4400,12 +4191,12 @@
base16-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "base16-theme";
- version = "20180308.1227";
+ version = "20180320.2254";
src = fetchFromGitHub {
owner = "belak";
repo = "base16-emacs";
- rev = "f84ffb4d4065068f89a416f84002de92a39da1f1";
- sha256 = "06hkpf6azjii9iiqvv3sh0vn7qczsjim9y1mk4vq3hp799ca67wh";
+ rev = "69a96c1061d1d783a44f70fd811d49541762caf9";
+ sha256 = "1mg158w81vivar7lrya8qk46zghs2b7inmdckjcs8qw7w078cwav";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/30862f6be74882cfb57fb031f7318d3fd15551e3/recipes/base16-theme";
@@ -4544,22 +4335,22 @@
license = lib.licenses.free;
};
}) {};
- bbcode-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ bbcode-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bbcode-mode";
- version = "20180316.519";
+ version = "20180326.1410";
src = fetchFromGitHub {
owner = "lassik";
repo = "bbcode-mode";
- rev = "653cf811460f60cb8c9489cfb3155c6493828d9f";
- sha256 = "120g480vys6wrxhcch87jsxxvqwi31wi3dv1dckcqbxd1w1jfkzm";
+ rev = "4a6df9eff9da9cb98d53164a585f2c69d8399e3a";
+ sha256 = "1gzx7s96fd6r9xgzp29d1w102rxkyr1mywhyvzcdslszbcrjc0r1";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1ef095d23cc043f5d14a9deea788ed71d90c586c/recipes/bbcode-mode";
sha256 = "1kfxzp0916gdphp4dkk4xbramsbqmg6mazvfqni86mra41rdq6sb";
name = "bbcode-mode";
};
- packageRequires = [];
+ packageRequires = [ cl-lib ];
meta = {
homepage = "https://melpa.org/#/bbcode-mode";
license = lib.licenses.free;
@@ -4567,11 +4358,11 @@
}) {};
bbdb = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "bbdb";
- version = "20180106.910";
+ version = "20180330.2018";
src = fetchgit {
url = "https://git.savannah.nongnu.org/git/bbdb.git";
- rev = "f18720ff5cd963a0bf6fc0e41293e50c0172b8ae";
- sha256 = "1s5qi8njiqdpgnzlik36islzh13zfhybnynqisr61p602pn4ghk7";
+ rev = "e0eff7e1ee5003f7c557a83d655a7fc0b6b45fcc";
+ sha256 = "0qalxasfckqqgngsafplrp9j1pcism17bn0h53qs8pfj9gxkng5q";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/bbdb";
@@ -4986,12 +4777,12 @@
bibliothek = callPackage ({ a, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pdf-tools }:
melpaBuild {
pname = "bibliothek";
- version = "20180122.2021";
+ version = "20180327.1422";
src = fetchFromGitHub {
owner = "cadadr";
repo = "elisp";
- rev = "3059378379a6fbd0363cd14fe6227c27739af4e1";
- sha256 = "1hnph9x5981rfqc5p5imiah2cd7fr1f3bbs2x23z7lckaqa5v0g7";
+ rev = "8118551aaf0472900cdfdc13449b55b33ab56289";
+ sha256 = "153cch134c6rvqfcpikidlpxcbxk8nys2ig1xxpbn9ncn4fqkaf3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8b8308e72c4437237fded29db1f60b3eba0edd26/recipes/bibliothek";
@@ -5116,8 +4907,8 @@
src = fetchFromGitHub {
owner = "jwiegley";
repo = "use-package";
- rev = "f0932c9165700f77b1c8fd3fee7d8f59e0486182";
- sha256 = "07m5fnk5m3l4s3d1qs1kydy3jbdi6lz53v635rzjkl2jzgybv8g5";
+ rev = "512aa50b025018cb8574498d868814f73c02bb9b";
+ sha256 = "0ncg9vbn2hjdv846v0ij6pf1cs76i73jkb17wbf08r3km7933xmw";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6240afa625290187785e4b7535ee7b0d7aad8969/recipes/bind-chord";
@@ -5137,8 +4928,8 @@
src = fetchFromGitHub {
owner = "jwiegley";
repo = "use-package";
- rev = "f0932c9165700f77b1c8fd3fee7d8f59e0486182";
- sha256 = "07m5fnk5m3l4s3d1qs1kydy3jbdi6lz53v635rzjkl2jzgybv8g5";
+ rev = "512aa50b025018cb8574498d868814f73c02bb9b";
+ sha256 = "0ncg9vbn2hjdv846v0ij6pf1cs76i73jkb17wbf08r3km7933xmw";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d39d33af6b6c9af9fe49bda319ea05c711a1b16e/recipes/bind-key";
@@ -5238,12 +5029,12 @@
bitbake = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, mmm-mode, s }:
melpaBuild {
pname = "bitbake";
- version = "20160613.156";
+ version = "20180326.58";
src = fetchFromGitHub {
owner = "canatella";
repo = "bitbake-el";
- rev = "4d9f0a4ffb7b9c6cd4d8271f1b429ca1bb7e9130";
- sha256 = "0c8f6w8pgbr63g1zhgppfyh5g3sb0iv31ywqmvp6467766di4qh9";
+ rev = "e5088c4b3dfb4feb96850fbc281b4207d23c7713";
+ sha256 = "0x765j9vks8r34kkqr9chlfy7dng71rciighk12fgiksqsl82qb0";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/da099b66180ed537f8962ab4ca727d2441f9691d/recipes/bitbake";
@@ -5487,22 +5278,22 @@
license = lib.licenses.free;
};
}) {};
- bmx-mode = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
+ bmx-mode = callPackage ({ cl-lib ? null, company, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "bmx-mode";
- version = "20180226.256";
+ version = "20180324.857";
src = fetchFromGitHub {
owner = "josteink";
repo = "bmx-mode";
- rev = "2093e7041006aa8c142c151bb597af061419aa43";
- sha256 = "12h8h44ni8g6nzh9i2h9w4lmvkca3fxp8cybikln7x4hcnplkfj5";
+ rev = "7450c29f5c1f5f67b02bca1c89f06cdf01855f41";
+ sha256 = "0knxsmlp1agfs5sj5iz13b8igjx4gpk1lj36wzh1rdiwcxicnr49";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7f456d2b2b8f5a33bcb0f2ffd19e6e0276950f24/recipes/bmx-mode";
sha256 = "04g8l4cw20k3yhbija9mz1l4nx3bzhzj7nb35s0xdyvwbc2mhrwb";
name = "bmx-mode";
};
- packageRequires = [ cl-lib company dash s ];
+ packageRequires = [ cl-lib company dash emacs s ];
meta = {
homepage = "https://melpa.org/#/bmx-mode";
license = lib.licenses.free;
@@ -5658,12 +5449,12 @@
boon = callPackage ({ dash, emacs, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }:
melpaBuild {
pname = "boon";
- version = "20180108.41";
+ version = "20180319.526";
src = fetchFromGitHub {
owner = "jyp";
repo = "boon";
- rev = "836f25c5baa363691a8d31712d07248c0d9a49a7";
- sha256 = "1jh6c6i1jy1f8hskqbpqj2babk9yvqyjxyxy0x11686riasc5vps";
+ rev = "b4cf42bbc531032404da88e8671c7495f0f7a5b0";
+ sha256 = "163j41j29nm29w567iq662k9anivqc20yxghm8w49w7i5hsbq9dh";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/boon";
@@ -5679,12 +5470,12 @@
borg = callPackage ({ dash, emacs, epkg, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "borg";
- version = "20180307.717";
+ version = "20180325.1457";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "borg";
- rev = "6b49136f37a04c5f0c328a83bb512b86f6159d6f";
- sha256 = "1nlxdapxqdikqicyp0mq394xs7cbdkyzfw2yx1h5qww33mjl4jja";
+ rev = "b03e8d19874809e813c9631d29260bac73f51e01";
+ sha256 = "15djx2c0agpmmy5ls61p0hwnv2plvb8k190xrrj925w9ypg2qp92";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/878ab90d444f3a1fd2c9f9068ca7b477e218f1da/recipes/borg";
@@ -6438,8 +6229,8 @@
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "emacs-buttercup";
- rev = "8d27bb99463bc230a76dee96378dd337622988f5";
- sha256 = "0s5vfzcfsiqb6bc6jh95a2dyy23b4bvhdpzn2fcq8awldbpx51fh";
+ rev = "4106adc5051965a3d066dfb5594e3d3ba0303b3f";
+ sha256 = "01pvga1b54p7l9fjj388hdvjkmmp2gf5la7l74xjaxfk7v5rrifv";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d4b187cb5b3cc5b546bfa6b94b6792e6363242d1/recipes/buttercup";
@@ -6599,27 +6390,6 @@
license = lib.licenses.free;
};
}) {};
- cake = callPackage ({ anything, cake-inflector, fetchFromGitHub, fetchurl, historyf, lib, melpaBuild }:
- melpaBuild {
- pname = "cake";
- version = "20140603.2131";
- src = fetchFromGitHub {
- owner = "k1LoW";
- repo = "emacs-cake";
- rev = "a7c9f3bee71eb3865060123d4d98e5397c2f967e";
- sha256 = "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/86ed5054ee2392a0e384443c945a5d4824238e95/recipes/cake";
- sha256 = "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr";
- name = "cake";
- };
- packageRequires = [ anything cake-inflector historyf ];
- meta = {
- homepage = "https://melpa.org/#/cake";
- license = lib.licenses.free;
- };
- }) {};
cake-inflector = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "cake-inflector";
@@ -6641,27 +6411,6 @@
license = lib.licenses.free;
};
}) {};
- cake2 = callPackage ({ anything, cake-inflector, dash, f, fetchFromGitHub, fetchurl, historyf, ht, json ? null, lib, melpaBuild, s }:
- melpaBuild {
- pname = "cake2";
- version = "20140626.542";
- src = fetchFromGitHub {
- owner = "k1LoW";
- repo = "emacs-cake2";
- rev = "caffb646c86333b8747cefeba070d57ac4fbaf00";
- sha256 = "14q5hny3bdwcaq3ls6jlk8np4hf99jksxz84dhm2rdvnm18b1wk3";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/18e38d9cdb9f1a8cc05545c52c3a76265a9aa2ab/recipes/cake2";
- sha256 = "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x";
- name = "cake2";
- };
- packageRequires = [ anything cake-inflector dash f historyf ht json s ];
- meta = {
- homepage = "https://melpa.org/#/cake2";
- license = lib.licenses.free;
- };
- }) {};
cakecrumbs = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cakecrumbs";
@@ -6854,12 +6603,12 @@
call-graph = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, hierarchy, ivy, lib, melpaBuild, tree-mode }:
melpaBuild {
pname = "call-graph";
- version = "20180309.220";
+ version = "20180327.2003";
src = fetchFromGitHub {
owner = "beacoder";
repo = "call-graph";
- rev = "1c23b22b9e1a5e6484e5dfc2f4724e964ba64dc4";
- sha256 = "1mwxxn3m5jrpa9kwm4sg0famzgxqhqgzwd93nlidkbv1vjhj2gdi";
+ rev = "f000f7f620eff965bf289216f66cfb27ddb1815d";
+ sha256 = "1qgfz6v4yaa7c9cn82jqkh0s1mmzyr5zlrxd6g4hiv4f1pvf0is2";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a6acf099e2510c82b4b03e2f35051afc3d28af45/recipes/call-graph";
@@ -6921,8 +6670,8 @@
src = fetchFromGitHub {
owner = "ocaml";
repo = "ocaml";
- rev = "02326ad0f4d0d964be89434b9b43c4f19237ea35";
- sha256 = "09v1lasgnlv01cl1ayah183da90pcwn08fhwq0b36wk54ksymhyx";
+ rev = "8767cbafb1390685d08f294496492b97996468a3";
+ sha256 = "0by86qm6pic3d0iqqdswhdlgicg7nxmh3mqwn0pz38dwfa57rqky";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d5a3263cdcc229b11a3e96edbf632d56f32c47aa/recipes/caml";
@@ -7319,8 +7068,8 @@
src = fetchFromGitHub {
owner = "andre-r";
repo = "centered-cursor-mode.el";
- rev = "319636448ffb7dba5fade3b2599ed9c1fd3bf8c8";
- sha256 = "1fib5db8rjyjrr86nw1jvf30pz2zva0v21khyz7fkh2nkf8b3a7i";
+ rev = "75b479ffbfc5e3fed25d86a72afa2f1d2dcbd4b5";
+ sha256 = "0xsnnjql7am94imr8v5aps2azlcvqn9lgq33cnwnwz6y8ffszmpf";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9a7a28caba49a20413dec3c3d0cc9c36b859834d/recipes/centered-cursor-mode";
@@ -7340,8 +7089,8 @@
src = fetchFromGitHub {
owner = "anler";
repo = "centered-window-mode";
- rev = "56cb4a9ebc9a3bac7e00b4d5662dca4c39fdbb50";
- sha256 = "067pdyzdl193pjyia8lc69s5p069kpwsrar2y221lmcvs4s164wv";
+ rev = "24f7c5be9def20879f46659082d497e67b55d7af";
+ sha256 = "0387x0z2l0yvbhkvh3rf3h2ddk7bvwgkpvpngwhhsjbc4hh4k3hz";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/58bfd795d4d620f0c83384fb03008e129c71dc09/recipes/centered-window";
@@ -7424,8 +7173,8 @@
src = fetchFromGitHub {
owner = "cfengine";
repo = "core";
- rev = "03ccbd8a38eef55f0801c249fc278700c52d31ed";
- sha256 = "0ly4igpqdafmnijdlqzcrs4g4snmrp854j8vykvx7sn2wil5l9f0";
+ rev = "fb827edc6fd0baa6502f5655dd743e59b71ff395";
+ sha256 = "03aiqvzr9qmqsi9h9yjjqbvr9d7wchip9hmadhadr62cb43c9bc7";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c737839aeda583e61257ad40157e24df7f918b0f/recipes/cfengine-code-style";
@@ -8029,12 +7778,12 @@
cider = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, queue, seq, spinner }:
melpaBuild {
pname = "cider";
- version = "20180315.950";
+ version = "20180331.1751";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "cider";
- rev = "0ca04ebceeabda645dd9bc584b4683fe3b2ea317";
- sha256 = "0fxd77cls2g5iq1r09zgf7iqznldbyi3y989wh27sjzqnjdw8k7j";
+ rev = "c4f164329c96c03b0002a40f088163d05093d988";
+ sha256 = "08fp9ys8clilm4my1jxpjzglbz1qijrjh71h0sjr2a4g0kzb071n";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/55a937aed818dbe41530037da315f705205f189b/recipes/cider";
@@ -8222,8 +7971,8 @@
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "circe";
- rev = "f7f7cb62a992120bf80c3a078bec1c029f8ff0cd";
- sha256 = "122wvsxvv3yzkdjfi8s5gbl371bzi5kw377a7f3cpp7hxz4i24bl";
+ rev = "9aaad726ea0b0cce4d911eec92ab8fd2a6455fe6";
+ sha256 = "1nyw9phrh1qpc7j6b8fkald18y3rldydb666r6ppphggly6lh4vd";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a2b295656d53fddc76cacc86b239e5648e49e3a4/recipes/circe";
@@ -8512,12 +8261,12 @@
clj-refactor = callPackage ({ cider, clojure-mode, edn, emacs, fetchFromGitHub, fetchurl, hydra, inflections, lib, melpaBuild, multiple-cursors, paredit, s, seq, yasnippet }:
melpaBuild {
pname = "clj-refactor";
- version = "20180316.1000";
+ version = "20180330.213";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clj-refactor.el";
- rev = "2648558b4c27fccbd71ca679ff4bf9b9150c6c60";
- sha256 = "1kfs1y3cwazz118ll18hyvw4wdms4byzj3z9i7kriys46lsgd05y";
+ rev = "b2304321c36275c54fea40560af470f9dc8de31f";
+ sha256 = "0d4kvwmkqxz9vwrz0gy1z5037jqhvganh3cbrlgp7ljdzk97c6sr";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3a2db268e55d10f7d1d5a5f02d35b2c27b12b78e/recipes/clj-refactor";
@@ -8692,12 +8441,12 @@
clojure-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clojure-mode";
- version = "20180313.620";
+ version = "20180329.2109";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clojure-mode";
- rev = "d1e0a6e99f8a98cc2976a23e856efa6d25283f23";
- sha256 = "1xp0f5ivyg8xlfggvyazkxyqk0wqix9104frpn4g5bfihwp01m7i";
+ rev = "58e909365c89a4e31b5f6c790f261be788cac409";
+ sha256 = "066w6mb37ihv92a5l7gwcld7divbylj29n619q02lazqfwbssfwr";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode";
@@ -8717,8 +8466,8 @@
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clojure-mode";
- rev = "d1e0a6e99f8a98cc2976a23e856efa6d25283f23";
- sha256 = "1xp0f5ivyg8xlfggvyazkxyqk0wqix9104frpn4g5bfihwp01m7i";
+ rev = "58e909365c89a4e31b5f6c790f261be788cac409";
+ sha256 = "066w6mb37ihv92a5l7gwcld7divbylj29n619q02lazqfwbssfwr";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode-extra-font-locking";
@@ -8797,12 +8546,12 @@
closql = callPackage ({ emacs, emacsql-sqlite, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "closql";
- version = "20171219.524";
+ version = "20180318.1222";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "closql";
- rev = "01cb892f6a457fbff857d924cebfdc77f69bd45d";
- sha256 = "0c5b6w67qjy2kvk3daljjg01xsv91c03n6kxvg5bswqq1j7n66si";
+ rev = "bfd5a5e4d32bc00e439c86f42859964d4fa91dc3";
+ sha256 = "1ivdlabnkm5dsdjpi68mgvvif5bg8pc2igjyr2jrkwl7jnz51dz8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2df16abf56e53d4a1cc267a78797419520ff8a1c/recipes/closql";
@@ -8923,12 +8672,12 @@
cmake-ide = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, levenshtein, lib, melpaBuild, s, seq }:
melpaBuild {
pname = "cmake-ide";
- version = "20180314.1546";
+ version = "20180320.413";
src = fetchFromGitHub {
owner = "atilaneves";
repo = "cmake-ide";
- rev = "4fe0a65235c3202ab6a5a6c72c91e20b43f9dd65";
- sha256 = "0c8xcrjgyk86zk18sqbknlihwblj53h4xjjdhrf26gp28j6hrbf4";
+ rev = "5dea1e8e002f26fb43aedbed11b83dc80071b771";
+ sha256 = "06nad57cp9wgyj3xfdah6hjhfffgqcblw5nz2pa0ay86kmwxcac1";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/17e8a8a5205d222950dc8e9245549a48894b864a/recipes/cmake-ide";
@@ -8948,8 +8697,8 @@
src = fetchFromGitHub {
owner = "Kitware";
repo = "CMake";
- rev = "c824b6c667cdcb978d6ed52ca5d19fd0b6bfde27";
- sha256 = "0p2y9y2f238pns1az6ig204lj5cqq4ala0am6dc8sdidlf8m1x1z";
+ rev = "323d6b4c75baa450fe12f8609cd8f9db2260b1db";
+ sha256 = "0bsgrbnm8vg8mzkb8p93ba8ss5cg5hkwrag5a6wa4r2ya05ww6gl";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/598723893ae4bc2e60f527a072efe6ed9d4e2488/recipes/cmake-mode";
@@ -9284,8 +9033,8 @@
src = fetchFromGitHub {
owner = "ankurdave";
repo = "color-identifiers-mode";
- rev = "e9705815cc547293fbb1c5cdac5ba90391a82878";
- sha256 = "10cqkn4y40qwzkv9vsa5zlsqh851xacjvccw4l34piasbvm7q0hy";
+ rev = "2407ddea7873f55216d9512ca2fb5eef268d5eba";
+ sha256 = "0zah7w0dhgzwlgspvlb3gzsg6d2dqpxnmqm1kjjjdh3y0qimmy0g";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5c735755e414fdf169aca5ec6f742533d21472e0/recipes/color-identifiers-mode";
@@ -9431,8 +9180,8 @@
src = fetchFromGitHub {
owner = "purcell";
repo = "color-theme-sanityinc-tomorrow";
- rev = "1d67e4a4da74323f42c1f70c8bb7dbb9feaaf4e6";
- sha256 = "0pywpvp1ak4qp98z81qwxdd67yz8sbk8n41hv454y7jnrwxjm0w5";
+ rev = "6be4fea186f2865d6d027eade7d4a15d35e9a88b";
+ sha256 = "1lil6n0fd3d8wajdr8qzgw5np1v3nzympsjrn3dk7zwwdf8b1zk4";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/color-theme-sanityinc-tomorrow";
@@ -9721,12 +9470,12 @@
company = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company";
- version = "20180315.439";
+ version = "20180329.1441";
src = fetchFromGitHub {
owner = "company-mode";
repo = "company-mode";
- rev = "67650dee565c57568d22065041326a58eb0f891d";
- sha256 = "1307v1b1dk0m95ds69b66jrpapz06mwq15awmyk6vf54h9hpbm6q";
+ rev = "ddfdcb78c1f7abc25e1a2db1eb68721b20d00a95";
+ sha256 = "0s0yqafd1awavlv52gzzi01mwfyjdb24iqi9jw53hw01s5823wmg";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/96e7b4184497d0d0db532947f2801398b72432e4/recipes/company";
@@ -9763,12 +9512,12 @@
company-ansible = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company-ansible";
- version = "20170430.53";
+ version = "20180401.640";
src = fetchFromGitHub {
owner = "krzysztof-magosa";
repo = "company-ansible";
- rev = "2c30c3bdb8316b27d5c1832b944cb146d00de456";
- sha256 = "183hyy5vy7xs6hwsk8nrylck8w5czcqwzfx0wik4ppx8011jzis1";
+ rev = "42753d43333c6e4ad83797f0234149b76b463369";
+ sha256 = "1g93vnizl42k52ar47g7yn2csjyzsqvwb6siwbpfvjgbsr5d5d01";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7b44cd4bd9f9a7c942ca3f3bd88b2ce61ffff130/recipes/company-ansible";
@@ -9813,12 +9562,12 @@
company-auctex = callPackage ({ auctex, company, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "company-auctex";
- version = "20180226.2248";
+ version = "20180330.1118";
src = fetchFromGitHub {
owner = "alexeyr";
repo = "company-auctex";
- rev = "d98ac778658ce242e70bc30f1350a93582473bd6";
- sha256 = "0jfy96xyhsvpvwn467aq9fchz1wnyqrmr35mz4i76lykirsb93aa";
+ rev = "f24de90a14c46fc3b924875c658b319c7f209aff";
+ sha256 = "0izi2p8whif6nlbippjw0zxkd0zilmgj2n0arx6k0zi7k4vbfsb7";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/189e1a60894db0787a4468b120fbab84be1b5d59/recipes/company-auctex";
@@ -9837,8 +9586,8 @@
version = "20171024.1310";
src = fetchgit {
url = "https://bitbucket.org/pdo/axiom-environment";
- rev = "b4f0fa9cd013e107d2af8e2ebedff8a7f40be7b5";
- sha256 = "0p2mg2824mw8l1zrfq5va1mnxg0ib5f960306vvsm6b3pi1w5kv0";
+ rev = "6842fb7f85df839acde395093647e2f91cf62fdd";
+ sha256 = "1ag5isg0bvarf86978zd2zq1mbs3ysy29ywvgapls6115ws5k9k8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf/recipes/company-axiom";
@@ -10222,8 +9971,8 @@
src = fetchFromGitHub {
owner = "nsf";
repo = "gocode";
- rev = "416643789f088aa5077f667cecde7f966131f6be";
- sha256 = "1vggwjpcssxp075l8aippgr318m0nkfjyakq7j24ml48g4gc48rm";
+ rev = "d7aee89652f1bd8ca319c64d6dee1bc1dfd9b6ef";
+ sha256 = "1mbz80y0qa6vyvjs33hxsrq5vc2mza5rjhi6rvbxzy2a3lrx4cig";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/company-go";
@@ -10474,8 +10223,8 @@
src = fetchFromGitHub {
owner = "xcwen";
repo = "ac-php";
- rev = "221a8a854488cf455aa05eeda1f2b3f658639c9c";
- sha256 = "0nrwda6fvnbwpcya4hk6ibh6rxjw19mb1b3prwl3zmfigjf0z35y";
+ rev = "24204333743b3ba26a9a8d51f56f1d3195ae4115";
+ sha256 = "0y3pzf2zvqlsqs7255ihrswaxjq0q389yiiprlwzm86xsws8fbkw";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/company-php";
@@ -10554,12 +10303,12 @@
company-quickhelp = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip }:
melpaBuild {
pname = "company-quickhelp";
- version = "20170429.1052";
+ version = "20180323.1200";
src = fetchFromGitHub {
owner = "expez";
repo = "company-quickhelp";
- rev = "c42610040ccfaacd8040f47c5e1c629a18987614";
- sha256 = "0j1fqyi97imv1zp0w0y51j2svs494r2bdi2q9jm11b9bdi3jmf7d";
+ rev = "1580b107ebecb98cf5c21a5b7185d4bfe761047d";
+ sha256 = "0d237si89c4r325zirqvivq5k9b59hyahnfjlgc3fy9cnr07xqg3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/022cc4fee54bb0194822947c70058145e2980b94/recipes/company-quickhelp";
@@ -10627,8 +10376,8 @@
src = fetchFromGitHub {
owner = "Andersbakken";
repo = "rtags";
- rev = "4310b26e69dd9569582962d0013ebc8c372730e5";
- sha256 = "03mkchsrfxf8g9c36n8b8wxb99kb3nb74x293yw9ch1rbfvw3xis";
+ rev = "a595d13f60c13d67a28467b3941d5ed558102e91";
+ sha256 = "0yp6h6nsbji7dmc9pnf9qi7zsqxrxa1bln90bn0y71xf6z11kbp4";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/company-rtags";
@@ -10665,12 +10414,12 @@
company-solidity = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company-solidity";
- version = "20180221.1330";
+ version = "20180328.1656";
src = fetchFromGitHub {
owner = "ssmolkin1";
repo = "company-solidity";
- rev = "9a57a4ff4cad1d423429c78457cd05c38826801c";
- sha256 = "1v9h85vb6lqjlb5w9g2i042zb3w3y916in7h8jph2b74187a9nl6";
+ rev = "0d15727a29adaeb87ce30459053bf434c9d8b6d0";
+ sha256 = "1rg7x6px3pzckzyivg7x2ml6r18c6anbjrk9y6xxsxmy5wvbml37";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ef246601ff6d92d6dfcd809f637e50d9838da0b8/recipes/company-solidity";
@@ -10725,6 +10474,27 @@
license = lib.licenses.free;
};
}) {};
+ company-suggest = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "company-suggest";
+ version = "20180325.931";
+ src = fetchFromGitHub {
+ owner = "juergenhoetzel";
+ repo = "company-suggest";
+ rev = "e1679bd2cff0396bda0eba7dc48469332bd54251";
+ sha256 = "00cy1lhnlwz99zmxhk7403qq4wi8abk483syw5z1xvhdx1fxgq04";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9579e3366db055364829e20d3ce228bf17060b0a/recipes/company-suggest";
+ sha256 = "1w5fp4mydc4av14sjb8di6jjvzfqwnasnxpf9720pk0rsj05i972";
+ name = "company-suggest";
+ };
+ packageRequires = [ company emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/company-suggest";
+ license = lib.licenses.free;
+ };
+ }) {};
company-tern = callPackage ({ cl-lib ? null, company, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild, s, tern }:
melpaBuild {
pname = "company-tern";
@@ -11295,12 +11065,12 @@
counsel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }:
melpaBuild {
pname = "counsel";
- version = "20180308.1121";
+ version = "20180328.1326";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "swiper";
- rev = "b53ba0be297a6bf22e0fab831eb1297c986bf774";
- sha256 = "15azw9x9pbcdzkkllh4nc1wk9l5dk95l1p5qzdszfizb1kc1xjqi";
+ rev = "f8cdaa7f3c733b88865650d10d9138bcb40a9ba8";
+ sha256 = "0gfaj5ygjmvrmghyqghp7i6wf5abiayb28av4291plpyl0liz78h";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/06c50f32b8d603db0d70e77907e36862cd66b811/recipes/counsel";
@@ -11379,12 +11149,12 @@
counsel-etags = callPackage ({ counsel, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "counsel-etags";
- version = "20180304.58";
+ version = "20180324.2005";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "counsel-etags";
- rev = "e97902f9947c663372698affd1577a8d23876561";
- sha256 = "1i0gb11x70nj4zp6mdqc91nd9812wsbfkpg94fssgwyqa0dqkb29";
+ rev = "267c071724fcc665359f2f4472392507facaab2c";
+ sha256 = "0039l9pdndl0y06xjvxpgcc71kqpwhny2lhy5a68p6n1ndi958z9";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/87528349a3ab305bfe98f30c5404913272817a38/recipes/counsel-etags";
@@ -11505,12 +11275,12 @@
counsel-spotify = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }:
melpaBuild {
pname = "counsel-spotify";
- version = "20170612.1132";
+ version = "20180319.2022";
src = fetchFromGitHub {
owner = "Lautaro-Garcia";
repo = "counsel-spotify";
- rev = "dba8c1bf92e15f34f12a9e22b5958a93f10b46c5";
- sha256 = "1j7rzf8mws2yzdvfz8a6k48b5x6cn11lfvfya5s4c90kyy92j8ag";
+ rev = "9033e207dccdfea7fe590d2e102d50fcd2bd22e3";
+ sha256 = "00mjcp3x558gh7f8yrj8y4ivq3pvml7y46rms8xah5zxavg6q52b";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b386462518a5ebb6454f4d01582df98395239bcc/recipes/counsel-spotify";
@@ -11715,12 +11485,12 @@
cquery = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, lsp-mode, melpaBuild }:
melpaBuild {
pname = "cquery";
- version = "20180314.2158";
+ version = "20180319.2313";
src = fetchFromGitHub {
owner = "cquery-project";
repo = "emacs-cquery";
- rev = "f38c4b996877b5a0f5f7619bf46b268b64ef4e3c";
- sha256 = "06s4qjwj9ikbxip84kjvs7yzdax19bp56hikzlmayzg6idbn9ld2";
+ rev = "383656d3cb368481594fd7a13d0395a8640afbac";
+ sha256 = "1qdicqwafnhfqkl3ihvc67w4wnhyp089wbf54v1plrcw75ywdlmf";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3cd3bffff0d2564c39735f844f9a02a660272caa/recipes/cquery";
@@ -11904,12 +11674,12 @@
cryptol-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cryptol-mode";
- version = "20180118.535";
+ version = "20180321.1108";
src = fetchFromGitHub {
owner = "thoughtpolice";
repo = "cryptol-mode";
- rev = "dcc9498813a77ffb83010032e0e5a540f00f3d33";
- sha256 = "0w73i9a6qpab2h58mblhcjqs7xcyr9vpx9mczj3sxzygb2lhzwxw";
+ rev = "91f8ad617e5db2fad57a7be1da211f22f3b51550";
+ sha256 = "12jd2wc5icnkbvxjam7kgr8bdjavxjsy79vwi0hi3gzwiirx4ifg";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/de12333bb429d84b2c214ac7ebb0219f67838f4f/recipes/cryptol-mode";
@@ -11988,12 +11758,12 @@
csharp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "csharp-mode";
- version = "20171211.2238";
+ version = "20180315.203";
src = fetchFromGitHub {
owner = "josteink";
repo = "csharp-mode";
- rev = "ba7a81a85ee5fd234f24333ab156ce897cb20cc7";
- sha256 = "1jb0aq0fs1l3djb0cjfk0b2igvdd06l8lz0g94f63p324jn8rl62";
+ rev = "79e0a606f60a2620631623285dbbbd8591cbd2f8";
+ sha256 = "1h36ns0kcz8p7nafczdyz1bvbz8fp3ci72c7ikyl703kkyqpk0px";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/736716bbcfd9c9fb1d10ce290cb4f66fe1c68f44/recipes/csharp-mode";
@@ -12475,8 +12245,8 @@
src = fetchFromGitHub {
owner = "cython";
repo = "cython";
- rev = "93843b9469d164a7e98962f8f0645b93b2f7442f";
- sha256 = "1n9g9h3pn09mfbwlq2grqjxmwhrm34wkchshhpbswngbpc0m10gk";
+ rev = "d52624db23a1b13aad75691c8ad3e9b0a1b34439";
+ sha256 = "1fyxsvl1qr8i3n92ydkn5b3iw6xk2hsp6rbchjhgymx4g45zx4n0";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/be9bfabe3f79153cb859efc7c3051db244a63879/recipes/cython-mode";
@@ -12639,12 +12409,12 @@
danneskjold-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "danneskjold-theme";
- version = "20180221.541";
+ version = "20180327.254";
src = fetchFromGitHub {
owner = "rails-to-cosmos";
repo = "danneskjold-theme";
- rev = "7b32dcdad3933e0eab03d2702014c0b56fc73b9a";
- sha256 = "1sxqnf8c48p8jnrxabjikijah8d7v11c4k4mvmc67vvn92p20ag5";
+ rev = "ae26f45800d9e2ad5d76d50bf1902edc1e36d0f7";
+ sha256 = "1b8mp4xhcswhzk2r5w0s84kkiil1wzl2s32nfbiphpqg7f0863dj";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/557244a3b60c7cd3ca964ff843aa1e9d5a1e32ec/recipes/danneskjold-theme";
@@ -12954,12 +12724,12 @@
dashboard = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, page-break-lines }:
melpaBuild {
pname = "dashboard";
- version = "20180110.1153";
+ version = "20180328.807";
src = fetchFromGitHub {
owner = "rakanalh";
repo = "emacs-dashboard";
- rev = "e3fc28a6d3626c8cae9eb2e448b2f2e6b1a98f52";
- sha256 = "0kfdx5za610v3s8hmvy39gqn5w6xc8yljz6ybxzbg09byjinhxmn";
+ rev = "5be3f45b0f5e84aa7db3988827c5cf0a8134176d";
+ sha256 = "10ac6d2b97jpqrkfd3rnxj1n6a0lzh1n2dxmmz5i2yy5pjfabc5q";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e9a79341ccaa82a8c065e71c02fe6aee22007c66/recipes/dashboard";
@@ -13017,12 +12787,12 @@
datetime = callPackage ({ emacs, extmap, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "datetime";
- version = "20180205.1445";
+ version = "20180325.1004";
src = fetchFromGitHub {
owner = "doublep";
repo = "datetime";
- rev = "2a92d80cdc7febf620cd184cf1204a68985d0e8b";
- sha256 = "0lzdgnmvkvap5j8hvn6pidfnc2ax317sj5r6b2nahllhh53mlr4j";
+ rev = "d8674ac11f9ebb702e5bbac10a4a6e5542958ef5";
+ sha256 = "19d4wximzwdcs0i2r48k6m60wwxcx5f89jw75k4hr0wvx0352a82";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/91ef4352603cc69930ab3d63f0a90eee63f5f328/recipes/datetime";
@@ -13332,12 +13102,12 @@
define-word = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "define-word";
- version = "20180128.725";
+ version = "20180327.1935";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "define-word";
- rev = "06d094f070b5d675441f74e05a449ce4941529e8";
- sha256 = "0r0lihmkz802ik9qlbs41wfw86vj23mlm7z41zw8h845drxc8vl6";
+ rev = "f0da313420a3b27f761fcafd01ccd9e32b71bd0d";
+ sha256 = "0xvsv2wzkgys99vx1x2by9isagihi97bwbxmrwhfrz47pphdmj5r";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e318b30d8b2b89981f4b89d78e5a46e77d3de412/recipes/define-word";
@@ -13793,12 +13563,12 @@
dim-autoload = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dim-autoload";
- version = "20161023.1329";
+ version = "20180318.1327";
src = fetchFromGitHub {
owner = "tarsius";
repo = "dim-autoload";
- rev = "c91edab065f413910354940742b35bdffeb52029";
- sha256 = "0v4fgbh1byv89iiszifr31j4y2s95xwcq0g9iizxiww7mjrfggyi";
+ rev = "788320fe089fafbdf1cb09d2ab4d29d64a804e21";
+ sha256 = "0iyhjww7p274x418n1iw1xj2fkmn5k9icav0jyzbwmy83a2nmr52";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/66b1a81dfd09a2859ae996d5d8e3d704857a340f/recipes/dim-autoload";
@@ -14986,6 +14756,27 @@
license = lib.licenses.free;
};
}) {};
+ djangonaut = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, pythonic, s }:
+ melpaBuild {
+ pname = "djangonaut";
+ version = "20180325.429";
+ src = fetchFromGitHub {
+ owner = "proofit404";
+ repo = "djangonaut";
+ rev = "7be5cb25bee8a9410d5c95139704620c68fd6efa";
+ sha256 = "1vpj5g7x688y3qzhv6566rkgwdzi0qi1pgj4xqv0059a29i9z4yz";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0c1281f59add99abf57bc858d6e0f9b2ae5b3c5c/recipes/djangonaut";
+ sha256 = "0038zqazzhxz82q8l1phxc3aiiwmzksz9c15by9v0apzwpmdkj38";
+ name = "djangonaut";
+ };
+ packageRequires = [ emacs f magit-popup pythonic s ];
+ meta = {
+ homepage = "https://melpa.org/#/djangonaut";
+ license = lib.licenses.free;
+ };
+ }) {};
dkdo = callPackage ({ dkmisc, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dkdo";
@@ -15207,12 +14998,12 @@
docker-compose-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, yaml-mode }:
melpaBuild {
pname = "docker-compose-mode";
- version = "20180311.611";
+ version = "20180324.1052";
src = fetchFromGitHub {
owner = "meqif";
repo = "docker-compose-mode";
- rev = "7f4cd0b1718df2ab93d51bd395b2f37df9482265";
- sha256 = "1fbcxwfvm33xcdj3cs26d9i1zyrryyjjkv7sc3mfxd45nq8d3ivj";
+ rev = "c9f131d2c90d652435d407fd36c40feebfed1dad";
+ sha256 = "0d5d46i6hplmy7q2ihbvcrnk9jrwa2mswgbf8yca3m4k44wgk6la";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/37dd4c1fc11d22598c6faf03ccc860503a68b950/recipes/docker-compose-mode";
@@ -15354,12 +15145,12 @@
doom-themes = callPackage ({ all-the-icons, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "doom-themes";
- version = "20180312.1228";
+ version = "20180328.1556";
src = fetchFromGitHub {
owner = "hlissner";
repo = "emacs-doom-themes";
- rev = "933bf2a006c5de611e03d377b967f213e285c296";
- sha256 = "0lcxglnq5zic2hbjwc67x60dqk3j65rsschhwvxcmcmcyfg0whfi";
+ rev = "179c0836a12a37957569f904024b6e65597fb4b6";
+ sha256 = "01jhds2si4bdm05vjdb9azd8ix75p9xi80qqrhcmp3asml50ha39";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c5084bc2c3fe378af6ff39d65e40649c6359b7b5/recipes/doom-themes";
@@ -15774,12 +15565,12 @@
dtrt-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dtrt-indent";
- version = "20180218.1123";
+ version = "20180319.648";
src = fetchFromGitHub {
owner = "jscheid";
repo = "dtrt-indent";
- rev = "7019ecd7f20428cd33d96a25934416adc28e4159";
- sha256 = "0vb3fhi361v4kjyhvmax60550f3xkkkm2fyhi3ssjq21cq0k923g";
+ rev = "0ac070c9576e4ebab12cd6800ac2ac3abcecc2c1";
+ sha256 = "0dambn5l0wvbhccvhh5hbz9hw66y4mp1la3wj85dl9kgr7hq1ry7";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/61bcbcfa6c0f38a1d87f5b6913b8be6c50ef2994/recipes/dtrt-indent";
@@ -15858,12 +15649,12 @@
dumb-jump = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }:
melpaBuild {
pname = "dumb-jump";
- version = "20180228.2206";
+ version = "20180323.1942";
src = fetchFromGitHub {
owner = "jacktasia";
repo = "dumb-jump";
- rev = "260054500d4731c36574b6cbc519de29fdd22f43";
- sha256 = "00ph85vp8sa3k99qrdxfz4l8zx121q9xf47vvspzg26bk9l4nwin";
+ rev = "9e4090ac9108da9a794194b831dc6226998c623b";
+ sha256 = "1hablgysv2a2jlwnp7hgxglraznbc992ikd3myxfspqr3f6rzm9q";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dumb-jump";
@@ -16043,22 +15834,22 @@
license = lib.licenses.free;
};
}) {};
- e2ansi = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ e2ansi = callPackage ({ face-explorer, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "e2ansi";
- version = "20150220.1513";
+ version = "20180327.1323";
src = fetchFromGitHub {
owner = "Lindydancer";
repo = "e2ansi";
- rev = "bd047d3d6ad02a0679582d5786afe9aee656da90";
- sha256 = "0d18kdpw4zfbq4bkqh19cf42xlinxqa71lr2d994phaxqxqq195w";
+ rev = "e7f8512c2c6be2b1c4cc22f00d41d073562c2249";
+ sha256 = "1q4ld4qk230yglqfmgl9dg45kn1252yfrw8pjhm1m361pypcnlw8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5e655a3fdfae80ea120cdb2ce84dd4fd36f9a71e/recipes/e2ansi";
sha256 = "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94";
name = "e2ansi";
};
- packageRequires = [];
+ packageRequires = [ face-explorer ];
meta = {
homepage = "https://melpa.org/#/e2ansi";
license = lib.licenses.free;
@@ -16298,12 +16089,12 @@
easy-hugo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }:
melpaBuild {
pname = "easy-hugo";
- version = "20180312.352";
+ version = "20180326.2215";
src = fetchFromGitHub {
owner = "masasam";
repo = "emacs-easy-hugo";
- rev = "b14dc7f9d0da804daf8219fea48604b192a4389d";
- sha256 = "0y1d1vpqbdm86y52fd97l64zfnl4g428h30152mamhmbjzjsi0v5";
+ rev = "161354d0f06e2cdbe63610fb11880ae54e050181";
+ sha256 = "12dxb0kzb02h6zal65n6bviy3zdkqjfbzsf7ncsbbmq8f1xrajmc";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/easy-hugo";
@@ -16319,12 +16110,12 @@
easy-jekyll = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "easy-jekyll";
- version = "20180108.559";
+ version = "20180327.342";
src = fetchFromGitHub {
owner = "masasam";
repo = "emacs-easy-jekyll";
- rev = "e7016084c6212e393496cf19fb5e519c380227ba";
- sha256 = "0jpg31z7f2him4lcnazknx9lpipf1nbqvhaqr5razkckq71llq18";
+ rev = "faeff895ab2aa0ee9c6df18046817e8a3f0b62a1";
+ sha256 = "1dp1r16rr5gqbh3aw900v2jz146c3qnlbjf5k75fazdglkbnagxk";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c3f281145bad12c27bdbef32ccc07b6a5f13b577/recipes/easy-jekyll";
@@ -16407,8 +16198,8 @@
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "ebal";
- rev = "b7e5f2c730036197cfa7d819006b91b4dcc2efba";
- sha256 = "0zbcx5ksf02kv7vavdnixblb8xk3zipwp5nrlyxyshmksw7qg3wh";
+ rev = "1740118125ae7aa6ba82d36e1fe0e69065a6fcaa";
+ sha256 = "1i5r8m34zf7ya1kzgm8hsx707phq5smf2x6y2a1ykbnfkk39gmbf";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/629aa451162a0085488caad4052a56366b7ce392/recipes/ebal";
@@ -16907,12 +16698,12 @@
editorconfig = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "editorconfig";
- version = "20180211.2028";
+ version = "20180329.2148";
src = fetchFromGitHub {
owner = "editorconfig";
repo = "editorconfig-emacs";
- rev = "f52d2133f3948221ba84a396c693eff958fc0eb9";
- sha256 = "1ml9hgsyndzn03bz4a81yhalfg34mk5il56kqv4bhqkwjkl1axm7";
+ rev = "f316d65a0f565aceb06c39926c20ab5533399eed";
+ sha256 = "17kx6x7yw951gg0fnjr18ihdxg2yvpmbirqn6gdc83yz3i3gm0kf";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/50d4f2ed288ef38153a7eab44c036e4f075b51d0/recipes/editorconfig";
@@ -17108,8 +16899,8 @@
src = fetchFromGitHub {
owner = "egisatoshi";
repo = "egison3";
- rev = "9948d6a1933af7af45621c9521d7a124c715191b";
- sha256 = "0j2026bnz5wjcw9g1kbgjddapv0hnfmfiv1aab24ffh5s1mr8gnl";
+ rev = "94b0e8e2066f3910d8630f9152c7618e8654fb96";
+ sha256 = "0z9g2qqn3dxw79qv93jsl7jpn05fxd2mafxwg3yb8hnd8xlnb7jy";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f543dd136e2af6c36b12073ea75b3c4d4bc79769/recipes/egison-mode";
@@ -17145,11 +16936,11 @@
}) {};
eide = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "eide";
- version = "20171229.1435";
+ version = "20180330.1330";
src = fetchgit {
url = "https://git.tuxfamily.org/eide/emacs-ide.git";
- rev = "faae6f1384826d18f70b28826dc528d70e91a5c9";
- sha256 = "02hylmgs6il59kkq59i9lpdg9gdirpb2y37xzybh7n5lqyzdafai";
+ rev = "4023c7b19ed75e0e2a58af7b737aff23589ab6f9";
+ sha256 = "0j3gdsnk64xnk028rrc3ngyzjrzsyafpdg1kxnf1p10jrig6pwyy";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/34b70a5616e27ff9904a2803c86e049acfe9b26d/recipes/eide";
@@ -17259,12 +17050,12 @@
ejc-sql = callPackage ({ auto-complete, clomacs, dash, direx, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, spinner }:
melpaBuild {
pname = "ejc-sql";
- version = "20180305.1047";
+ version = "20180328.623";
src = fetchFromGitHub {
owner = "kostafey";
repo = "ejc-sql";
- rev = "dad0777b7dbcdee8d16134b565924a9081806ae8";
- sha256 = "0cmkcnz2mqi3qdcl6srrdzp1yxk6qvm0dk413wkx1grx5gqs1vpr";
+ rev = "7601c4492fd3d896bf6ef6624f4bfad2c25bd57d";
+ sha256 = "17cs6lzkvwqn3qnz31dd2r6lpvmsrib75ryi1dsd8m2f1z5f1pwh";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8f2cd74717269ef7f10362077a91546723a72104/recipes/ejc-sql";
@@ -17305,8 +17096,8 @@
src = fetchFromGitHub {
owner = "dimitri";
repo = "el-get";
- rev = "93fb44441b18b67d61400ca5f63e3194c34181b6";
- sha256 = "0w9iiwnbrk18si064q433f89f8xf5b2lk5zxx1b3nrawbbk76k1r";
+ rev = "e065feaa545087dd49f690a838237fe6239b00f6";
+ sha256 = "18hd7x3rk335r8ps1mpg1lpymywaswpg3w2s3m36khd56m3vd4yf";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1c61197a2b616d6d3c6b652248cb166196846b44/recipes/el-get";
@@ -17700,12 +17491,12 @@
electric-operator = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }:
melpaBuild {
pname = "electric-operator";
- version = "20180204.1405";
+ version = "20180322.506";
src = fetchFromGitHub {
owner = "davidshepherd7";
repo = "electric-operator";
- rev = "478a976db3ea764f9c88c3302fb3bea1ab41f1ca";
- sha256 = "08qzi8wvlf64xfhhndnmr9xksk3n9whzvjqaikf5kz1jrygncnrp";
+ rev = "d47149a8027907b67dfe4787a53b247be34ad4cb";
+ sha256 = "0ipzhmv105621lhwjm7dvc12ap38hcg62z8z805czn6yinw6wydg";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/906cdf8647524bb76f644373cf8b65397d9053a5/recipes/electric-operator";
@@ -17854,12 +17645,12 @@
elfeed-protocol = callPackage ({ cl-lib ? null, elfeed, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elfeed-protocol";
- version = "20180204.2003";
+ version = "20180330.344";
src = fetchFromGitHub {
owner = "fasheng";
repo = "elfeed-protocol";
- rev = "e809a0f1c5b9713ec8d1932fa6412c57bc10150b";
- sha256 = "0ly7g9a85r5vm8fr45km43vdl9jbzdqyiy9a7d95wx63p6aip7vs";
+ rev = "12283230ffa5849e688350d7895f4c33c5f6d817";
+ sha256 = "034m1vrnbp0pw7nd2jq2l6cj7ffmb6np7n793l75284xnvayih7g";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3f1eef8add7cd2cfefe6fad6d8e69d65696e9677/recipes/elfeed-protocol";
@@ -17938,12 +17729,12 @@
elisp-def = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "elisp-def";
- version = "20180309.1434";
+ version = "20180331.1213";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "elisp-def";
- rev = "4c300ea67594892171076f49df7c56f25e35d0ff";
- sha256 = "15kqlf87nxy5vnny5l6jrfj28mxz97w07h6bmj1n1x9lwxbd830n";
+ rev = "7a9eb5a54d08a97394a36948071e6985cd25dabf";
+ sha256 = "1pqv8fn94g57wy85fn72jfny61wfgrfmwr5s06g310g27bd3ram9";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1f027b844efdc5946d2ad80d7052a8f3b96aac3d/recipes/elisp-def";
@@ -18043,12 +17834,12 @@
elisp-refs = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, loop, melpaBuild, s }:
melpaBuild {
pname = "elisp-refs";
- version = "20180111.1431";
+ version = "20180331.1206";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "refs.el";
- rev = "eee751a6120f925cdffcfbb6a4545e599b953e94";
- sha256 = "01gckl8fwmwr5kp1qy4dcmvm7dh4677brwjy4xpqwhiq094fw9b1";
+ rev = "788f6f65d5171b1887b3ff9e4cad900e8046b2b1";
+ sha256 = "0c7hcbjqynw6k5idpmfxn6xbr192ahhk8a2g72npap97flpw6cdq";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/60891099e241ebd32d39bdcfe4953529a5a3263e/recipes/elisp-refs";
@@ -18379,12 +18170,12 @@
elpy = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, find-file-in-project, highlight-indentation, lib, melpaBuild, pyvenv, s, yasnippet }:
melpaBuild {
pname = "elpy";
- version = "20180314.1340";
+ version = "20180330.350";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "elpy";
- rev = "2f4388f949482a4dd83b2dfc408dd94f72edd3d4";
- sha256 = "1mbv1xr015pimfqx108gcnpq9ah974h8lbhc9rkb866rbwsfrnss";
+ rev = "17ea784c95b04df2cc78b17102a076b02cf89134";
+ sha256 = "0gckilh50n7y7mfhadxlamks1136h3f4fa2670xmmm6mzxamn9wn";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1d8fcd8745bb15402c9f3b6f4573ea151415237a/recipes/elpy";
@@ -18447,22 +18238,22 @@
license = lib.licenses.free;
};
}) {};
- elscreen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ elscreen = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elscreen";
- version = "20160613.251";
+ version = "20180320.1902";
src = fetchFromGitHub {
owner = "knu";
repo = "elscreen";
- rev = "35c68a7503179fa618639e1c90b43bec9812a988";
- sha256 = "0gvhnhcchrzlj0kbi48rzmqx2nz68d5lyp7f8jk0lbbbdrdv36ka";
+ rev = "02164afab2c5fbff6e4aa7c59e0daedc6c504772";
+ sha256 = "1jzp7w2c9xl8x8kdxcchgp8s3ygvj70pi2vwwg1qilkya7yv61p0";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e6140694c1dea0a573586d23d1f63d46c9b22936/recipes/elscreen";
sha256 = "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s";
name = "elscreen";
};
- packageRequires = [];
+ packageRequires = [ emacs ];
meta = {
homepage = "https://melpa.org/#/elscreen";
license = lib.licenses.free;
@@ -18618,12 +18409,12 @@
elx = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elx";
- version = "20180202.958";
+ version = "20180324.936";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "elx";
- rev = "99840665f3ffff36633d52b9970352fc523434a6";
- sha256 = "0hfpbfvk2f20sy1gia77aw7ndyxpc268bk4n2n6zlfb4j9jcp2sf";
+ rev = "cf1000f5d214363fe545a4ce849166194b8fb2c8";
+ sha256 = "0k62qcmhav7pshrn1f55sar6lz37l26aqaqlkkd20h60fhbqp9aj";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/elx";
@@ -18996,11 +18787,11 @@
emms = callPackage ({ cl-lib ? null, fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emms";
- version = "20180217.1219";
+ version = "20180328.753";
src = fetchgit {
url = "https://git.savannah.gnu.org/git/emms.git";
- rev = "0459003a1686b5742e660d08e7c936d1b06e8e7c";
- sha256 = "1gym522bhxbip4vfg0lxkpjnb00nb4rh08xdmz33r71rclh4vrkv";
+ rev = "ffd8c0e8a7649d4e3a0d4f9d65e114346145a2de";
+ sha256 = "0ijhwvkngkgg0npz5rnzynpx60rshizw8lpf137lvqx5b07ianr9";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/emms";
@@ -19121,12 +18912,12 @@
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 = "20171211.609";
+ version = "20180325.417";
src = fetchFromGitHub {
owner = "momomo5717";
repo = "emms-player-mpv-jp-radios";
- rev = "686be9b27537bdc7987f1ab0525393208bfc480b";
- sha256 = "0c53mbl53ii0h64a1vdvskm29wjr7v1ms54ax5d588bv4c67wsms";
+ rev = "f6b37f5878c741124d5fca43c5b80af873541edd";
+ sha256 = "1sxzh1bhdwln7kcn07agayyhmgyrbmmhgc3f85336xybc6ljpqs8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/09ba6da5057061f055d4a3212d167f9666618d4f/recipes/emms-player-mpv-jp-radios";
@@ -19142,12 +18933,12 @@
emms-player-simple-mpv = callPackage ({ cl-lib ? null, emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emms-player-simple-mpv";
- version = "20170930.2216";
+ version = "20180316.849";
src = fetchFromGitHub {
owner = "momomo5717";
repo = "emms-player-simple-mpv";
- rev = "1af7838037c86872e897bea872d279ff080c28c6";
- sha256 = "1xgkpw89pyn4p37l5rz9dw8yg065slzq8l5z69n6nam9hndcnjsh";
+ rev = "101d120ccdee1c2c213fd2f0423c858b21649c00";
+ sha256 = "1i6rxkm0ra0jbkkwgkwxg3vk5xfl794h1gkgnlpscynz0v94b6ll";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/emms-player-simple-mpv";
@@ -19289,12 +19080,12 @@
emojify = callPackage ({ emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, seq }:
melpaBuild {
pname = "emojify";
- version = "20180128.607";
+ version = "20180320.1933";
src = fetchFromGitHub {
owner = "iqbalansari";
repo = "emacs-emojify";
- rev = "8d89c10a5eb975544f8475261e758de390d141ba";
- sha256 = "1aa9kvfq6vh5rjwg5hif9lc7c886893f9ayl5nqgpxcdjvlpnvc9";
+ rev = "a86afc14e20ec7287c2b37f5b64318c209c9bbd3";
+ sha256 = "08z699ycyidm2c1yi0zhrg6nhhdf3gqx3yi6h9z4n61ns0irg8r5";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/488d2751b5fd3bf00f5a6f0545530f44563b86d7/recipes/emojify";
@@ -19427,12 +19218,12 @@
engine-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "engine-mode";
- version = "20170812.2007";
+ version = "20180401.946";
src = fetchFromGitHub {
owner = "hrs";
repo = "engine-mode";
- rev = "408932727bb723017eaf6338e50cb6d1266b8df8";
- sha256 = "1wl172ldmdw6gcdzbbf7dln7m55112kq42jzs42xbihm0v1x8xlb";
+ rev = "fd5a235b2c93b95143d676e6b654e388d7cdd956";
+ sha256 = "0lynwd7s1mjppynh8424qk30jzcr384wvr21bqy6ylsxs19kqg0w";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ea1b5dfb6628cf17e77369f25341835aad425f54/recipes/engine-mode";
@@ -19448,12 +19239,12 @@
enh-ruby-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "enh-ruby-mode";
- version = "20180123.1835";
+ version = "20180331.256";
src = fetchFromGitHub {
owner = "zenspider";
repo = "enhanced-ruby-mode";
- rev = "989f7191078c8c1c46921167f5f96119fad930a5";
- sha256 = "167b34cgp5f7nfrcp9jn8phzs125jx8mkbni8yshfb5i2mf7g0ml";
+ rev = "7f892339f8bb48b1dc86f3d36ab47b65cf28f8c7";
+ sha256 = "1l1fr215z83v417lnbbf7z68fjbzf3k9c7d8cyzh0zijyp8y1dpw";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cd1ac1ce69b77b11f34c4175611a852e7ec0806c/recipes/enh-ruby-mode";
@@ -19532,12 +19323,12 @@
ensime = callPackage ({ company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s, sbt-mode, scala-mode, yasnippet }:
melpaBuild {
pname = "ensime";
- version = "20180201.1340";
+ version = "20180320.230";
src = fetchFromGitHub {
owner = "ensime";
repo = "ensime-emacs";
- rev = "2819a9c2ae2bc6d095887c2cbb6f9bd8617f1e52";
- sha256 = "1cfr9xs268nwjjhx7n00h5sssm479bzd5f7c847hg6x2hyqkfzxb";
+ rev = "4ee365c35a34a41c31c262d4360132037461a60a";
+ sha256 = "0919ifs4xm7s7axpjrlb6ymv5xy647pbfczw03z0xwm5gx7fmra3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/502faab70af713f50dd8952be4f7a5131075e78e/recipes/ensime";
@@ -19645,12 +19436,12 @@
epkg = callPackage ({ closql, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "epkg";
- version = "20180222.1622";
+ version = "20180318.1221";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "epkg";
- rev = "bc78f600b2c451bc8df1cf73bbb14476c11ece1d";
- sha256 = "0w4c3j5pnzn6yisfb02s2aw8pzhqlkmidzk0yxfalgn8gmqbz57r";
+ rev = "432312b9583ed7b88ad9644fd1bf2183765a892e";
+ sha256 = "0d882kahn7a0vri7a9r15lvmfx1zn2hsga6jfcc6jv0hqbswlb2k";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2df16abf56e53d4a1cc267a78797419520ff8a1c/recipes/epkg";
@@ -20211,12 +20002,12 @@
erlang = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erlang";
- version = "20180302.427";
+ version = "20180323.612";
src = fetchFromGitHub {
owner = "erlang";
repo = "otp";
- rev = "bdbb5f0376678c0aae289b3f9264a2bd4d9b96ee";
- sha256 = "0f93f2w0c8gclvizh4vlkfii7y07ca7fqr40wqgs1bqjdqw9b9cv";
+ rev = "f99860259ee557851acc865519a315f04d1d4d51";
+ sha256 = "02vba3597wlxv7jf8samds6pp2x3z0w39nh2jnszfnqgqwl16b8d";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d9cd526f43981e0826af59cdc4bb702f644781d9/recipes/erlang";
@@ -20840,12 +20631,12 @@
ess = callPackage ({ fetchFromGitHub, fetchurl, julia-mode, lib, melpaBuild }:
melpaBuild {
pname = "ess";
- version = "20180314.612";
+ version = "20180401.319";
src = fetchFromGitHub {
owner = "emacs-ess";
repo = "ESS";
- rev = "87034e808c5279d73d666797971fac505215fd7f";
- sha256 = "0ycgid2b74f07wc97ywwr5rkk4hxxwhc4zly9xfqa75ngrj993z4";
+ rev = "6d0dafab3ac7a97e530d4082f874dcc24b558a68";
+ sha256 = "1919sdjhkrj66r1bn9nyccj20s3b5wa8p63avk1mgyyfa3a1bnza";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/12997b9e2407d782b3d2fcd2843f7c8b22442c0a/recipes/ess";
@@ -20945,12 +20736,12 @@
esup = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "esup";
- version = "20180226.254";
+ version = "20180325.2152";
src = fetchFromGitHub {
owner = "jschaf";
repo = "esup";
- rev = "d4db4f3023afff4321cd3f99be75ad44e77cd0b0";
- sha256 = "1z8ban35vrkibr07awfg6z4cy79irjiz6hchcyid94l6iifbwf0y";
+ rev = "fb061cf49bea47ba80090775d93388dc9b1b495e";
+ sha256 = "1ygn927d71dxh07si38ii48l4myg42vb7xl09nbbz9c0df4m8q0a";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b9d2948a42da5d4864404d2d11a924a4f235fc3b/recipes/esup";
@@ -21197,12 +20988,12 @@
evil = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, goto-chg, lib, melpaBuild, undo-tree }:
melpaBuild {
pname = "evil";
- version = "20180307.109";
+ version = "20180320.1359";
src = fetchFromGitHub {
owner = "emacs-evil";
repo = "evil";
- rev = "90b41a21a31e99d4153c536f1a04a69b73d96360";
- sha256 = "1vfvhz0r9n1psb6z35r282y4snkxjsbwr3whpzin2a5g515vvx92";
+ rev = "fe3ae258901ba9b16e6d051427e1c0bd5e588e48";
+ sha256 = "1wazvyrpsf0j5v04fsjzqkff906jvhvp8a9bbr5d8qmn4l103qdc";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/440482c0edac8ee8bd4fe22f6bc5c1607f34c7ad/recipes/evil";
@@ -21341,22 +21132,22 @@
license = lib.licenses.free;
};
}) {};
- evil-collection = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ evil-collection = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-collection";
- version = "20180313.1759";
+ version = "20180331.1020";
src = fetchFromGitHub {
owner = "emacs-evil";
repo = "evil-collection";
- rev = "4d3f755884a93132659976c510fdc90b2b98622c";
- sha256 = "05lwd9c2hdd8pdd5vy2f8h3q2djj4zpp4dfwbqqrgqkhw0wavg7s";
+ rev = "2ebc7a93c6376188d4d86347dddbbba942457bb3";
+ sha256 = "19avjdm9ddxgipggg46kwbqpjmz39dpai7kx9xdk3ba4dhkcz5ic";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a9b93a8e3750e4e7767498e418f46d553d814604/recipes/evil-collection";
sha256 = "1fggdlssb8sai00vbrxph8cama3r0f7w8qhmiajj4cy2il7jgmhy";
name = "evil-collection";
};
- packageRequires = [ emacs evil ];
+ packageRequires = [ cl-lib emacs evil ];
meta = {
homepage = "https://melpa.org/#/evil-collection";
license = lib.licenses.free;
@@ -21827,12 +21618,12 @@
evil-matchit = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-matchit";
- version = "20180131.502";
+ version = "20180328.2351";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "evil-matchit";
- rev = "20270ab6b0a3a398942609f7acc3d0162b954591";
- sha256 = "0vnaplchyl1z9d8fhrc83157a6d97dgwdja4y0nm7bkgm1jqgbdc";
+ rev = "51d8b268e597693aa9d02f2dda66840562998621";
+ sha256 = "1b1iymyb2f8913xgzr13pslqcvhwyyl3370kjs43acpbgnhn2zzj";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/aeab4a998bffbc784e8fb23927d348540baf9951/recipes/evil-matchit";
@@ -21995,12 +21786,12 @@
evil-org = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-org";
- version = "20180309.252";
+ version = "20180323.1606";
src = fetchFromGitHub {
owner = "Somelauw";
repo = "evil-org-mode";
- rev = "79c8e067bbc31ead51894a28492f28cf3a103808";
- sha256 = "02qdsc6fzcxmblvlg0zpznzfi8xkmc4rr44zdxgw462xyfk2fwrq";
+ rev = "b6d652a9163d3430a9e0933a554bdbee5244bbf6";
+ sha256 = "176hrw7y7nczffbyhsa167b8rvfacsmcafm2gpkrdjqlrikbmrhl";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1768558ed0a0249421437b66fe45018dd768e637/recipes/evil-org";
@@ -22079,12 +21870,12 @@
evil-replace-with-char = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-replace-with-char";
- version = "20171223.906";
+ version = "20180324.1506";
src = fetchFromGitHub {
owner = "ninrod";
repo = "evil-replace-with-char";
- rev = "b08293f380ca8809ef12df572d37f977bed0ae52";
- sha256 = "05d505scnmhplaqrcj7fpb107bfgh4zpxrrq942nn035yw07yjjx";
+ rev = "ed4a12d5bff11163eb03ad2826c52fd30f51a8d3";
+ sha256 = "1nhnwl39wsi7akzcjqszxxw2b6j9i5y4qabcd8p387zajjpgscwk";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0ac1b487e0fe193cc46c8b489686972ed6db3973/recipes/evil-replace-with-char";
@@ -22184,12 +21975,12 @@
evil-snipe = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-snipe";
- version = "20180228.2218";
+ version = "20180317.233";
src = fetchFromGitHub {
owner = "hlissner";
repo = "evil-snipe";
- rev = "5de756fc02108cb2360908f6ec5e9630492ef422";
- sha256 = "10ch2xkw3ca3g190344jw9wsq297sip9nh12wmd8wxgsnqjlfzfs";
+ rev = "37ca9749bf5604040e745d65143cb0667f052542";
+ sha256 = "172zqf7qmdhyhlj48nxyxpn0cnqb9v045536sf6gfvcrv81wps0c";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6748f3febbe2f098761e967b4dc67791186d0aa7/recipes/evil-snipe";
@@ -22335,8 +22126,8 @@
src = fetchFromGitHub {
owner = "emacs-evil";
repo = "evil";
- rev = "90b41a21a31e99d4153c536f1a04a69b73d96360";
- sha256 = "1vfvhz0r9n1psb6z35r282y4snkxjsbwr3whpzin2a5g515vvx92";
+ rev = "fe3ae258901ba9b16e6d051427e1c0bd5e588e48";
+ sha256 = "1wazvyrpsf0j5v04fsjzqkff906jvhvp8a9bbr5d8qmn4l103qdc";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/87da8c50f9167ad9c3844b23becb6904f809611d/recipes/evil-test-helpers";
@@ -22625,12 +22416,12 @@
exec-path-from-shell = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "exec-path-from-shell";
- version = "20180224.1916";
+ version = "20180323.1904";
src = fetchFromGitHub {
owner = "purcell";
repo = "exec-path-from-shell";
- rev = "885b3de9bb6365771dd09f5267f6ff843d5109e8";
- sha256 = "0x5a0v4z5hgvi7biwbsbxw9l8in0gxwrz77g9vffz9djvlr70r1h";
+ rev = "4d0af1274797ce61f5d8c209339d5b9cdc49aca6";
+ sha256 = "1h45vxyw0pa99fldnvca96rz1w1hl7mrgx5m51rknxascfvk6fqx";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/exec-path-from-shell";
@@ -23094,12 +22885,12 @@
faff-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "faff-theme";
- version = "20180315.1304";
+ version = "20180322.1005";
src = fetchFromGitHub {
owner = "WJCFerguson";
repo = "emacs-faff-theme";
- rev = "abbfde9311a2b0562541d2bf455182d6197f8c48";
- sha256 = "15x2lb41df0kvlvncqp7m4a97yb7m4jhpgb8hp35if5cgp99xmbj";
+ rev = "d123161586397fb74a928bb1b22e2b507f1beed5";
+ sha256 = "136gq45c0w0c3i0fzk3js67z8p7r9k81d31s48flpsb982bf7nfz";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0b35c169fe56a5612ff5a4242140f617fdcae14f/recipes/faff-theme";
@@ -23387,12 +23178,12 @@
feebleline = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "feebleline";
- version = "20180202.1420";
+ version = "20180322.1401";
src = fetchFromGitHub {
owner = "tautologyclub";
repo = "feebleline";
- rev = "c6a8a955c0f441d4b4663fabd5cecdc92235b74b";
- sha256 = "09g67mkschca2vp73263xm5zf48831zfxlyyfcmkjpsvrgm83ii2";
+ rev = "56cd8fe336b619840991dc66d9cca973ddd8500c";
+ sha256 = "0p8d31942c3xlymjm2r9qppr07c8vg0842f87lzqh84sc3z7r5ql";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/782295d8c530878bd0e20cde7e7f7f8f640953dd/recipes/feebleline";
@@ -23574,12 +23365,12 @@
find-file-in-project = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }:
melpaBuild {
pname = "find-file-in-project";
- version = "20180224.2103";
+ version = "20180331.546";
src = fetchFromGitHub {
owner = "technomancy";
repo = "find-file-in-project";
- rev = "aba912a73d1f3fcff0d184b49008a2fa1655ad7e";
- sha256 = "145n04lid9alrm8nl6gfnll75jz1ssli48pbsc9zyva00ryk83my";
+ rev = "ad6c8fce30ac927b4c2297894b6436e1cf724501";
+ sha256 = "1mq544h03laphwvcff2qaxdbb7krmnw1vxmnc9jchz8ascx2x28n";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/find-file-in-project";
@@ -23826,12 +23617,12 @@
fish-completion = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fish-completion";
- version = "20171209.508";
+ version = "20180329.2137";
src = fetchFromGitHub {
owner = "Ambrevar";
repo = "emacs-fish-completion";
- rev = "12e5db70b5efe7a3cd37e8fd25eb526d08007aac";
- sha256 = "0p06rahi66fa3i2gfkf6nzf7hnysdpz475d5dib2wps7labfh9qd";
+ rev = "3e3ed1f19fa778b7c35ad88e033dce5a6b1fc153";
+ sha256 = "1zi5cgzwy1wkvc8352s3l24p4i4fh87f9pyir6jji3hy424pm6w4";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/832bae268cd08d7ebfd4b7a8d0570af8549cdbd6/recipes/fish-completion";
@@ -24168,12 +23959,12 @@
flim = callPackage ({ apel, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flim";
- version = "20180118.522";
+ version = "20180328.1624";
src = fetchFromGitHub {
owner = "wanderlust";
repo = "flim";
- rev = "e969ab24f729835b6f8dd71d57cee1aff345f959";
- sha256 = "1gs3f2dvqh0pfc2mdz00l66wm4hsl2qb7pz29r5yfzjbk5inwqry";
+ rev = "faaa2b1f2bb8fcf835ddfb8981654e4d3b2bdbc6";
+ sha256 = "0hr4qi5vhq3ravgky95k2n7hin97jln7fmkgbx45fcyiz8jbpz2z";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/94faf56ff9bf94f51ef5253e4c4244faec5eecfd/recipes/flim";
@@ -24378,12 +24169,12 @@
flycheck = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, pkg-info, seq }:
melpaBuild {
pname = "flycheck";
- version = "20180315.25";
+ version = "20180326.836";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck";
- rev = "3cdef22f638a3d66b6d98ef5c51f28dcd1651e3a";
- sha256 = "128bmgbjskgamwi6w25vjay19kd8bfq4k1rkac62jl0xa5c3kvs8";
+ rev = "0a588ed2aaf8ea7088ba8abdc91af47d4d41a85a";
+ sha256 = "0rvhk4mi4nh66r7rch69rvi0rbmrnxwqnk2rv8d1his0i7z53rq6";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/649f9c3576e81409ae396606798035173cc6669f/recipes/flycheck";
@@ -24861,12 +24652,12 @@
flycheck-dmd-dub = callPackage ({ f, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-dmd-dub";
- version = "20180316.746";
+ version = "20180321.1546";
src = fetchFromGitHub {
owner = "atilaneves";
repo = "flycheck-dmd-dub";
- rev = "7e975ec648b048d6dc11ff3e41ec5b2cc201a958";
- sha256 = "0k2pzfx6iia74cfjgf59dv5d0dsqi5424v41lmdigb7daqw0rbw7";
+ rev = "995132ced9c0e4464a36c4435ae8248c23fc0511";
+ sha256 = "0k0dlbpz3vys373cng2gqlpbzlzbls9dl613rxvnba8d8ndz7ri4";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a812594901c1099283bdf51fbea1aa077cfc588d/recipes/flycheck-dmd-dub";
@@ -24907,8 +24698,8 @@
src = fetchFromGitHub {
owner = "juergenhoetzel";
repo = "flycheck-dtrace";
- rev = "0b03e2e50c5d706a4fd4bcdc0ac643425d64d51b";
- sha256 = "00ld1aih6axdh7zz5bhlgxqzbh80vla08hklmf5lz7mq3v7aizz7";
+ rev = "a328c38aea855c0fd02f901c141c100c24b27d7f";
+ sha256 = "1cl50ckvjjgx9m7p7fpijk61mw737qigbh9glm5b3slmgkyfq2mq";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cdcdd10fbcd58a5c67e4d07632212e7dedf42dbe/recipes/flycheck-dtrace";
@@ -25050,12 +24841,12 @@
flycheck-gradle = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-gradle";
- version = "20180306.1809";
+ version = "20180322.2332";
src = fetchFromGitHub {
owner = "jojojames";
repo = "flycheck-gradle";
- rev = "3710464576f423ae4825fa18826c007adcc6aa5b";
- sha256 = "0dislqlr4h5p85kkfhi8fnq86176xkgxdsvypr8l027svbb9aabi";
+ rev = "28f6d78330334ba58f209af79cc5d699e6557f42";
+ sha256 = "1lhcizpkn2sih4m01mlgp3aln8jmx7r7jk5iv636268qmvq9ff8d";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/382d9afd2bbb0c137719c308a67d185b86d84331/recipes/flycheck-gradle";
@@ -25071,12 +24862,12 @@
flycheck-haskell = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, let-alist, lib, melpaBuild, seq }:
melpaBuild {
pname = "flycheck-haskell";
- version = "20180209.1357";
+ version = "20180321.1340";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck-haskell";
- rev = "cbc4a54c0bb9ab0b9559a1e2b7eb1c02c2f38f14";
- sha256 = "1kxcc12vrxbcpc8wjf9srczlhqjqs8nxdi8z01zd7d5fxcafikwh";
+ rev = "ef91cfd2766724adf6dd48f7d1dfaeed46dde570";
+ sha256 = "0qv2kzplqpnhgalqibb7ligsbxanv07wjjb5cshlsn2l0dimq4w7";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6ca601613788ae830655e148a222625035195f55/recipes/flycheck-haskell";
@@ -25617,12 +25408,12 @@
flycheck-posframe = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, posframe }:
melpaBuild {
pname = "flycheck-posframe";
- version = "20180313.450";
+ version = "20180321.2307";
src = fetchFromGitHub {
owner = "alexmurray";
repo = "flycheck-posframe";
- rev = "93a8c590ac2275d754b4ca57f64e8335620ae789";
- sha256 = "1n3nhv13wwkqw2wmajgkvmykj1s4g5jx9gjyv5k8qxc5pmf2b3f8";
+ rev = "61bdfd4b04e1651163fdcaa7dc631ad073b3e513";
+ sha256 = "1r5cwmrszp5cvzlcc4dyhajxd0zrgxjpc0arhr2jkw1fc3d611x9";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/124f2a7833e3386a0bf57c8111d782ae7a7ee02e/recipes/flycheck-posframe";
@@ -25659,12 +25450,12 @@
flycheck-pycheckers = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-pycheckers";
- version = "20180316.1028";
+ version = "20180328.1126";
src = fetchFromGitHub {
owner = "msherry";
repo = "flycheck-pycheckers";
- rev = "88fcbed2ab07dc14724d728dfe5ac899ced67e04";
- sha256 = "1nz0pbafrr41sz2c7f07p1kagqqwkk6p7vkgxjw9vp5ik85a1hhf";
+ rev = "6996cfa743ae0f2d76a24eaa1d0e1201fb04e72b";
+ sha256 = "16phmjs6h3iygz3h6wdmp6cmd4ckki685206l3wanmppsp91s4jy";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/af36dca316b318d25d65c9e842f15f736e19ea63/recipes/flycheck-pycheckers";
@@ -25726,8 +25517,8 @@
src = fetchFromGitHub {
owner = "Andersbakken";
repo = "rtags";
- rev = "4310b26e69dd9569582962d0013ebc8c372730e5";
- sha256 = "03mkchsrfxf8g9c36n8b8wxb99kb3nb74x293yw9ch1rbfvw3xis";
+ rev = "a595d13f60c13d67a28467b3941d5ed558102e91";
+ sha256 = "0yp6h6nsbji7dmc9pnf9qi7zsqxrxa1bln90bn0y71xf6z11kbp4";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/flycheck-rtags";
@@ -25743,12 +25534,12 @@
flycheck-rust = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, seq }:
melpaBuild {
pname = "flycheck-rust";
- version = "20171021.151";
+ version = "20180327.945";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck-rust";
- rev = "962f18603c45e3f9a84d059886c7d13178cbf31e";
- sha256 = "0c3lnfj1z27q1pyhfzwxh26ska1wvcnmqmdzpc6zps72prjfdknd";
+ rev = "a722204cff5bffe26b8f127c7003cfc9ed00e34b";
+ sha256 = "1z0zkf4dxkma6qz83ysyhbfvr0sg2cwxvsapc9j9l1x9nskybv2g";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/68d8cdf3d225b13ebbbe5ce81a01366f33266aed/recipes/flycheck-rust";
@@ -25785,12 +25576,12 @@
flycheck-status-emoji = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-status-emoji";
- version = "20180210.1000";
+ version = "20180330.1625";
src = fetchFromGitHub {
owner = "liblit";
repo = "flycheck-status-emoji";
- rev = "ca3d3993cd30d8881dabebd1c540d819967c0212";
- sha256 = "0nqw77q31k6y0lc5v7ly8vnnyl72k8y0jxj9dclqfiq9ch53y3c3";
+ rev = "61e93ac41847d27b8eea3a334ced2d1783687b77";
+ sha256 = "104zz9fihvd5klzdcaxsdmmfp0q5qisq5bbff48rfwdxnlp8dskr";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5abd6aaa8d2bf55ae75cd217820763531f91958b/recipes/flycheck-status-emoji";
@@ -27091,8 +26882,8 @@
src = fetchFromGitHub {
owner = "cadadr";
repo = "elisp";
- rev = "3059378379a6fbd0363cd14fe6227c27739af4e1";
- sha256 = "1hnph9x5981rfqc5p5imiah2cd7fr1f3bbs2x23z7lckaqa5v0g7";
+ rev = "8118551aaf0472900cdfdc13449b55b33ab56289";
+ sha256 = "153cch134c6rvqfcpikidlpxcbxk8nys2ig1xxpbn9ncn4fqkaf3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a7ea18a56370348715dec91f75adc162c800dd10/recipes/forecast";
@@ -27385,8 +27176,8 @@
src = fetchFromGitHub {
owner = "tarsius";
repo = "frameshot";
- rev = "65994602fdf3d8881f0cabffebbce6c0e493e3c8";
- sha256 = "0crvvacpajlhdida54gvv4y11xx78qscr6nznx0bhdb12sj3n45q";
+ rev = "4e7b252e9fd9227de8b25f384af2c855ec45279a";
+ sha256 = "020irzkqr7gs99xsvdd0haja0jvw46dk40xi7ab0m3cq7957srjh";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e5cfaa4b5fda97054d45691fad9d79b559f2df14/recipes/frameshot";
@@ -27557,12 +27348,12 @@
fstar-mode = callPackage ({ company, company-quickhelp, dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, quick-peek, yasnippet }:
melpaBuild {
pname = "fstar-mode";
- version = "20180315.1927";
+ version = "20180319.2121";
src = fetchFromGitHub {
owner = "FStarLang";
repo = "fstar-mode.el";
- rev = "57d00abf5f4087fbb52f4072513672d6258f4656";
- sha256 = "107pv959hqpd05w70i5klabkcy52kcfz2y6c9xb98m75c9i5bzbb";
+ rev = "2b8c41cb18d2433bd2379522e1441c51eae0b5e0";
+ sha256 = "1im2arr9885zx6j4njlj7ngmhmi1varnllxbw3xj37bl0abgcngi";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c58ace42342c3d3ff5a56d86a16206f2ecb45f77/recipes/fstar-mode";
@@ -27590,8 +27381,8 @@
src = fetchFromGitHub {
owner = "factor";
repo = "factor";
- rev = "e50be2a1ca65e9d3b3c8116fd71f743ab59fcf65";
- sha256 = "19g188kniikjw2pjszj4shsad9iwr0z00fq1ias1yiq529z2pmri";
+ rev = "9b2eac2942d777572e330ba5231e1ee3c0a4eea8";
+ sha256 = "1sz3n3dfrga2zgwmn7fy21vhgfw51ma8pbgr459hfq9ay96yvd94";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1e2a0e4698d4e71ec28656594f6a83504a823490/recipes/fuel";
@@ -27737,8 +27528,8 @@
src = fetchFromGitHub {
owner = "HIPERFIT";
repo = "futhark";
- rev = "1c8650d39a16ead77df9f5f741d21d148818ed82";
- sha256 = "0wifcbs5m4q9vvb0ch7x4ki05mc1babi35vqpc4pp24axm5b3c3s";
+ rev = "59fb36049fc1de0db5557db2ceaace367c2f9da1";
+ sha256 = "0pix26f019ny5yjnk838awk007z3rb56zviqk66c3bfwb8abj5md";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0607f01aad7e77d53595ad8db95d32acfd29b148/recipes/futhark-mode";
@@ -27796,12 +27587,12 @@
fwb-cmds = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fwb-cmds";
- version = "20180206.1549";
+ version = "20180318.1519";
src = fetchFromGitHub {
owner = "tarsius";
repo = "fwb-cmds";
- rev = "7d4abf8aa13b2235e4e2f0bb9049ebd6b491f710";
- sha256 = "10xjs8gm9l3riffxip1ffg8xhcf8srffh01yn6ifyln5f70b063d";
+ rev = "90258a5c7dbbaa2ac227e0fb4ff6c7d5aec3628f";
+ sha256 = "1xwvv8wjgdaz96v1x1xc5w697bfvcanlcixd0n5qbx6ryakqrb72";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fe40cdeb5e19628937820181479897acdad40200/recipes/fwb-cmds";
@@ -27880,12 +27671,12 @@
gams-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gams-mode";
- version = "20171117.1815";
+ version = "20180326.2325";
src = fetchFromGitHub {
owner = "ShiroTakeda";
repo = "gams-mode";
- rev = "900e1788695d91dde2a3d7fee97681a3380285de";
- sha256 = "1lix0x2gj6lrcx6imr5w3scyix99526fwpx0vzs1dzxfzglscjja";
+ rev = "2d6b5c29d84a42421ddc2f7f1e9c3a141d81c31c";
+ sha256 = "0cri329g0b7ywqarg4jlmry574z7v15gdd9j7jnikq1s2jjgnb85";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c895a716636b00c2a158d33aab18f664a8601833/recipes/gams-mode";
@@ -28046,12 +27837,12 @@
geiser = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "geiser";
- version = "20180313.1902";
+ version = "20180329.548";
src = fetchFromGitHub {
owner = "jaor";
repo = "geiser";
- rev = "e357eae8fa8c7d6a59f22a1c97cb90a386762089";
- sha256 = "1ayy3pg0af5bhskkr03dmv0vad6zmlk89sn8304s0mq5barmmfi6";
+ rev = "23bc15197dfed3773283b2cacbda47678635f22a";
+ sha256 = "0cjb4lj9xbmw3g1mnghd2ig00d5gjksz1an8j12hkmydzj1psmdv";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b0fe32d24cedd5307b4cccfb08a7095d81d639a0/recipes/geiser";
@@ -28067,12 +27858,12 @@
general = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "general";
- version = "20180215.1455";
+ version = "20180327.1753";
src = fetchFromGitHub {
owner = "noctuid";
repo = "general.el";
- rev = "de82992bba6226f1be3aac9ed6568f1a3b23295b";
- sha256 = "1693mrknq0mwzgwrh5z92nv7c80g6ynlymk5qfq8icpii4rlz5n2";
+ rev = "ce3bc12bd6b928310f7a13f855e5c86183d1e0c2";
+ sha256 = "08jbmln6mpqc6xmf0d606baai25y26l67a68i2cfns09gk8k8pqi";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d86383b443622d78f6d8ff7b8ac74c8d72879d26/recipes/general";
@@ -28197,8 +27988,8 @@
src = fetchFromGitHub {
owner = "sigma";
repo = "gh.el";
- rev = "92418cd1b67ff6e8fb0a64478444975a4b8581a3";
- sha256 = "1vl6wy904jw1mqdic54ssvvbs4xqxhmgacldnfkdkx586vwf0hqi";
+ rev = "f029fc11f345ef04ab62ee91c38657e29c462fea";
+ sha256 = "1rgdpi8ld5hi2rp30p8sxbrl6z95nvq80jfp3zsr7cmsniwz0vv3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/gh";
@@ -28361,12 +28152,12 @@
ghub = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }:
melpaBuild {
pname = "ghub";
- version = "20180316.1351";
+ version = "20180328.830";
src = fetchFromGitHub {
owner = "magit";
repo = "ghub";
- rev = "18bab447b69507802f0261dc284376276ae8a5c8";
- sha256 = "0ld9s2vrzzfmy6cjnylxh6zik4hwzspx3m8n2751m3avmjdazxfc";
+ rev = "d5408b61322a8207a8362e0ebb421306ec582379";
+ sha256 = "1pj9xfqd05i6y0fz4g7ba6jk7s86xj6j5ph6wfynwyz4w63zgw0d";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/70a4dbd62fd6ebb4e056d0e97fa1a958437ddc91/recipes/ghub";
@@ -28382,12 +28173,12 @@
ghub-plus = callPackage ({ apiwrap, emacs, fetchFromGitHub, fetchurl, ghub, lib, melpaBuild }:
melpaBuild {
pname = "ghub-plus";
- version = "20180203.1017";
+ version = "20180330.1738";
src = fetchFromGitHub {
owner = "vermiculus";
repo = "ghub-plus";
- rev = "80a8e9480839eddf1e4e48a23b03ae17d4dffe0d";
- sha256 = "1wdkniszcd5zaqvhfw5j82icf7hh6jy0fg0sifmcmfssvb7xx97n";
+ rev = "3f609f5d8277e4282bf2b93366c9f911e0f721a8";
+ sha256 = "01a6sgzmyc3m4adik1sgvp19z12rap51xj72hjywgh116l9cqn52";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/03a412fd25218ff6f302734e078a699ff0234e36/recipes/ghub+";
@@ -28470,8 +28261,8 @@
src = fetchFromGitHub {
owner = "defunkt";
repo = "gist.el";
- rev = "b2712a61d04af98a05cc2556d85479803b6626be";
- sha256 = "0zpdh7j0nm9qgzgp55kim04r9hi8cyi3f6kflxrs8srzxwb4gs6k";
+ rev = "314fe6ab80fae35b95f0734eceb82f72813b6f41";
+ sha256 = "0vbyzww9qmsvdpdc6d6wq6drlq1r9y92807fjhs0frgzmq6dg0rh";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/gist";
@@ -28613,12 +28404,12 @@
git-commit = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, with-editor }:
melpaBuild {
pname = "git-commit";
- version = "20180202.321";
+ version = "20180401.314";
src = fetchFromGitHub {
owner = "magit";
repo = "magit";
- rev = "242ea1d84b3ae2489caa68acd3070e24d08aa00a";
- sha256 = "1vx3c0r4ci1f967whzjk6hdn11yh7k778s22fa8n522a1mj3gh7n";
+ rev = "570c2a777ec222918492255463742d44a78befee";
+ sha256 = "0741c3zd48ybfs67331hxj026lp7frzrzml0kzspbx2121d56yzh";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/git-commit";
@@ -28760,12 +28551,12 @@
git-io = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-io";
- version = "20180223.112";
+ version = "20180317.1052";
src = fetchFromGitHub {
owner = "tejasbubane";
repo = "emacs-git-io";
- rev = "e141629f3133c38fdb0dcee58b205f9457d0f802";
- sha256 = "0vvnifx9cprdr4dbi2jm6j18h2wj7d1dysbaz5lc62c3kwxz3dfp";
+ rev = "48753acba73b48b997bb678fb5e2a938ae63b5d6";
+ sha256 = "1zw24j6l0ap761q1knxjaxzdfz11kmfq29aag5av4n87m86rxzr8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a713197f227e3c43de3609dd505cf7cd226d94b9/recipes/git-io";
@@ -28781,12 +28572,12 @@
git-lens = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-lens";
- version = "20170517.144";
+ version = "20180328.717";
src = fetchFromGitHub {
owner = "pidu";
repo = "git-lens";
- rev = "91bf19d6dd7368de5cad373a8155c48c4e254723";
- sha256 = "1gszcsji3n42xpshz1pzyvlrd0hxjh14fr4n0ixqv2igk3fywxr3";
+ rev = "ea49e2e005af977a08331f8caa8f64d102b3b932";
+ sha256 = "0prx0xbnhhp46c09nnzpz07jgr3s5ngrw8zjksf48abr8acwywfv";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/66fd7c0642e8e61b883d2030f88892d039380475/recipes/git-lens";
@@ -28928,12 +28719,12 @@
gitattributes-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gitattributes-mode";
- version = "20170118.1613";
+ version = "20180318.1256";
src = fetchFromGitHub {
owner = "magit";
repo = "git-modes";
- rev = "8ca6595b1362d5882d5642e79f7bb2f18f1c8bbe";
- sha256 = "1crpndp5flw16vrbnd24bk3r99s60xa9zc34apkdglg2s3n50wh7";
+ rev = "b08ac12f09a6cfe967ef70dad3f22430da4fbdab";
+ sha256 = "13zwdl0gn8ykqprqv3f3sfjsdqx9zk8ih4k4y7qm5i36crip8nyy";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4b4e2ddd2a80875afc0fc654052e6cbff2f3777f/recipes/gitattributes-mode";
@@ -28970,12 +28761,12 @@
gitconfig-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gitconfig-mode";
- version = "20170627.854";
+ version = "20180318.1256";
src = fetchFromGitHub {
owner = "magit";
repo = "git-modes";
- rev = "8ca6595b1362d5882d5642e79f7bb2f18f1c8bbe";
- sha256 = "1crpndp5flw16vrbnd24bk3r99s60xa9zc34apkdglg2s3n50wh7";
+ rev = "b08ac12f09a6cfe967ef70dad3f22430da4fbdab";
+ sha256 = "13zwdl0gn8ykqprqv3f3sfjsdqx9zk8ih4k4y7qm5i36crip8nyy";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/44a37f59b87f59a587f6681e7aadfabf137c98d7/recipes/gitconfig-mode";
@@ -29180,12 +28971,12 @@
gitignore-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gitignore-mode";
- version = "20160319.302";
+ version = "20180318.1256";
src = fetchFromGitHub {
owner = "magit";
repo = "git-modes";
- rev = "8ca6595b1362d5882d5642e79f7bb2f18f1c8bbe";
- sha256 = "1crpndp5flw16vrbnd24bk3r99s60xa9zc34apkdglg2s3n50wh7";
+ rev = "b08ac12f09a6cfe967ef70dad3f22430da4fbdab";
+ sha256 = "13zwdl0gn8ykqprqv3f3sfjsdqx9zk8ih4k4y7qm5i36crip8nyy";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/44a37f59b87f59a587f6681e7aadfabf137c98d7/recipes/gitignore-mode";
@@ -29222,12 +29013,12 @@
gitlab-ci-mode = callPackage ({ emacs, fetchFromGitLab, fetchurl, lib, melpaBuild, yaml-mode }:
melpaBuild {
pname = "gitlab-ci-mode";
- version = "20180314.1704";
+ version = "20180401.252";
src = fetchFromGitLab {
owner = "joewreschnig";
repo = "gitlab-ci-mode";
- rev = "cbad305987ff26fd604a8632fc7ee2f1a733417c";
- sha256 = "0kcffrmww03lbarw2q4fw0sghncfiqw067wv7j1k00fyy7fwlrad";
+ rev = "19a377aa42cd8a8bea74ae900fedc2ac74a323a5";
+ sha256 = "0wjz87nhcwzp201jxv3qlj88hn7p8nvq20924y06gra2d656znar";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d7915ddcf21fdec539a86bb86c209cf0bbd378cb/recipes/gitlab-ci-mode";
@@ -29243,12 +29034,12 @@
gitlab-ci-mode-flycheck = callPackage ({ emacs, fetchFromGitLab, fetchurl, flycheck, gitlab-ci-mode, lib, melpaBuild }:
melpaBuild {
pname = "gitlab-ci-mode-flycheck";
- version = "20180313.1157";
+ version = "20180401.255";
src = fetchFromGitLab {
owner = "joewreschnig";
repo = "gitlab-ci-mode-flycheck";
- rev = "11293547385b8252ce1776bfc6455630fbc669d4";
- sha256 = "1xfhdnny7gyxqpccss0qsmialrjw3dm8x80s7a7ahfyrx5f77yxm";
+ rev = "adc5658fe3c90ff944b6ca481773b316a6016e86";
+ sha256 = "111clb37329c7v0lv1lwypb8bv7qb9f495f2cy45j2n711vymdna";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d7915ddcf21fdec539a86bb86c209cf0bbd378cb/recipes/gitlab-ci-mode-flycheck";
@@ -29348,12 +29139,12 @@
glab = callPackage ({ emacs, fetchFromGitHub, fetchurl, ghub, lib, melpaBuild }:
melpaBuild {
pname = "glab";
- version = "20180218.652";
+ version = "20180319.828";
src = fetchFromGitHub {
owner = "magit";
repo = "ghub";
- rev = "18bab447b69507802f0261dc284376276ae8a5c8";
- sha256 = "0ld9s2vrzzfmy6cjnylxh6zik4hwzspx3m8n2751m3avmjdazxfc";
+ rev = "d5408b61322a8207a8362e0ebb421306ec582379";
+ sha256 = "1pj9xfqd05i6y0fz4g7ba6jk7s86xj6j5ph6wfynwyz4w63zgw0d";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/70a4dbd62fd6ebb4e056d0e97fa1a958437ddc91/recipes/glab";
@@ -29730,8 +29521,8 @@
src = fetchFromGitHub {
owner = "nsf";
repo = "gocode";
- rev = "416643789f088aa5077f667cecde7f966131f6be";
- sha256 = "1vggwjpcssxp075l8aippgr318m0nkfjyakq7j24ml48g4gc48rm";
+ rev = "d7aee89652f1bd8ca319c64d6dee1bc1dfd9b6ef";
+ sha256 = "1mbz80y0qa6vyvjs33hxsrq5vc2mza5rjhi6rvbxzy2a3lrx4cig";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/go-autocomplete";
@@ -29919,8 +29710,8 @@
src = fetchFromGitHub {
owner = "dominikh";
repo = "go-mode.el";
- rev = "7eb5b3dd0ac31d176e9d56da4172f66aef8fae47";
- sha256 = "1gx8hpgj9pbhpqqg1n5lby03bkg0llbkvb6pnidnfayh338amiqp";
+ rev = "ff87a1e80945d958d9c348ce4d2e65a797b38a4b";
+ sha256 = "182z309aysvi5xg5ymxmdxhkwdllj9v3pi1pajxsgwiq314bycdr";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0cede3a468b6f7e4ad88e9fa985f0fdee7d195f5/recipes/go-guru";
@@ -29957,12 +29748,12 @@
go-imports = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "go-imports";
- version = "20180107.1423";
+ version = "20180325.1918";
src = fetchFromGitHub {
owner = "yasushi-saito";
repo = "go-imports";
- rev = "5b3a1d520c599553f621efaf9aec71609d2b9bb6";
- sha256 = "19v05qc9fmrbdcrjliw02hqrl29dqsg3l57qp2rn8z63n3s17rqq";
+ rev = "7955b820668af7380e65b418e66e445729ea8ef3";
+ sha256 = "0yykpnnrxjp4zf66l6pcx9xx4v26b6468gyqyf77kr5890ry9sl1";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4118ebf0db84cc047fab311c789bfbffd6eb2d92/recipes/go-imports";
@@ -29978,12 +29769,12 @@
go-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "go-mode";
- version = "20170726.555";
+ version = "20180327.830";
src = fetchFromGitHub {
owner = "dominikh";
repo = "go-mode.el";
- rev = "7eb5b3dd0ac31d176e9d56da4172f66aef8fae47";
- sha256 = "1gx8hpgj9pbhpqqg1n5lby03bkg0llbkvb6pnidnfayh338amiqp";
+ rev = "ff87a1e80945d958d9c348ce4d2e65a797b38a4b";
+ sha256 = "182z309aysvi5xg5ymxmdxhkwdllj9v3pi1pajxsgwiq314bycdr";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0cede3a468b6f7e4ad88e9fa985f0fdee7d195f5/recipes/go-mode";
@@ -30066,8 +29857,8 @@
src = fetchFromGitHub {
owner = "dominikh";
repo = "go-mode.el";
- rev = "7eb5b3dd0ac31d176e9d56da4172f66aef8fae47";
- sha256 = "1gx8hpgj9pbhpqqg1n5lby03bkg0llbkvb6pnidnfayh338amiqp";
+ rev = "ff87a1e80945d958d9c348ce4d2e65a797b38a4b";
+ sha256 = "182z309aysvi5xg5ymxmdxhkwdllj9v3pi1pajxsgwiq314bycdr";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d806abe90da9a8951fdb0c31e2167bde13183c5c/recipes/go-rename";
@@ -30318,8 +30109,8 @@
src = fetchFromGitHub {
owner = "golang";
repo = "lint";
- rev = "46530068cce6db92aaafde350b5059841861d5be";
- sha256 = "17wwvcmyrmi654jkbg6787kc3k0i5w99byk3g69a1rw90gx87gbr";
+ rev = "85993ffd0a6cd043291f3f63d45d656d97b165bd";
+ sha256 = "0kag4ki3dx9xnm41gj4q77wcl77785id4qqb8kb7k5rhfrs29psz";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/34f22d829257456abbc020c006b92da9c7a7860e/recipes/golint";
@@ -30381,8 +30172,8 @@
src = fetchFromGitHub {
owner = "google";
repo = "styleguide";
- rev = "89be4df26da2a8c50853d2e82ed4b3cc29abc8e2";
- sha256 = "0ih82n619x7k39y0mv6mcaniv3s418b4nq5ql04rv3r4xk5z71gl";
+ rev = "5508c2f7dfaba43b30d413c943560476c2e5a46c";
+ sha256 = "12f6zw4byx7m6v81q2szabpy0ky8cpyn1drcjyi6yvra11z6747a";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/google-c-style";
@@ -30545,12 +30336,12 @@
gotest = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild, s }:
melpaBuild {
pname = "gotest";
- version = "20170823.141";
+ version = "20180319.137";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "gotest.el";
- rev = "8a5ef7363f83edb3b77c5e23876f13dd8c23b2b9";
- sha256 = "1ksi37kmy9mnrjr5lf9f0ga5nvi3r2kc85g6yvdfj0mbsjm1pnp7";
+ rev = "ad0d617887eed837eed72f7d3daba40d1bb7cba8";
+ sha256 = "1lsc6bri8rqkqrmhdslqpph2rdad4b3x8zabg55d9msc4fh25jlv";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0670b42c0c998daa7bf01080757976ac3589ec06/recipes/gotest";
@@ -30654,8 +30445,8 @@
src = fetchFromGitHub {
owner = "vmware";
repo = "govmomi";
- rev = "af9d8fad593242a5ff7e6de55f5d3dd677fcf227";
- sha256 = "129rzpffxsnnnsmb268j028vwd9m5pb042skp829883mxk8gx231";
+ rev = "1f0870fcda76974a214b4dd7df54df00d0ba0713";
+ sha256 = "17zphy7kkwqiqc9zsrkfv4x63jqbz6vnxrx1snar987dk3iwpfph";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/92d6391318021c63b06fe39b0ca38f667bb45ae9/recipes/govc";
@@ -30692,12 +30483,12 @@
grab-mac-link = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "grab-mac-link";
- version = "20180116.251";
+ version = "20180328.745";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "grab-mac-link.el";
- rev = "19369badf8b0621eb03ea9e3adeecb22b9710c23";
- sha256 = "0bp4x8s16zj2v7z0i5sxvqafka9v27riizjdrgfbvlvw9idlnsq0";
+ rev = "35edb57d136c2a9726fd14e6a59cce4fc0248771";
+ sha256 = "1c3g6ygi71qm3lqvhjjzxkpdhwkpx4qwm8mhinwffcib5hagrafn";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e4cc8a72a9f161f024ed9415ad281dbea5f07a18/recipes/grab-mac-link";
@@ -30780,8 +30571,8 @@
src = fetchFromGitHub {
owner = "Groovy-Emacs-Modes";
repo = "groovy-emacs-modes";
- rev = "7ac48be3bfd2653422de7ef696827e49f4fbf273";
- sha256 = "0h733mn02fg4jqgaxx4f6drz1b8n2nq6ma0a4f6clw3cl8djlarn";
+ rev = "88e851a7685a4f6f65786f088423163ba33be84b";
+ sha256 = "1ac4dbk890nq9w0slc17106b8rsavhh63rq0n9wplixl8i2ccr4g";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe318b4e51a280a55c01fa30455e4a180df8bd6/recipes/grails-mode";
@@ -30997,12 +30788,12 @@
green-is-the-new-black-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "green-is-the-new-black-theme";
- version = "20180228.206";
+ version = "20180322.1903";
src = fetchFromGitHub {
owner = "fredcamps";
repo = "green-is-the-new-black-emacs";
- rev = "8eb51dff843f39552f009e34efbf831052557188";
- sha256 = "1jrlbp93qjdb7mfsq1x0n45j7n3zq5q3dzyifp7767bd7ng3srlg";
+ rev = "8a03687a2b8b55c5dc7f099086019278d505d8d8";
+ sha256 = "07j5sv8dskqxpbzr5f58n75cziyqm9v01c3f7wmwfs8jl7h5nc4m";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3e42528d5677fd90515cad47266c07ea3d4363fb/recipes/green-is-the-new-black-theme";
@@ -31102,12 +30893,12 @@
grep-context = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "grep-context";
- version = "20180311.807";
+ version = "20180317.742";
src = fetchFromGitHub {
owner = "mkcms";
repo = "grep-context";
- rev = "9602b7b9582d5a5cc036edf0877533b23570ad2d";
- sha256 = "1ybw0mvif1cfkw7vr9kvb9naz06rjmcnyh6l8lk20wfpmcc1rz2r";
+ rev = "a17c57e66687a54e195e08afe776bdd60cb6c0a7";
+ sha256 = "1nqfa6kjzjshww4hnwg1c0vcr90bdjihy3kmixq3c3jkvxg99b62";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/41dbaf627ae4ef86c222d2b6b5d3523fdb9a4637/recipes/grep-context";
@@ -31205,12 +30996,12 @@
groovy-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "groovy-mode";
- version = "20180305.352";
+ version = "20180326.303";
src = fetchFromGitHub {
owner = "Groovy-Emacs-Modes";
repo = "groovy-emacs-modes";
- rev = "7ac48be3bfd2653422de7ef696827e49f4fbf273";
- sha256 = "0h733mn02fg4jqgaxx4f6drz1b8n2nq6ma0a4f6clw3cl8djlarn";
+ rev = "88e851a7685a4f6f65786f088423163ba33be84b";
+ sha256 = "1ac4dbk890nq9w0slc17106b8rsavhh63rq0n9wplixl8i2ccr4g";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe318b4e51a280a55c01fa30455e4a180df8bd6/recipes/groovy-mode";
@@ -31339,8 +31130,8 @@
sha256 = "0dmaazcscg9mdsmij26873af5jl2np4q9xf2klw1jmcl61wzggb0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b98ec72605077f3b3f587713a681eb2144f29645/recipes/gtk-pomodoro-indicator";
- sha256 = "0fg227yhj85xy0s32xzwg2ka9kc9ygl0wd33wypp6jban13ldasr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a58f1acaafc459e055d751acdb68427e4b11275e/recipes/gtk-pomodoro-indicator";
+ sha256 = "1lkz1bk3zl51jdgp7pg6sr57drdwz8mlvl9ryky3iv73kr5i0q6c";
name = "gtk-pomodoro-indicator";
};
packageRequires = [];
@@ -31412,22 +31203,22 @@
license = lib.licenses.free;
};
}) {};
- guix = callPackage ({ bui, dash, emacs, fetchFromGitHub, fetchurl, geiser, lib, magit-popup, melpaBuild }:
+ guix = callPackage ({ bui, dash, edit-indirect, emacs, fetchFromGitHub, fetchurl, geiser, lib, magit-popup, melpaBuild }:
melpaBuild {
pname = "guix";
- version = "20180207.952";
+ version = "20180329.1312";
src = fetchFromGitHub {
owner = "alezost";
repo = "guix.el";
- rev = "1d400fd2f4b21e8fd834887198fe6587933a9cc7";
- sha256 = "03q8rq74zxil5aws18wysiyk8zxyp9w0sqxcnk79d1p5hdgn09p2";
+ rev = "62a50ea1bae7e90a622e9722269ebe449e01145a";
+ sha256 = "09fhl2qzai6jc23nq4mnnf6dwhll1g7llxycb25cx4n79qr0db1q";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b3d8c73e8a946b8265487a0825d615d80aa3337d/recipes/guix";
sha256 = "0h4jwc4h2jv09c6rngb614fc39qfy04rmvqrn1l54hn28s6q7sk9";
name = "guix";
};
- packageRequires = [ bui dash emacs geiser magit-popup ];
+ packageRequires = [ bui dash edit-indirect emacs geiser magit-popup ];
meta = {
homepage = "https://melpa.org/#/guix";
license = lib.licenses.free;
@@ -32002,12 +31793,12 @@
hasky-stack = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild }:
melpaBuild {
pname = "hasky-stack";
- version = "20180311.24";
+ version = "20180331.208";
src = fetchFromGitHub {
owner = "hasky-mode";
repo = "hasky-stack";
- rev = "d162ec82f4da80f72de0d28c84a4e7ef93197a8b";
- sha256 = "1b87i8c4i5801vsx0wwii0mk4l7z9cp5a58bj2pa3d8yy8qnwriy";
+ rev = "3e17ce07dd6b0207474e4ff14ad7b8c467382947";
+ sha256 = "0cdsdlgapf9xxj928hlb7ch9x8rznayrvj7n8j2vzfa0kfmg7qwf";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c3faf544872478c3bccf2fe7dc51d406031e4d80/recipes/hasky-stack";
@@ -32190,12 +31981,12 @@
helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }:
melpaBuild {
pname = "helm";
- version = "20180315.2354";
+ version = "20180331.2328";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm";
- rev = "4154fd45d8f990c063455ddf208b3b5ec93bd6be";
- sha256 = "0wmvdiw4qp27zq92xd2p79v9xpjvriwcv2rhr5bc5grwamzqdwm3";
+ rev = "412e85cad7ed4073152b6e339d8e7c9247ddeba4";
+ sha256 = "075v6ml40z0j1sblj5q7a7cqrlbvvh7rbwllmz8a7ghcan17n1x6";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7e8bccffdf69479892d76b9336a4bec3f35e919d/recipes/helm";
@@ -32334,27 +32125,6 @@
license = lib.licenses.free;
};
}) {};
- helm-anything = callPackage ({ anything, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
- melpaBuild {
- pname = "helm-anything";
- version = "20141126.231";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "helm-anything";
- rev = "0ec578922928b7c75cf034d1b7a956b5f36107ea";
- sha256 = "153zq1q3s3ihjh15wyci9qdic3pin8f1j1gq2qlzyhmy0njlvgjb";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0d844b790661258bc9b73985ad7a7da37ba339ab/recipes/helm-anything";
- sha256 = "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx";
- name = "helm-anything";
- };
- packageRequires = [ anything helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-anything";
- license = lib.licenses.free;
- };
- }) {};
helm-aws = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }:
melpaBuild {
pname = "helm-aws";
@@ -32400,12 +32170,12 @@
helm-bbdb = callPackage ({ bbdb, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-bbdb";
- version = "20180314.1527";
+ version = "20180319.639";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-bbdb";
- rev = "f4a0e9bb882febf126ec95af65913c6c23f8e826";
- sha256 = "06a2930mhnwzgl97salqccnfr4p6nx5rj94xf4dc844kriqhzy1w";
+ rev = "7582e93871d6ab9aeebd87f5f63c43d3207b71fe";
+ sha256 = "11nv31rlf6f9aha39pgzapah3drb547gfymha3ihpdsk2xy68ij5";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7025c319fcabc64576c0c6554d0d572cef697693/recipes/helm-bbdb";
@@ -32421,12 +32191,12 @@
helm-bibtex = callPackage ({ biblio, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, parsebib, s }:
melpaBuild {
pname = "helm-bibtex";
- version = "20180316.447";
+ version = "20180328.1147";
src = fetchFromGitHub {
owner = "tmalsburg";
repo = "helm-bibtex";
- rev = "bff3b2e7551aa6d9b2f41cc412c40f7cf3cebfe3";
- sha256 = "0dmnj7qcwaljjagb087dx6y6w4ciqjzwcfp4ssb0c2lsv63l4nbj";
+ rev = "5be84d36758ed7d5838cc5c8796a6ff427ba7043";
+ sha256 = "1pqg49mj22izilx8x9rshflpyiw1q9zrp881nasp5lvbihwydvrg";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f4118a7721435240cf8489daa4dd39369208855b/recipes/helm-bibtex";
@@ -32820,12 +32590,12 @@
helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "helm-core";
- version = "20180314.947";
+ version = "20180331.1241";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm";
- rev = "4154fd45d8f990c063455ddf208b3b5ec93bd6be";
- sha256 = "0wmvdiw4qp27zq92xd2p79v9xpjvriwcv2rhr5bc5grwamzqdwm3";
+ rev = "412e85cad7ed4073152b6e339d8e7c9247ddeba4";
+ sha256 = "075v6ml40z0j1sblj5q7a7cqrlbvvh7rbwllmz8a7ghcan17n1x6";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7a700c5665e6d72cb4cecf7fb5a2dd43ef9bf7/recipes/helm-core";
@@ -33114,12 +32884,12 @@
helm-emms = callPackage ({ cl-lib ? null, emacs, emms, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-emms";
- version = "20180124.1023";
+ version = "20180328.2125";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-emms";
- rev = "6e05efc4612262b39732d2d82d606c48fd6bf46b";
- sha256 = "04iaxzx3r5f7jr42nycnvrrs3rx51nf9a20l2zpyz14i2g4pqjvn";
+ rev = "b564ed61f596db98b9e9cc68c97f0c058208b9c0";
+ sha256 = "090iq5phlq5lgf7asqprra0pz1lhgdxqmyzd7kqlbjssd3wzaig8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/db836b671705607f6cd9bce8229884b1f29b4a76/recipes/helm-emms";
@@ -34122,12 +33892,12 @@
helm-make = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, projectile }:
melpaBuild {
pname = "helm-make";
- version = "20171103.1155";
+ version = "20180322.1251";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "helm-make";
- rev = "feae8df22bc4b20705ea08ac9adfc2b43bb348d0";
- sha256 = "1y2v77mmd1bfkkz51cnk1l0dg3lvvxc39wlamnm7wjns66dbvlam";
+ rev = "51dfe9871ae2851d8d82530346c8e0a846cdfd94";
+ sha256 = "0zipg6zv62839n0px8sil86jdv9qlqy877kj1m8x3dln3c7pf0x3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0f25f066c60d4caff1fbf885bc944cac47515ec8/recipes/helm-make";
@@ -34315,8 +34085,8 @@
src = fetchFromGitHub {
owner = "alphapapa";
repo = "helm-org-rifle";
- rev = "81a84a071c9ec9313b9b13e0c89b9e499268436a";
- sha256 = "0ipz4r2cdvxsrzgsrcrxchj8vvgfqz7whd61smfn7h6sakljk2xm";
+ rev = "f4936509b4a5658ea325fc9f941f2e2e9e3018cf";
+ sha256 = "020jg7mwyibd6c3lrzdsrc5jbn7vh6y6iyxfc6r28k8bwv4fggv3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f39cc94dde5aaf0d6cfea5c98dd52cdb0bcb1615/recipes/helm-org-rifle";
@@ -34371,22 +34141,22 @@
license = lib.licenses.free;
};
}) {};
- helm-pass = callPackage ({ auth-password-store, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, password-store }:
+ helm-pass = callPackage ({ auth-source-pass, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, password-store }:
melpaBuild {
pname = "helm-pass";
- version = "20180311.959";
+ version = "20180325.1453";
src = fetchFromGitHub {
owner = "jabranham";
repo = "helm-pass";
- rev = "3171a90c33ea7baaf01da37ca048a538dcb58381";
- sha256 = "01wcc5lxnym66qgnviwsdbnzdmp4c1hyw524ii2jphhm8vyvd1k1";
+ rev = "c451b9739ef742df06af9d098f6b0fb48e807f66";
+ sha256 = "1ndhyb796svisq5wdshxlz4nzjsphmwiwf9kp5f077bi6lx25xkn";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d8100599d69a760cd4548004a552cc0adcdb3bed/recipes/helm-pass";
sha256 = "11yknsch0avdl8jmj54xk45nba3qh8bhsdrc2rds084i7d5gmqia";
name = "helm-pass";
};
- packageRequires = [ auth-password-store helm password-store ];
+ packageRequires = [ auth-source-pass helm password-store ];
meta = {
homepage = "https://melpa.org/#/helm-pass";
license = lib.licenses.free;
@@ -34500,12 +34270,12 @@
helm-projectile = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, projectile }:
melpaBuild {
pname = "helm-projectile";
- version = "20180228.1125";
+ version = "20180324.1632";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "helm-projectile";
- rev = "20eb422df057533c6b2728f2a0871eec4f837d53";
- sha256 = "0iba3w6kir9ymisbv7bjsb0vmmai4m24kh34693lsh4x7m8mjyz9";
+ rev = "9a4128ffdc96f36ba21f61cabeee1c4640a3d8ce";
+ sha256 = "1parnynpdmxvz1plx852h7vja688lqc32yhi87g5fq4vyvms2877";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc4e3a5af7ba86d277c73a1966a91c87d3d855a/recipes/helm-projectile";
@@ -34819,8 +34589,8 @@
src = fetchFromGitHub {
owner = "Andersbakken";
repo = "rtags";
- rev = "4310b26e69dd9569582962d0013ebc8c372730e5";
- sha256 = "03mkchsrfxf8g9c36n8b8wxb99kb3nb74x293yw9ch1rbfvw3xis";
+ rev = "a595d13f60c13d67a28467b3941d5ed558102e91";
+ sha256 = "0yp6h6nsbji7dmc9pnf9qi7zsqxrxa1bln90bn0y71xf6z11kbp4";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/helm-rtags";
@@ -34924,8 +34694,8 @@
src = fetchFromGitHub {
owner = "takaxp";
repo = "helm-selected";
- rev = "d2609cdfce14052ab2d9c23761d4fe56966a8ed1";
- sha256 = "0nbfs5s6lshxib6kp20dzh1qbmq079hwcqwi1n61ank22qa9qw5x";
+ rev = "6743ede584571319e4c29204197e9ff6b7ee97cf";
+ sha256 = "199a1ycv6pi4kljv7ln0i59l85yr6ngvd3acjakq3416nnjlvhzh";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/acc087661e614d9f30c23fe4a65c020bd3656a29/recipes/helm-selected";
@@ -35088,12 +34858,12 @@
helm-system-packages = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, seq }:
melpaBuild {
pname = "helm-system-packages";
- version = "20180309.833";
+ version = "20180321.755";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-system-packages";
- rev = "497d53a81fe989c341a24c3e4a288f8777b0c6e0";
- sha256 = "1gil4y4n0glj5kksyh7r81ih9hlywx9rwp91a74g93zml0yf7rrp";
+ rev = "e6ce15c5c83148279549c4d9aa16848c1b96cbb4";
+ sha256 = "10fcg02cjcw83myv6vy2dpc2llp049q9wzxzb67g83jlry1zlz76";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0c46cfb0fcda0500e15d04106150a072a1a75ccc/recipes/helm-system-packages";
@@ -35361,12 +35131,12 @@
helpful = callPackage ({ dash, dash-functional, elisp-refs, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s, shut-up }:
melpaBuild {
pname = "helpful";
- version = "20180316.1421";
+ version = "20180331.1143";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "helpful";
- rev = "b42bd5adcbf910bffec44022d1c99df7322d98f7";
- sha256 = "1bmf2cw3jj5yq2ggzmh8dmsv2wq0arikn0hyfdbsxh8qzpkxc502";
+ rev = "f2d6751c48d8318f93124e380f0beba5a1c802cb";
+ sha256 = "180ws8d4ifyv3ycj5mci3lhipzybxp4r7g5siacqbkw3ns0cwksp";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/889d34b654de13bd413d46071a5ff191cbf3d157/recipes/helpful";
@@ -36347,12 +36117,12 @@
hl-todo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hl-todo";
- version = "20170621.1257";
+ version = "20180327.1716";
src = fetchFromGitHub {
owner = "tarsius";
repo = "hl-todo";
- rev = "961db3116f1396dc4f903e3a59824a40e0bbb6a2";
- sha256 = "0w847g7lvzk9br9r73n7rf2ba6wafqrapyigp91f62jicz28lvm1";
+ rev = "54d6562ba33182b16a7225c5fe6bb17a68025302";
+ sha256 = "1jkxvik625rqbazbm8r83pcdmd288g26a4vvchsp4717k82sklkj";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7c262f6a1a10e8b3cc30151cad2e34ceb66c6ed7/recipes/hl-todo";
@@ -36511,6 +36281,27 @@
license = lib.licenses.free;
};
}) {};
+ honcho = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sudo-edit }:
+ melpaBuild {
+ pname = "honcho";
+ version = "20180319.1441";
+ src = fetchFromGitHub {
+ owner = "emacs-pe";
+ repo = "honcho.el";
+ rev = "fd3306f5cb870b557fc7d700fcb0a560feb3fbc7";
+ sha256 = "0pdpnn206nfkc8pl36lxc2jfrmii8ai1gvf21ycx0r37g9q64qhq";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/76487b6776d148325c0200d2f788815f115feac9/recipes/honcho";
+ sha256 = "1ywx67dmvackfx19p4fvrb8mm27a7pri3m3bwr2acwd29lrrid2x";
+ name = "honcho";
+ };
+ packageRequires = [ emacs sudo-edit ];
+ meta = {
+ homepage = "https://melpa.org/#/honcho";
+ license = lib.licenses.free;
+ };
+ }) {};
hookify = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "hookify";
@@ -36744,12 +36535,12 @@
htmlize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "htmlize";
- version = "20171017.141";
+ version = "20180328.2341";
src = fetchFromGitHub {
owner = "hniksic";
repo = "emacs-htmlize";
- rev = "a0b55cba65a225df8d9e17a3ac448ce9e8ec962d";
- sha256 = "0k23xz34ksd6n9xa8anbpvx07fymflyxdggy2is2kp0vqg66pv5q";
+ rev = "726c77b909f825b27e734a5460e3e2b63cfc60b0";
+ sha256 = "02v14p01qkj1i38r181d6azcdj00331bkdlgcidg6brljl6jzz41";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/075aa00a0757c6cd1ad392f0300bf5f1b937648d/recipes/htmlize";
@@ -37078,12 +36869,12 @@
ialign = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ialign";
- version = "20180303.1356";
+ version = "20180322.848";
src = fetchFromGitHub {
owner = "mkcms";
repo = "interactive-align";
- rev = "7ad88c8f7922adc616b8f060b65fa1add8952ea1";
- sha256 = "0bh03w91i622hbar5dcq631ndxx1y8kd3h655pgw1g0lqkv1mlnc";
+ rev = "0f3b412dc7688d99ea8c8810dd5e57a70d580b59";
+ sha256 = "1hqblgk14qrjd339p9hm640q11mixkhk5jd72sjja74xhbaxciab";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/072f1f7ce17e2972863bce10af9c52b3c6502eab/recipes/ialign";
@@ -37141,12 +36932,12 @@
ibuffer-projectile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }:
melpaBuild {
pname = "ibuffer-projectile";
- version = "20171222.2000";
+ version = "20180324.2025";
src = fetchFromGitHub {
owner = "purcell";
repo = "ibuffer-projectile";
- rev = "bfa02c76dabdc02557b67fa556969bc74e255023";
- sha256 = "0isgy5nkcbcf56p4f7xaf0shi4ja99s23gbvan6fimf6ra7qw4i2";
+ rev = "1e89bfa7cae0629d29f24af3d81774b88b3cede0";
+ sha256 = "0y0pvjic5n5wmkrjzjjnhz2xaknib6w5p01vgv2jf5ylwq84wray";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/363a6a888945f2c8b02f5715539439ba744d737d/recipes/ibuffer-projectile";
@@ -37477,12 +37268,12 @@
ido-flex-with-migemo = callPackage ({ emacs, fetchFromGitHub, fetchurl, flx-ido, lib, melpaBuild, migemo }:
melpaBuild {
pname = "ido-flex-with-migemo";
- version = "20170319.431";
+ version = "20180323.456";
src = fetchFromGitHub {
owner = "ROCKTAKEY";
repo = "ido-flex-with-migemo";
- rev = "c620934f50b9713693eba8e23f88c2aaa8510708";
- sha256 = "0aymvbf36ph0zaff38r5vd7q0z3kv8wl3ivakhaybpsa2zvsgvxf";
+ rev = "9684ffc47d838e82d611d0955b390d8387cf5741";
+ sha256 = "06wi05bqwr1va589vzcyakjvh2z3vnn17ccbx0cgb7b3l8md73qs";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1647d1ae7400ddbc8367c355ade16b5c360b42fc/recipes/ido-flex-with-migemo";
@@ -38042,12 +37833,12 @@
imake = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "imake";
- version = "20171006.450";
+ version = "20180318.1559";
src = fetchFromGitHub {
owner = "tarsius";
repo = "imake";
- rev = "edd2e59f7996c35450987cf8f137ecb54777e9ca";
- sha256 = "12mq1ki001jgjdfr3fx43z1xz4jrki18rb0wkb7n956dvl34w0fg";
+ rev = "7df5fb9684a0288313ef5f64594078d477105959";
+ sha256 = "0xc19ir5ak1bfq0ag48ql5rj58zd565csgxhpa30s9lvvkc8kvr5";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/28de8f7f5302b27c7c6600ad65a998119518be43/recipes/imake";
@@ -38063,12 +37854,12 @@
imapfilter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "imapfilter";
- version = "20161008.1357";
+ version = "20180318.1327";
src = fetchFromGitHub {
owner = "tarsius";
repo = "imapfilter";
- rev = "a879ddc36fedc30311693f308f414c520fdfc370";
- sha256 = "0rx4r6822iwl4gb9j0fii0sqinqvp3lzrc768rasgicgpklaqkjs";
+ rev = "79bbbe918319bc1e8f42a0bef53dc7c77fe868ea";
+ sha256 = "0lqhwh8kav7f526a40rjdy2hzarzph1i3ig2dmbf02gp32sl7rg9";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2415894afa3404fbd73c84c58f8b8267187d6d86/recipes/imapfilter";
@@ -38144,27 +37935,6 @@
license = lib.licenses.free;
};
}) {};
- imgur = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "imgur";
- version = "20120307.225";
- src = fetchFromGitHub {
- owner = "myuhe";
- repo = "imgur.el";
- rev = "ed952eb8f556c6fc0d982e2a689083504558cffb";
- sha256 = "0nzgfj083im8lc62ifgsh1pmbw0j9wivimjgih7k6ny3jgw834rs";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d889f470cb81ac8a5f27e054755152867904feac/recipes/imgur";
- sha256 = "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7";
- name = "imgur";
- };
- packageRequires = [ anything ];
- meta = {
- homepage = "https://melpa.org/#/imgur";
- license = lib.licenses.free;
- };
- }) {};
immortal-scratch = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "immortal-scratch";
@@ -38423,8 +38193,8 @@
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "inf-clojure";
- rev = "1295e58e9f7fb575149a7b9b2604547c7331b4d5";
- sha256 = "1c0rjnhlrbl396a5gjm7pnpqmxrbymr63l2ff0v5l2wjwfjrjiny";
+ rev = "69137983d368af0dc76cfa2e9e33338b796df5f4";
+ sha256 = "02admpcd7gc1zpxha2xcdydbwcr1gbc2z09dnh3yss7ddjzmgbr6";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5d6112e06d1efcb7cb5652b0bec8d282d7f67bd9/recipes/inf-clojure";
@@ -38922,12 +38692,12 @@
intero = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }:
melpaBuild {
pname = "intero";
- version = "20180313.605";
+ version = "20180331.1851";
src = fetchFromGitHub {
owner = "commercialhaskell";
repo = "intero";
- rev = "ebcf8a0935b57eb54351b78ed8c358cbef96f4bd";
- sha256 = "11ycc0ig2asndma38jhrqsy0s22m8ws6s1mjxk7p7armxca0g0pi";
+ rev = "b1d3715e2009cb59c6b35c8cfa3357831fe28d39";
+ sha256 = "1yi1101709k3j3zmiw6hllmcfya6k04g03hk15v6h5ghc7sy4mq1";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/intero";
@@ -39531,12 +39301,12 @@
ivy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ivy";
- version = "20180315.1446";
+ version = "20180326.1231";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "swiper";
- rev = "b53ba0be297a6bf22e0fab831eb1297c986bf774";
- sha256 = "15azw9x9pbcdzkkllh4nc1wk9l5dk95l1p5qzdszfizb1kc1xjqi";
+ rev = "f8cdaa7f3c733b88865650d10d9138bcb40a9ba8";
+ sha256 = "0gfaj5ygjmvrmghyqghp7i6wf5abiayb28av4291plpyl0liz78h";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy";
@@ -39552,12 +39322,12 @@
ivy-bibtex = callPackage ({ biblio, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib, s, swiper }:
melpaBuild {
pname = "ivy-bibtex";
- version = "20180316.447";
+ version = "20180328.1147";
src = fetchFromGitHub {
owner = "tmalsburg";
repo = "helm-bibtex";
- rev = "bff3b2e7551aa6d9b2f41cc412c40f7cf3cebfe3";
- sha256 = "0dmnj7qcwaljjagb087dx6y6w4ciqjzwcfp4ssb0c2lsv63l4nbj";
+ rev = "5be84d36758ed7d5838cc5c8796a6ff427ba7043";
+ sha256 = "1pqg49mj22izilx8x9rshflpyiw1q9zrp881nasp5lvbihwydvrg";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c23c09225c57a9b9abe0a0a770a9184ae2e58f7c/recipes/ivy-bibtex";
@@ -39682,8 +39452,8 @@
src = fetchFromGitHub {
owner = "abo-abo";
repo = "swiper";
- rev = "b53ba0be297a6bf22e0fab831eb1297c986bf774";
- sha256 = "15azw9x9pbcdzkkllh4nc1wk9l5dk95l1p5qzdszfizb1kc1xjqi";
+ rev = "f8cdaa7f3c733b88865650d10d9138bcb40a9ba8";
+ sha256 = "0gfaj5ygjmvrmghyqghp7i6wf5abiayb28av4291plpyl0liz78h";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy-hydra";
@@ -39720,12 +39490,12 @@
ivy-mpdel = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, libmpdel, melpaBuild, mpdel }:
melpaBuild {
pname = "ivy-mpdel";
- version = "20180304.50";
+ version = "20180319.757";
src = fetchFromGitHub {
owner = "mpdel";
repo = "ivy-mpdel";
- rev = "d63c7ae492a3ce3288dc9f04cbc203d6a6f7c502";
- sha256 = "04bryyq67qi7zhkvvfymcjbz1w93xwmy8svp02293an9n67dirm2";
+ rev = "6948fba6872b4f9b6cca9c73b968bd8cd5aae62f";
+ sha256 = "152gmqjc4sq3210ckb974b7xqqc3admshgjnazgz32239v0l5gyk";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/ivy-mpdel";
@@ -39871,8 +39641,8 @@
src = fetchFromGitHub {
owner = "Andersbakken";
repo = "rtags";
- rev = "4310b26e69dd9569582962d0013ebc8c372730e5";
- sha256 = "03mkchsrfxf8g9c36n8b8wxb99kb3nb74x293yw9ch1rbfvw3xis";
+ rev = "a595d13f60c13d67a28467b3941d5ed558102e91";
+ sha256 = "0yp6h6nsbji7dmc9pnf9qi7zsqxrxa1bln90bn0y71xf6z11kbp4";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/ivy-rtags";
@@ -40999,12 +40769,12 @@
js2-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "js2-mode";
- version = "20180305.1647";
+ version = "20180331.2247";
src = fetchFromGitHub {
owner = "mooz";
repo = "js2-mode";
- rev = "4125b49a6982a3eb36674962160118250daf665e";
- sha256 = "0783l752jxca5mb7y44fbx366zkrnninzy06yahidsmhzxpw5bhj";
+ rev = "d76b4df4427e7bf4dfb2ba7b5dfff3c2aea52459";
+ sha256 = "0m6pv3a6ji5dxjc8wp4z40rms63y4wz5k0bbl0ayi0k6miliik0d";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/js2-mode";
@@ -41020,12 +40790,12 @@
js2-refactor = callPackage ({ dash, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, multiple-cursors, s, yasnippet }:
melpaBuild {
pname = "js2-refactor";
- version = "20180316.552";
+ version = "20180322.338";
src = fetchFromGitHub {
owner = "magnars";
repo = "js2-refactor.el";
- rev = "4bc2ff3b89c734ba7dfd9824d4ef5271ed09fb96";
- sha256 = "103kvzkvwc6g3jdwz1hin61b070zhd8q32h7v1qzgbnn1zczlplf";
+ rev = "7701772b2335d811361481bbb188da17afb9d0b8";
+ sha256 = "10hl01rn8s2q2j2m66mzg3sdaqdl6ivqr9sr1rpv1fn41dy0dlqj";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8935264dfea9bacc89fef312215624d1ad9fc437/recipes/js2-refactor";
@@ -41688,12 +41458,12 @@
kaolin-themes = callPackage ({ autothemer, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kaolin-themes";
- version = "20180314.1046";
+ version = "20180323.1118";
src = fetchFromGitHub {
owner = "ogdenwebb";
repo = "emacs-kaolin-themes";
- rev = "1576b4daca7c7504f7c91e63670d8026e9a3c927";
- sha256 = "1ycwpj3ciwahjinwq7mnb8fhph954bv11yfxjdhhfv3yhbyd2rng";
+ rev = "245a02265d06a499b600ef591fcfb9a7bf2c1b39";
+ sha256 = "05b6q9cxwj8hdmkqbisd0p49z5n9dacxw3rcs9a8nww27frnxzx3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/043a4e3bd5301ef8f4df2cbda0b3f4111eb399e4/recipes/kaolin-themes";
@@ -41898,12 +41668,12 @@
keycast = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "keycast";
- version = "20180226.542";
+ version = "20180318.1321";
src = fetchFromGitHub {
owner = "tarsius";
repo = "keycast";
- rev = "c64742ee21cdfb816d33ad0574249982e5fb10e2";
- sha256 = "0pa87l92y2yvyghjvindvdaqy4dgzwxdg87ywzv043fl1s610c2z";
+ rev = "46370b8a72922902921d3ed2fa194564568053dc";
+ sha256 = "0wgicba3v5l7a0wmmr3awf026vhf4grrn8c4i2hipi9ij3wckqzc";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/aaaf62c586818f2493667ad6ec8877234a58da53/recipes/keycast";
@@ -41919,12 +41689,12 @@
keychain-environment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "keychain-environment";
- version = "20170118.626";
+ version = "20180318.1523";
src = fetchFromGitHub {
owner = "tarsius";
repo = "keychain-environment";
- rev = "7c08e8c4c3ea4d6eaee12d710a56793771f837c5";
- sha256 = "1mnqa69f584qzb62nn01bb4nz08gi7ra8b6xr0x7aphfqzk86kzy";
+ rev = "d3643196de6dc79ea77f9f4805028350fd76100b";
+ sha256 = "0wzs77nwal6apinc39d4arj3lralv2cb9aw9gkikk46fgk404hwj";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4382c9e7e8dee2cafea9ee49965d0952ca359dd5/recipes/keychain-environment";
@@ -41982,12 +41752,12 @@
keymap-utils = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "keymap-utils";
- version = "20170614.1134";
+ version = "20180318.1537";
src = fetchFromGitHub {
owner = "tarsius";
repo = "keymap-utils";
- rev = "0130f32e5ade649dd2738206a80570e450906ef6";
- sha256 = "1bq7zihdj67j94yyv6655mcrxhz99szbf2zi64nwsl60bxz0znb8";
+ rev = "1ad766dbc111ec78b1a292da97b9bd4856cd2ff7";
+ sha256 = "0imx8zp21bm066bzdynvasylrlhw0gr8mpk2bwkz8j1y5lsp54v8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c03acebf1462dea36c81d4b9ab41e2e5739be3c3/recipes/keymap-utils";
@@ -42217,8 +41987,8 @@
src = fetchFromGitHub {
owner = "kivy";
repo = "kivy";
- rev = "002e46f7db78c02cd1c12114bd9c15815cd97d83";
- sha256 = "0h6vs7nbdi7pnh1399r2brizcnyyp7r5wlwsqss5wvm6vscyyqdm";
+ rev = "86b6e19d8a02788fe8850b690bcecdff848f3c4e";
+ sha256 = "1bgjfi6gddx2dwpisnvsig1j4zz9hdf83dy700jxy4gbsrn8d30m";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/688e2a114073958c413e56e1d117d48db9d16fb8/recipes/kivy-mode";
@@ -42549,12 +42319,12 @@
kurecolor = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "kurecolor";
- version = "20180313.1719";
+ version = "20180401.521";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "kurecolor";
- rev = "28521a8738943d7e3ceafbf4a54ac676b3ba5f3c";
- sha256 = "0nwflkrys84ik7abnr9pswk9qks4gyjd8ashbisqd82r2iljcqni";
+ rev = "a27153f6a01f38226920772dc4917b73166da5e6";
+ sha256 = "04av67q5841jli6rp39hav3a5gr2vcf3db4qsv553i23ffplb955";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/58a5ebdbf82e83e6602161bca049d468887abe02/recipes/kurecolor";
@@ -43052,12 +42822,12 @@
ledger-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ledger-mode";
- version = "20180224.1936";
+ version = "20180317.2003";
src = fetchFromGitHub {
owner = "ledger";
repo = "ledger-mode";
- rev = "3a10229bc1c12f36c9432ec3b459069a07f05498";
- sha256 = "1x0jg0vysab8592882pgbszrshr85ss66s8fsa6mhh61plxd0fw6";
+ rev = "74b242f9cfd9e3a0735c4041b3941ddb65642fc9";
+ sha256 = "1fyyhrr4600q706v05pnc25j4apmz8m52jdb1s7jnwph89zwm18c";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1549048b6f57fbe9d1f7fcda74b78a7294327b7b/recipes/ledger-mode";
@@ -43367,12 +43137,12 @@
libmpdel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "libmpdel";
- version = "20180316.122";
+ version = "20180328.2353";
src = fetchFromGitHub {
owner = "mpdel";
repo = "libmpdel";
- rev = "60239978403a802c09d52f4638d9533dac275f25";
- sha256 = "07y2mqz443n6wim1dq6wv22axkq4vv7y58ncm6cahl7jivkvkk4c";
+ rev = "abb748b6cb35de4652df80ce8539bfc63189619d";
+ sha256 = "0ccqcn85131pywzga4644f0azxrsl5ay69m6jz27zzvshs7gzzjv";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/libmpdel";
@@ -43434,8 +43204,8 @@
src = fetchFromGitHub {
owner = "janestreet";
repo = "line-up-words";
- rev = "91f5f7e38fa87bda437091f6480acfb420be808c";
- sha256 = "07vmv8m7aip8xfjcv9plcxz9q9q4wdqx6smmc57z77zlnf27k9x8";
+ rev = "bbefa954510801725070be50a7e13de6dc38f49a";
+ sha256 = "165sg8j69lxqjfx9avbcclsw6n57x4qrkhd74zbmzs35xnji9w5q";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/28ac7764a19fee2e1e2a89d95569815f1940c5e4/recipes/line-up-words";
@@ -43669,12 +43439,12 @@
lispy = callPackage ({ ace-window, emacs, fetchFromGitHub, fetchurl, hydra, iedit, lib, melpaBuild, swiper, zoutline }:
melpaBuild {
pname = "lispy";
- version = "20180315.1216";
+ version = "20180329.524";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "lispy";
- rev = "0fdc50b703bb4ee41ba76df169382d1bec93668c";
- sha256 = "127frm285hblpcp1cbjfvfzbszf9b0ik72hhlvnzw7arqns611r4";
+ rev = "1ef2ad809922aff9ff4c50ea61c39dfd1c5dd7e0";
+ sha256 = "055ckkikzgl7dwsp28h6qxbhxi0gxwg6r82g3w9y9xffjnsv2d3y";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e23c062ff32d7aeae486c01e29c56a74727dcf1d/recipes/lispy";
@@ -43711,12 +43481,12 @@
lispyville = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, lispy, melpaBuild }:
melpaBuild {
pname = "lispyville";
- version = "20180228.1154";
+ version = "20180327.1343";
src = fetchFromGitHub {
owner = "noctuid";
repo = "lispyville";
- rev = "b4291857ed6a49a67c4ea77522889ce51fb171ab";
- sha256 = "095zibzc3naknahdrnb59g9rbljy8wz9rkc7rf8avb3wxlwvxhm3";
+ rev = "647de2c3fa3e4cabc791f6d40edcd243b23c4d53";
+ sha256 = "0gqph6hbywkzikqxqfvb1fj12srns54jddhkvkrspi71s7g7cff4";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b5d96d3603dc328467fcce29d3ac1b0a02833d51/recipes/lispyville";
@@ -43984,12 +43754,12 @@
live-py-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "live-py-mode";
- version = "20180311.2027";
+ version = "20180330.1758";
src = fetchFromGitHub {
owner = "donkirkby";
repo = "live-py-plugin";
- rev = "0c9f7a09a5c58d82bad706afd2e6e236e0cf42b8";
- sha256 = "0ii724lvcfs9jnlpd6kgrxjwlfmg41chywcp8j85m49al8b6pipa";
+ rev = "ab2f9bea32dbad11a6464a4880e5487645a0f65a";
+ sha256 = "0w3kpszsrh0gj0a62iqhnhm3flmmgq0pl0d6w5r61mvlq9wck5dv";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c7615237e80b46b5c50cb51a3ed5b07d92566fb7/recipes/live-py-mode";
@@ -44506,12 +44276,12 @@
lsp-go = callPackage ({ fetchFromGitHub, fetchurl, lib, lsp-mode, melpaBuild }:
melpaBuild {
pname = "lsp-go";
- version = "20171021.336";
+ version = "20180330.255";
src = fetchFromGitHub {
owner = "emacs-lsp";
repo = "lsp-go";
- rev = "d270b7c0bd893fdc73a97763e07706830756cad2";
- sha256 = "0i9l56dmkxcycn9a2ddj1zwa9cmzb5lpj6qn5x1k9q9yfk9hsc6b";
+ rev = "00cbaac9419efc641fbe9e27ad0315d2c9a3ecb5";
+ sha256 = "1n08vr2rkasz1w1bc43fi6zqg11vg7fa2a4sgp2cdrsn5hcp8nnh";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1a7b69312e688211089a23b75910c05efb507e35/recipes/lsp-go";
@@ -44569,12 +44339,12 @@
lsp-java = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, lsp-mode, melpaBuild }:
melpaBuild {
pname = "lsp-java";
- version = "20171023.650";
+ version = "20180330.30";
src = fetchFromGitHub {
owner = "emacs-lsp";
repo = "lsp-java";
- rev = "5176f63e80e8f971563c0b98658db7dc72404369";
- sha256 = "07g259bx3vra2gf9mhxyd3qv1jb2s0lc0hndf0kvrcjdy29wwi52";
+ rev = "35ad849fdd445be127f8df59ef1bb68effd0b7ff";
+ sha256 = "0id9rjjzwybcyfa9ns3fm1py3zsm0z1l88dwlfh8pgkfjy7zkc34";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1a7b69312e688211089a23b75910c05efb507e35/recipes/lsp-java";
@@ -44632,12 +44402,12 @@
lsp-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lsp-mode";
- version = "20180314.634";
+ version = "20180330.2309";
src = fetchFromGitHub {
owner = "emacs-lsp";
repo = "lsp-mode";
- rev = "6383fb9e414dc92eca41aed6e1b643accd4271d8";
- sha256 = "0xfg3dwi06z45y1hiff42lgyv5diz69hrrlsssar47vlprscmdxr";
+ rev = "7dd173015d2c355e1dd2cc7a62ad75825e89e235";
+ sha256 = "155n00m2bk4ayimn8nwn1ikzq53d2mda550k6z7cfw9il1bk9qkz";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1a7b69312e688211089a23b75910c05efb507e35/recipes/lsp-mode";
@@ -44737,12 +44507,12 @@
lsp-ui = callPackage ({ dash, dash-functional, emacs, fetchFromGitHub, fetchurl, flycheck, lib, lsp-mode, markdown-mode, melpaBuild }:
melpaBuild {
pname = "lsp-ui";
- version = "20180314.556";
+ version = "20180330.1806";
src = fetchFromGitHub {
owner = "emacs-lsp";
repo = "lsp-ui";
- rev = "6ba9d3fe2d9c0f239ebd8a124e10bc038c76fdb3";
- sha256 = "071bdnn1hs31bd479xs6dpyb98gf20q4z2k9sv0wfxmbjzm241s3";
+ rev = "d4724353e87d5d79634d0d000aee15119899971a";
+ sha256 = "1zbywpv3dypp0r4qksaj538nfv1ml25v0q2bi2m23yh29kfs2yi4";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1e4fa7cdf71f49f6998b26d81de9522248bc58e6/recipes/lsp-ui";
@@ -44786,12 +44556,12 @@
lua-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lua-mode";
- version = "20180207.1216";
+ version = "20180323.321";
src = fetchFromGitHub {
owner = "immerrr";
repo = "lua-mode";
- rev = "7909513c056ac85fd637aece6d3773ffa3b9b6cd";
- sha256 = "0bmsvggmrvcaq6yw856dk9484w5pjpfkkgia0p4w0f5rvvnfr8j3";
+ rev = "99312b8d6c500ba3067da6d81efcfbbea05a1cbd";
+ sha256 = "04m9njcpdmar3njjz4x2qq26xk0k6qprcfzx8whlmvapqf8w19iz";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/lua-mode";
@@ -45101,12 +44871,12 @@
magit = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, ghub, git-commit, let-alist, lib, magit-popup, melpaBuild, with-editor }:
melpaBuild {
pname = "magit";
- version = "20180315.1731";
+ version = "20180401.314";
src = fetchFromGitHub {
owner = "magit";
repo = "magit";
- rev = "242ea1d84b3ae2489caa68acd3070e24d08aa00a";
- sha256 = "1vx3c0r4ci1f967whzjk6hdn11yh7k778s22fa8n522a1mj3gh7n";
+ rev = "570c2a777ec222918492255463742d44a78befee";
+ sha256 = "0741c3zd48ybfs67331hxj026lp7frzrzml0kzspbx2121d56yzh";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b0a9a6277974a7a38c0c46d9921b54747a85501a/recipes/magit";
@@ -45257,12 +45027,12 @@
magit-imerge = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "magit-imerge";
- version = "20180212.1648";
+ version = "20180329.1950";
src = fetchFromGitHub {
owner = "magit";
repo = "magit-imerge";
- rev = "79a2fccc460695df5547204ad6c05529868ba1fd";
- sha256 = "1ks17wl0h4a5rhwfzq47rf60192rxyvkwqhnp3fg9sa85b0nqc3i";
+ rev = "f337f178a1b4d2e4c1199fa02338febe216ab902";
+ sha256 = "1x0714qxryj3fg9qwnsxrksdja1q98vvjpdwn8h9anifxa0wknh6";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e78a5c27eedfc9b1d79e37e8d333c5d253f31a3c/recipes/magit-imerge";
@@ -45296,6 +45066,27 @@
license = lib.licenses.free;
};
}) {};
+ magit-org-todos = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
+ melpaBuild {
+ pname = "magit-org-todos";
+ version = "20180319.859";
+ src = fetchFromGitHub {
+ owner = "danielma";
+ repo = "magit-org-todos.el";
+ rev = "df206287737b9671f2e36ae7b1474ebbe9940d2a";
+ sha256 = "0kdp7k7jnnrkhsg0xh1c3h7iz0vgi120gf5xwl1hxy61avivnxrn";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/84480cad490cab2f087a484ed7b9d3d3064bbd29/recipes/magit-org-todos";
+ sha256 = "0yywgzm2jzvsccm9h0a0s1q8fag9dfajnznwk6iqz5pywq5mxijr";
+ name = "magit-org-todos";
+ };
+ packageRequires = [ emacs magit ];
+ meta = {
+ homepage = "https://melpa.org/#/magit-org-todos";
+ license = lib.licenses.free;
+ };
+ }) {};
magit-p4 = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, magit, magit-popup, melpaBuild, p4 }:
melpaBuild {
pname = "magit-p4";
@@ -45320,12 +45111,12 @@
magit-popup = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "magit-popup";
- version = "20180217.910";
+ version = "20180329.1302";
src = fetchFromGitHub {
owner = "magit";
repo = "magit-popup";
- rev = "48cf02b8e4d7d4a83bc22cacd64cbf4e6a266aa2";
- sha256 = "0dnfa3djgnfgig279v46xl4gz3lzjmc48nq27gdlksnkp1mwnn3j";
+ rev = "32e6da899abd6657c098534c5775fc7177047f49";
+ sha256 = "0nrvs7gwd9kn4n808akrydn7zggvy9zyk38yrcmm561kw0h0h903";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0263ca6aea7bf6eae26a637454affbda6bd106df/recipes/magit-popup";
@@ -45425,12 +45216,12 @@
magithub = callPackage ({ emacs, fetchFromGitHub, fetchurl, ghub-plus, git-commit, lib, magit, markdown-mode, melpaBuild, s }:
melpaBuild {
pname = "magithub";
- version = "20180307.446";
+ version = "20180330.1737";
src = fetchFromGitHub {
owner = "vermiculus";
repo = "magithub";
- rev = "d3fc59ddf4f3a6179386e967ad9dfcd1facb6759";
- sha256 = "1x7ql95qf8ldzf4p9zd79qmvqh1zin96xair9rhlab0zmvk3vzca";
+ rev = "aeb554d9851dca009b7850843fbd0227fa33ab21";
+ sha256 = "1yzfifdaaqpzngkdwf12951925vqx0rb1wih5s8r0lxdivw9w483";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/magithub";
@@ -45765,8 +45556,8 @@
src = fetchFromGitHub {
owner = "mandoku";
repo = "mandoku";
- rev = "90b828f94872f6bdb9eb3c06bbc2a9c20e017f22";
- sha256 = "0n5kd7fngxs3zc7scv34mfr7ppl5nkg8mnvgxwsnkghlv5a76wwp";
+ rev = "d44fd7e27c28f4cde7a739994744f3eecaab3b6f";
+ sha256 = "16rlnzcwav4f66iib9ys7zb6lmxs4hn0cr035i9xp6a8rgxjgw21";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1aac4ae2c908de2c44624fb22a3f5ccf0b7a4912/recipes/mandoku";
@@ -46783,12 +46574,12 @@
mew = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mew";
- version = "20170508.22";
+ version = "20180329.2022";
src = fetchFromGitHub {
owner = "kazu-yamamoto";
repo = "Mew";
- rev = "36b36a154dab22e112cc19675cfd73478f2a5956";
- sha256 = "01wqa5pf6zjxgsgzqw0pnp278vfd7livfgyqvc24xfqr519k2ifq";
+ rev = "abe7f589adc5eef0d53e1eeaba9ab28d01c91231";
+ sha256 = "1bn78w2mslsh02m6rzrqdm70cfgx1kgw10ifnrcslc1vn6lwvd0z";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/362dfc4d0fdb3e5cb39564160de62c3440ce182e/recipes/mew";
@@ -46829,8 +46620,8 @@
src = fetchFromGitHub {
owner = "purpleidea";
repo = "mgmt";
- rev = "ddefb4e98778d4568a96754df52e3a6a494f2ad3";
- sha256 = "17kzi4jyjbmqkkadaz0h46cjw3dxv5qcy27rpfrajhbny72x9j1h";
+ rev = "3c8d424a431abc0a19b456a8aa4fcdb739151f3d";
+ sha256 = "0kp82xy6a8vkq5l0fcjw5f5yzg33ig28kc9zv1qs7a2czswnmydx";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4cf3dd70ae73c2b049e201a3547bbeb9bb117983/recipes/mgmtconfig-mode";
@@ -47160,12 +46951,12 @@
minions = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "minions";
- version = "20180306.5";
+ version = "20180321.749";
src = fetchFromGitHub {
owner = "tarsius";
repo = "minions";
- rev = "360e433fb8a0c62a3661434241ba29d2ba7bf95c";
- sha256 = "1az01ragbqwqipp1mah963l8vvyhcm003fa6rw24mfg6wv9pq58c";
+ rev = "acac7fb0b04ffdf243775231690956d163474177";
+ sha256 = "1065asbg1h2chd34cbja2pir93r5y8gp3wv3jv6sf5csa6yqk6c7";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/769a2167d7f6dfdbbfda058ddea036f80b97d230/recipes/minions";
@@ -47265,12 +47056,12 @@
mips-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mips-mode";
- version = "20170310.2149";
+ version = "20180321.211";
src = fetchFromGitHub {
owner = "hlissner";
repo = "emacs-mips-mode";
- rev = "a13d1fc5b583a29f059f7794f2d83e59da439fa1";
- sha256 = "0ncvp52dnicy84wmnbxhm6djxhc8njrbxy6zwz2vylmy24z9948w";
+ rev = "e6c25201a3325b555e64388908d584f3f81d9e32";
+ sha256 = "0ai4ff6hinajvnp8r86s5pv0rrv8h68ncdz4k98kka1ws2f79zdf";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/024a76b83efce47271bcb0ce3bde01b88349f391/recipes/mips-mode";
@@ -47366,27 +47157,6 @@
license = lib.licenses.free;
};
}) {};
- mmm-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "mmm-mode";
- version = "20180314.729";
- src = fetchFromGitHub {
- owner = "purcell";
- repo = "mmm-mode";
- rev = "cb905bdc728fb3b5f9fdff8836d71b62bd717eab";
- sha256 = "1vyvp20g2dppnywa2clpvsvn5yac4pczj4f316dx63xp4zh7193l";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/mmm-mode";
- sha256 = "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw";
- name = "mmm-mode";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/mmm-mode";
- license = lib.licenses.free;
- };
- }) {};
mmt = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mmt";
@@ -47474,12 +47244,12 @@
mocha = callPackage ({ f, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }:
melpaBuild {
pname = "mocha";
- version = "20171217.835";
+ version = "20180321.1622";
src = fetchFromGitHub {
owner = "scottaj";
repo = "mocha.el";
- rev = "29376477b63e319875ad0969a8103f3864efb2a0";
- sha256 = "1j36ac827llm5ch58hs3yni4jfg0x5fypv5p1i30ffvb7dhn4mmc";
+ rev = "33e1b521a8a8d0225df353b51f1e8a4588ee32d0";
+ sha256 = "1ln6wz452sfxy7ii211ha9p0n3pygxyzyk0raczfla3ln8dh989q";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/39c26134ba95f277a4e9400e506433d96a695aa4/recipes/mocha";
@@ -47600,12 +47370,12 @@
mode-line-debug = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mode-line-debug";
- version = "20150307.512";
+ version = "20180318.1525";
src = fetchFromGitHub {
owner = "tarsius";
repo = "mode-line-debug";
- rev = "da44422eeb6a1f055b4ec2f822962c5162fce001";
- sha256 = "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1";
+ rev = "a0fcc394b07d2414bd6f722da10f1c7567333f6b";
+ sha256 = "04vsb0lniy90bhnqb590dap9y4wac64xz0lc2rlfczic0nrqd1aa";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b0080ab9ef1eca5dd19b3fd9af536d8aa17773a2/recipes/mode-line-debug";
@@ -47893,12 +47663,12 @@
moody = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "moody";
- version = "20180316.340";
+ version = "20180321.750";
src = fetchFromGitHub {
owner = "tarsius";
repo = "moody";
- rev = "890218c6c175f6f3efbf584dd27b8702a16b8272";
- sha256 = "05q8l32mwz6sb40lflh6vwhnqj41sfmw7dp7lw3qlhg2skwjvc29";
+ rev = "db27ba168503bd6e6c98c313e73699dc403a10aa";
+ sha256 = "1y0zg0flcv3sawyqvwilh1ysvbn1bsnkn0b2n89lj00zyb5dj5z8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/63521fe6a1e540544a07231cc94144439e8caea7/recipes/moody";
@@ -47956,12 +47726,12 @@
morlock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "morlock";
- version = "20161008.1358";
+ version = "20180318.1323";
src = fetchFromGitHub {
owner = "tarsius";
repo = "morlock";
- rev = "5845b60c705e8db88ce790b0b12cd8b917e1e5a5";
- sha256 = "1a6kwpanwcnipsq0dc99r4iiz9xa2k883syj0kbk544dxgf338xj";
+ rev = "b883d48024ddfffebe2d0dd69f5ed54c617f8834";
+ sha256 = "0xns4f39x012n7piiv6kgb45n932wxs5fp4yyq44p1mnr0m8v4y8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b6ef53bbc80edda12a90a8a9705fe14415972833/recipes/morlock";
@@ -48271,12 +48041,12 @@
mpdel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, libmpdel, melpaBuild }:
melpaBuild {
pname = "mpdel";
- version = "20180316.115";
+ version = "20180328.2359";
src = fetchFromGitHub {
owner = "mpdel";
repo = "mpdel";
- rev = "78bcaadd5471740a6c61a7e338086bf7a6ebfe54";
- sha256 = "1zgv6z3mp6bjw8akqhx6add00w9qclqf94mmqmfhbg3mqaky6zgh";
+ rev = "3786dd31a9f0a3355c967889323742cfe61f4141";
+ sha256 = "0fqdhjmywyw9yd97glrw12j962kmq062djgz2ymv6kspy2g1xv9y";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/mpdel";
@@ -48669,12 +48439,12 @@
multiple-cursors = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "multiple-cursors";
- version = "20170908.1452";
+ version = "20180320.747";
src = fetchFromGitHub {
owner = "magnars";
repo = "multiple-cursors.el";
- rev = "10752700084595bb24712c27ba70a2326302e45b";
- sha256 = "1hg693xq45bjxdla4drn6qn0np417hyvw6x3bmhfykg6lpibslz6";
+ rev = "0e49fecc18fc57e45398be886c91850b12abf112";
+ sha256 = "007qpgd6z20wa581r2zycfjzgw5dq0fawrffk4h3spf1pmjvn8m3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a5f015e6b88be2a5ded363bd882a558e94d1f391/recipes/multiple-cursors";
@@ -48690,12 +48460,12 @@
multitran = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "multitran";
- version = "20161122.1323";
+ version = "20180320.956";
src = fetchFromGitHub {
owner = "zevlg";
repo = "multitran.el";
- rev = "c0ce2e1b3706263946f9240a47c3f65ed4fc0afa";
- sha256 = "1dd82jlc865achy70ldjwkjx45p11sjj0snvf85r1dj4aywci6i5";
+ rev = "d826eff6ada28799a9ff6c8a4c2884b2ef1e36fb";
+ sha256 = "0rk8fidq8fp9k4m21wvkld3w8g13nbfpxnj10g35c16n5wa0ydkb";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d665759fa6491b77103920a75c18a561f6800c1c/recipes/multitran";
@@ -49110,12 +48880,12 @@
names = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "names";
- version = "20171012.1214";
+ version = "20180321.455";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "names";
- rev = "1d45ec50568eb2f5b55973f7ed0b48c68f9f13aa";
- sha256 = "1z0zdi9r6x6pqy2qfj9krkmbmlw9rlrgdvgn4dppfzrmrig8libr";
+ rev = "d8baba5360e5253938a25d3e005455b6d2d86971";
+ sha256 = "11wyha2q8y7bzqq3jrzix8n97ywvsibvddrahqcps1a1yqk4hzfz";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/names";
@@ -49429,7 +49199,7 @@
owner = "yyr";
repo = "ncl-mode";
rev = "602292712a9e6b7e7c25155978999e77d06b7338";
- sha256 = "0a1pwhnllyb1q45gjfhply0q2p4bk208a19z9gaf635d7ck9qhny";
+ sha256 = "0sv44hn2ylick7ywpcbij8h2vxdj06zridjdmcfgpv5d090dbl9n";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2eea3936b8a3a7546450d1d7399e0f86d855fefd/recipes/ncl-mode";
@@ -49492,7 +49262,7 @@
owner = "rsdn";
repo = "nemerle";
rev = "59b28607968a9bee060b42eac55c69c37d1c0e69";
- sha256 = "1qba0zg37irnk35pgiasyslp9l0lfiysms1bw3znscay5s20lm8m";
+ sha256 = "1anbzlm7ccgd9ss6fqfq1gyvnpnjsxi9y9q3fk6c6cwd11dyq16g";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/nemerle";
@@ -49801,12 +49571,12 @@
nimbus-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nimbus-theme";
- version = "20180309.430";
+ version = "20180401.917";
src = fetchFromGitHub {
owner = "m-cat";
repo = "nimbus-theme";
- rev = "0527060cc8b27dc26496a3a9b20ee6a8526e9efe";
- sha256 = "0iyj61870g84m6pr0vib3dj5dcrhrnwdiad6xzp8j2anf0gc23ii";
+ rev = "49f1bed0cedcc901414fbd983c3859e9c6432342";
+ sha256 = "090r2ldxql3v286gkkjvd6mrp1a0hkypm86kpsy5zd77bxz0gn3v";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fc0e6b456b76e2379c64a86ad844362c58146dc6/recipes/nimbus-theme";
@@ -50032,12 +49802,12 @@
no-littering = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "no-littering";
- version = "20180125.1539";
+ version = "20180331.155";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "no-littering";
- rev = "5156e005d59453f2608b9c38e9fe92ba8df550db";
- sha256 = "086y8y5309hhmhiq9c5yqvya0fm6j3vxba47861ckwjqyp7d3ygk";
+ rev = "b67f52072096f7e9efe98d2cc106ba39652c7545";
+ sha256 = "108zjw83rh7yfrf999lx4dd7vh5281qigrnli50q75j4qhnmsfm7";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/no-littering";
@@ -50242,12 +50012,12 @@
nordless-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nordless-theme";
- version = "20180215.454";
+ version = "20180328.516";
src = fetchFromGitHub {
owner = "lthms";
repo = "nordless-theme.el";
- rev = "aeecad74c19121fa2f68dfd85efb9a4f34e8a911";
- sha256 = "1ypwh4kz9kjxikmhgh8aac8ihnyinijsvsjwa8s4lc1j4nfzffih";
+ rev = "31cf52bfa81cf312421533ccc4a26f79b03b6976";
+ sha256 = "120d5wajjcimfzdmqn1kxav5l6ylpggg9rjhv0n65nmh829f1msm";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3de9da6cb8c1a75ff1d41a69e156c21be00713b6/recipes/nordless-theme";
@@ -50281,11 +50051,11 @@
}) {};
notmuch = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "notmuch";
- version = "20180104.1635";
+ version = "20180324.1609";
src = fetchgit {
url = "https://git.notmuchmail.org/git/notmuch";
- rev = "a9f1c7c294526afb2a2ac18003a654ea4c780b7b";
- sha256 = "0pv6rpymhf1m10011hw5plsfz18d7gm10w396dc2rm05c9szffjr";
+ rev = "c117306f2dfcdf705ef3433962d227d1cb39eb90";
+ sha256 = "1xkzy39b50xa6nzgbdkjcx0yivg6sw2pia39lli70bg76c13lc3a";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d05fbde3aabfec4efdd19a33fd2b1297905acb5a/recipes/notmuch";
@@ -50322,12 +50092,12 @@
nov = callPackage ({ dash, emacs, esxml, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nov";
- version = "20180215.1206";
+ version = "20180317.345";
src = fetchFromGitHub {
owner = "wasamasa";
repo = "nov.el";
- rev = "b0eab94b84464aa4508ccfee59af5b8df49666a2";
- sha256 = "0r4wy99kpdzs0c8b6ini8k0xixjrb48bbml3nz3sfxy3w7kb4kyb";
+ rev = "e7bb37334ca85ce0e3f5c980464f652266a11218";
+ sha256 = "1lymf4ir9kja0dpifbx230cq3n1li25kcdn3x3bh8fskiil1pqm0";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cf543955ba2d5d0074fa2a5ba176f9415f6e006d/recipes/nov";
@@ -50751,8 +50521,8 @@
version = "20171103.1548";
src = fetchgit {
url = "https://bitbucket.org/pdo/axiom-environment";
- rev = "b4f0fa9cd013e107d2af8e2ebedff8a7f40be7b5";
- sha256 = "0p2mg2824mw8l1zrfq5va1mnxg0ib5f960306vvsm6b3pi1w5kv0";
+ rev = "6842fb7f85df839acde395093647e2f91cf62fdd";
+ sha256 = "1ag5isg0bvarf86978zd2zq1mbs3ysy29ywvgapls6115ws5k9k8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf/recipes/ob-axiom";
@@ -50828,6 +50598,27 @@
license = lib.licenses.free;
};
}) {};
+ ob-clojurescript = callPackage ({ emacs, fetchFromGitLab, fetchurl, lib, melpaBuild, org }:
+ melpaBuild {
+ pname = "ob-clojurescript";
+ version = "20180318.1519";
+ src = fetchFromGitLab {
+ owner = "statonjr";
+ repo = "ob-clojurescript";
+ rev = "f6771b692af7d7aa78990161d4ef843009b9ace4";
+ sha256 = "0nca5hizg3p8f92dc330algf2ad6lf5m27n151095zd71fj3q187";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0c9ccc0d2d034944cb9688d5e184fa5df95f6b31/recipes/ob-clojurescript";
+ sha256 = "0h4qjz65k8m1ms7adrm5ypmjcjxx1nws1jmda88c4jjwjyz40jjf";
+ name = "ob-clojurescript";
+ };
+ packageRequires = [ emacs org ];
+ meta = {
+ homepage = "https://melpa.org/#/ob-clojurescript";
+ license = lib.licenses.free;
+ };
+ }) {};
ob-coffee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ob-coffee";
@@ -51209,12 +51000,12 @@
ob-prolog = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ob-prolog";
- version = "20170126.921";
+ version = "20180328.1034";
src = fetchFromGitHub {
owner = "ljos";
repo = "ob-prolog";
- rev = "e70a9f9b96fd0fedcc30de7768c870f4b0ee1ae9";
- sha256 = "0vpxnvvmfxqwq1i6wl1gv76dgavcl4sg3f1ma42sq2bldpdn8am7";
+ rev = "8e34b273730423f267138e9f9a0abe7718f3a5fa";
+ sha256 = "0kn4dph1wfigh9l8r8ghxgnixjxawfh335kh4ypab1hb528pdq2n";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fb87868cd74325f0a4a38c5542c264501000951d/recipes/ob-prolog";
@@ -52310,12 +52101,12 @@
org-attach-screenshot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-attach-screenshot";
- version = "20160928.258";
+ version = "20180330.1139";
src = fetchFromGitHub {
owner = "dfeich";
repo = "org-screenshot";
- rev = "1aabac1a2885d31a3d862cbeb31a635c3d68b9ab";
- sha256 = "04fylcv782sl00g5y30hjcg9z8q00lkzf89wq9g9za6dx013z33q";
+ rev = "5eeb2eef690a02b95dfe171d38ec66c954719d65";
+ sha256 = "10mzlqk7in6gjh6x9q0gc5slx536hc2dz2kndm77f8qaf9z7hw79";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f545cd8d1da39e7fbd61020e178de30053ba774b/recipes/org-attach-screenshot";
@@ -52436,12 +52227,12 @@
org-brain = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-brain";
- version = "20180223.1455";
+ version = "20180319.353";
src = fetchFromGitHub {
owner = "Kungsgeten";
repo = "org-brain";
- rev = "22eacef9fd0e66508888016b5d33b6ce85727573";
- sha256 = "16mz2vv3p4x1x400ylx5321svpczsydzkkb93j21cmk3b6a1jibg";
+ rev = "3749aa100569e9d32609aa8368f12ced4dc1f757";
+ sha256 = "0mld8lalq9lkihfv0vr9qsihdav6anvamihlcg2d69kcg088yqgj";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/47480fbae06e4110d50bc89db7df05fa80afc7d3/recipes/org-brain";
@@ -52524,8 +52315,8 @@
src = fetchFromGitHub {
owner = "IvanMalison";
repo = "org-projectile";
- rev = "8cec702f602b18da90b3d6207888a887b8e07750";
- sha256 = "1prfkkfsbmprcq4irsj1qgixgwrsddz2zb9gwl8r3rq8qwfn9lhn";
+ rev = "53c193a209d663b33de71fe7d35eb40c0d0e15b6";
+ sha256 = "0kcbcj1nz2asi1v1nbqa2lp1qjg90nbdz2913m8c6dnwhff8rr0j";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6760daac1ef9d9d7ba07e2fc9668873020f901f1/recipes/org-category-capture";
@@ -52541,12 +52332,12 @@
org-chef = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-chef";
- version = "20180304.1104";
+ version = "20180325.628";
src = fetchFromGitHub {
owner = "Chobbes";
repo = "org-chef";
- rev = "94427d5e48cadce45a906de16fff42676903fd9f";
- sha256 = "10hwbfhjz2bwiralgsqwzhjgjzfil51gs8qhig8vkbxq9brhcgd4";
+ rev = "36fc59b4181456d7bd4c8227c34edbad600b08f3";
+ sha256 = "0yvrxl24a0q4wbhmx2azsylwapih0xf6a5rhch3ppzhy4vyrdjcf";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/23b9e64887a290fca7c7ab2718f627f8d728575f/recipes/org-chef";
@@ -52772,12 +52563,12 @@
org-download = callPackage ({ async, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-download";
- version = "20180315.1220";
+ version = "20180327.1429";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "org-download";
- rev = "3f568b163a8a26f22a9b2d9a90b85fcea89c67f2";
- sha256 = "1whp3cpdyxrip5id9ddajy0k04b81hrq12j9w5ir8244m1k5kkf4";
+ rev = "a57beffd0f09b218a9487d1750960878c1d5b12c";
+ sha256 = "1disqqfwjl366kv6xgc28w7zbc4xl9a0jmdj7w27mb00sxzfk3vb";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/edab283bc9ca736499207518b4c9f5e71e822bd9/recipes/org-download";
@@ -52793,12 +52584,12 @@
org-dp = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-dp";
- version = "20160326.603";
+ version = "20180311.123";
src = fetchFromGitHub {
owner = "tj64";
repo = "org-dp";
- rev = "d9a18e8fb04c94d5d35236b37ee7db0afcb7d580";
- sha256 = "0misv6g1cql7qc3xhy56cn79pzvn811fvhvivvq0bdx4g0hpp2fg";
+ rev = "334fefd06eb925c86b1642787b2a088aa0932bab";
+ sha256 = "0cjx9428ypadvrlbfnfj6zwnfhdcay82q2f9x8v5gaffa6wrr7j3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7f337375082da316ed07b8ce9c775b484b8cdbf6/recipes/org-dp";
@@ -52961,12 +52752,12 @@
org-fancy-priorities = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-fancy-priorities";
- version = "20180221.1545";
+ version = "20180328.1631";
src = fetchFromGitHub {
owner = "harrybournis";
repo = "org-fancy-priorities";
- rev = "0998b27c02e81bc554e76fde3b7cac4aced2210e";
- sha256 = "0nlazpgfrv67vbb5w2pcwhsxf296f62xgw1zajrkp16gvj63hry6";
+ rev = "819bb993b71e7253cefef7047306ab4e0f9d0a86";
+ sha256 = "13cyzlx0415i953prq6ch7r5iy23c1pz116bdxi5yqags4igh4wv";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/712902ae1cf967ceb2052266ed3244e92998f8a7/recipes/org-fancy-priorities";
@@ -52979,26 +52770,6 @@
license = lib.licenses.free;
};
}) {};
- org-fstree = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "org-fstree";
- version = "20090723.819";
- src = fetchgit {
- url = "http://repo.or.cz/r/org-fstree.git";
- rev = "24e305c6443be9f45198185772eecfddc390a9ce";
- sha256 = "0ydsmjjc64r50qilgazmv5gzdv67vszlid67wskc2zii5ss0y01m";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4327b4dd464ebb00c2acdd496274dedf912cdf92/recipes/org-fstree";
- sha256 = "11ddkfddmsy26mmhgw24757f753ssh056v9vxn89pxp4qypxidfz";
- name = "org-fstree";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/org-fstree";
- license = lib.licenses.free;
- };
- }) {};
org-gcal = callPackage ({ alert, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org, request-deferred }:
melpaBuild {
pname = "org-gcal";
@@ -53128,12 +52899,12 @@
org-journal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-journal";
- version = "20180118.31";
+ version = "20180327.819";
src = fetchFromGitHub {
owner = "bastibe";
repo = "org-journal";
- rev = "1d6f7ddf3baa296bf7ca7ed008f0d86c10397021";
- sha256 = "02r4h7l8mj5blxwsiv0zyfiwagmxckxdsi39vbx2kxjvxasv4zw3";
+ rev = "d225d093e2e87574b67d79206764b6cf5cf7a00e";
+ sha256 = "0c8bms5pypwk08cv8a6pchrxf5nx97sygpa4pmaxlvccsa45n8a2";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/org-journal";
@@ -53233,12 +53004,12 @@
org-mime = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-mime";
- version = "20180309.2241";
+ version = "20180313.524";
src = fetchFromGitHub {
owner = "org-mime";
repo = "org-mime";
- rev = "e35c367e7dc1449e63916e424d4e7349c91f8c1d";
- sha256 = "0yyxji50cvpbrmwwqmsv48556yzd7537zzlbpng6fgsq93iq62v5";
+ rev = "10098b001c3926f0fb128c85fc64d9016a195868";
+ sha256 = "0xb37lg7rlgfwkhvwwsb9wv7k5yig8n8bnxq97hxrbx56dh70mhr";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/521678fa13884dae69c2b4b7a2af718b2eea4b28/recipes/org-mime";
@@ -53359,12 +53130,12 @@
org-noter = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-noter";
- version = "20180307.1029";
+ version = "20180331.1231";
src = fetchFromGitHub {
owner = "weirdNox";
repo = "org-noter";
- rev = "abeb48573a62b62c57f63fc89fff31c4d47141e9";
- sha256 = "17pdx7kc3zk5yx4i10lv421zqv6a9xn37gzyd1h4vljjgs81j4yz";
+ rev = "32cdf41079ca67c5906a10215eb7fbaefebab994";
+ sha256 = "11hhw8fk1qn63hwdx49h9h58p2hmxhmni6qdazd0ipk68finmy8f";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4a2bc0d95dc2744277d6acbba1f7483b4c14d75c/recipes/org-noter";
@@ -53601,8 +53372,8 @@
src = fetchFromGitHub {
owner = "IvanMalison";
repo = "org-projectile";
- rev = "8cec702f602b18da90b3d6207888a887b8e07750";
- sha256 = "1prfkkfsbmprcq4irsj1qgixgwrsddz2zb9gwl8r3rq8qwfn9lhn";
+ rev = "53c193a209d663b33de71fe7d35eb40c0d0e15b6";
+ sha256 = "0kcbcj1nz2asi1v1nbqa2lp1qjg90nbdz2913m8c6dnwhff8rr0j";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9d7a7ab98f364d3d5e93f83f0cb3d80a95f28689/recipes/org-projectile";
@@ -53622,8 +53393,8 @@
src = fetchFromGitHub {
owner = "IvanMalison";
repo = "org-projectile";
- rev = "8cec702f602b18da90b3d6207888a887b8e07750";
- sha256 = "1prfkkfsbmprcq4irsj1qgixgwrsddz2zb9gwl8r3rq8qwfn9lhn";
+ rev = "53c193a209d663b33de71fe7d35eb40c0d0e15b6";
+ sha256 = "0kcbcj1nz2asi1v1nbqa2lp1qjg90nbdz2913m8c6dnwhff8rr0j";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6760daac1ef9d9d7ba07e2fc9668873020f901f1/recipes/org-projectile-helm";
@@ -53657,6 +53428,27 @@
license = lib.licenses.free;
};
}) {};
+ org-radiobutton = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "org-radiobutton";
+ version = "20180321.1535";
+ src = fetchFromGitHub {
+ owner = "Fuco1";
+ repo = "org-radiobutton";
+ rev = "15777e9b389cd93eab6c3c2f967e64a5b7f247b0";
+ sha256 = "1mysrs3m9bmw66r4hrh2bssfhgp56rbhnkcc4rm4d5slsbak10fz";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/105043d8cfcb62ed89ddf9870f615519e6f415e7/recipes/org-radiobutton";
+ sha256 = "16ly42iyfh7d34yz4bvdpj3zrlwkw3kmh82gwr25a05mlsdc1d93";
+ name = "org-radiobutton";
+ };
+ packageRequires = [ dash emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/org-radiobutton";
+ license = lib.licenses.free;
+ };
+ }) {};
org-random-todo = callPackage ({ alert, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-random-todo";
@@ -53768,15 +53560,15 @@
license = lib.licenses.free;
};
}) {};
- org-ref = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, helm-bibtex, hydra, ivy, key-chord, lib, melpaBuild, pdf-tools, s }:
+ org-ref = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, helm-bibtex, htmlize, hydra, ivy, key-chord, lib, melpaBuild, pdf-tools, s }:
melpaBuild {
pname = "org-ref";
- version = "20180310.1908";
+ version = "20180330.1356";
src = fetchFromGitHub {
owner = "jkitchin";
repo = "org-ref";
- rev = "b4bbc9774c741c299a3a232036342f89905910c8";
- sha256 = "1ddksbznxq7cpksiqm4cx2k2c442vrm8dsb1ii6xqvnm32wsx4bf";
+ rev = "85b8e0ac858ca2c37844e606a81bff428848adb4";
+ sha256 = "1bbggn2kg7jw3bxmyyvr6bnlmiq0ylz76kyywfr8frbwic6g3rzc";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/550e4dcef2f74fbd96474561c1cb6c4fd80091fe/recipes/org-ref";
@@ -53789,6 +53581,7 @@
f
helm
helm-bibtex
+ htmlize
hydra
ivy
key-chord
@@ -53845,12 +53638,12 @@
org-rich-yank = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-rich-yank";
- version = "20180301.401";
+ version = "20180325.1218";
src = fetchFromGitHub {
owner = "unhammer";
repo = "org-rich-yank";
- rev = "5d9bc7f474187013a8e1cdc5fc3dc86c41385873";
- sha256 = "144cyi5k0fjnzdrp9hvhnlxshxhf6jhagiinzaw5aklswz0qs1w5";
+ rev = "ba7eb7ba8d25dbf053b1f746061a4442375da437";
+ sha256 = "0c6prl8wk9cf9rnr9ymwj50zv0gahbrwqjdqn0a46sflsaycb07i";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1261823d88459b6ac42d6c55c157a326173663df/recipes/org-rich-yank";
@@ -53908,12 +53701,12 @@
org-send-ebook = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, seq }:
melpaBuild {
pname = "org-send-ebook";
- version = "20180314.14";
+ version = "20180401.1015";
src = fetchFromGitHub {
owner = "stardiviner";
repo = "org-send-ebook";
- rev = "c41b6a69a16e73dd64ff1c7353d402e03a2003e2";
- sha256 = "0j962vyvgavs9h6grayy4c6frba3ksv5n8rklgicwj4zx53b0blf";
+ rev = "efa80f3c1a26347097a16eca4dda2610627fcdf0";
+ sha256 = "097cpr9v0c03117z76cy0b9faq3zjvi45anvgrw4bkbgs5mh9x2l";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/646106cf43649544056285aef8c4035b6e5bbbdb/recipes/org-send-ebook";
@@ -53929,12 +53722,12 @@
org-static-blog = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-static-blog";
- version = "20170706.646";
+ version = "20180323.128";
src = fetchFromGitHub {
owner = "bastibe";
repo = "org-static-blog";
- rev = "9dea733006ae53902e6ec91fb11ff058229afe84";
- sha256 = "0gyhhcr54myg0r4pjc5z4mkmpc2xnw3ymykz3m0sm589q1i1ym34";
+ rev = "8ea4456b0ca5642fff5868e54fe23f3b5109a579";
+ sha256 = "0zh1vb6q8xwaawizv9rq86ahpvxsmrjrzhgh6k4xv6rx8k7k1i7g";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e0768d41a3de625c04ac8644ef2e05f17ee99908/recipes/org-static-blog";
@@ -54206,8 +53999,8 @@
src = fetchFromGitHub {
owner = "takaxp";
repo = "org-tree-slide";
- rev = "dff8f1a4a64c8dd0a1fde0b0131e2fe186747134";
- sha256 = "153bg0x7ypla11pq51jmsgzfjklwwnrq56xgpbfhk1j16xwz9hyf";
+ rev = "9f1b898223f3dafd15a384e0d06da8f09bd55cb0";
+ sha256 = "097p6wyx8fabwmsg8nvv8zlmk6fr8wgbckn5pz8vdzjwp0kbi3s5";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6160c259bc4bbcf3b98c220222430f798ee6463f/recipes/org-tree-slide";
@@ -54223,12 +54016,12 @@
org-trello = callPackage ({ dash, dash-functional, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred, s }:
melpaBuild {
pname = "org-trello";
- version = "20180310.2352";
+ version = "20180330.2331";
src = fetchFromGitHub {
owner = "org-trello";
repo = "org-trello";
- rev = "c38c36159cdeb2348c4e9ca75246aa9cc1dfd76c";
- sha256 = "02gx3kv4mkij69ln8x8wf9n28x17pbb4kv85v78d3lxph7ykqimc";
+ rev = "e2e8a3d45057645e4caae7d46a79d2d9be2894bd";
+ sha256 = "12yw54hg1lhfxw6mvxjsvbiv7cg1zwm3ccsl7g127vbf0yp2dhrl";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/188ed8dc1ce2704838f7a2883c41243598150a46/recipes/org-trello";
@@ -54526,12 +54319,12 @@
orgit = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild, org }:
melpaBuild {
pname = "orgit";
- version = "20180217.1320";
+ version = "20180318.1301";
src = fetchFromGitHub {
owner = "magit";
repo = "orgit";
- rev = "976f3c7d25ad92c57341b52dad9af89b49c37f0c";
- sha256 = "0m8mghh0iydbvlsrg0zd2xajfhdxgxk79dm4gwircrh6zv8194ax";
+ rev = "d909f92d3b1b42184143fd5e6d4c6a2762477ab7";
+ sha256 = "1jdc874bxkpbfpllak3vmfsn82p930s565bzff341vzv7aw2528c";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/73b5f7c44c90540e4cbdc003d9881f0ac22cc7bc/recipes/orgit";
@@ -54547,12 +54340,12 @@
orglink = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "orglink";
- version = "20161104.1800";
+ version = "20180318.1323";
src = fetchFromGitHub {
owner = "tarsius";
repo = "orglink";
- rev = "50debcf3508d2252bdce35c8822af1b3a81fd2dd";
- sha256 = "1b86c4pyc7cs02lrhnk93gh3czp9wajm17wd9mhszcbdn996rnhz";
+ rev = "e9e90e16ddaceaf99c9b251a215d6338b9762b4d";
+ sha256 = "0vqyidi54rbpqwqi6iv1xaqkr9gfr0pfhr1msxckh8jy6avgy319";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/be9b8e97cda6af91d54d402887f225e3a0caf055/recipes/orglink";
@@ -54985,6 +54778,27 @@
license = lib.licenses.free;
};
}) {};
+ outlook = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "outlook";
+ version = "20180330.458";
+ src = fetchFromGitHub {
+ owner = "asavonic";
+ repo = "outlook.el";
+ rev = "77f5199f573a67700cb8d4f736cea5b6bda8ab0c";
+ sha256 = "0rhivgwqnfdvcl5vh9lmg6yaz36bhkvfmj590qxcq18zj1529mfh";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c5ce3e6800213b117578a1022f25407f2ec1604f/recipes/outlook";
+ sha256 = "0yq9zl7dr8kkm4rps5np4dwvjfhzsxq9wd1af7zwcmms4l3qry6k";
+ name = "outlook";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/outlook";
+ license = lib.licenses.free;
+ };
+ }) {};
outorg = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "outorg";
@@ -55261,12 +55075,12 @@
ox-hugo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ox-hugo";
- version = "20180314.2012";
+ version = "20180328.2041";
src = fetchFromGitHub {
owner = "kaushalmodi";
repo = "ox-hugo";
- rev = "8c792bd2c4899fae6753689198599c8c730fc116";
- sha256 = "1d6ni4i36srnh4b8f2v1279z67k1rd877ha8rw6a44vjyanzxcvd";
+ rev = "ab0ccf2e8e0298d919d8dd497e2631376e1f1ca9";
+ sha256 = "1wz34ip94kn4b6igbr9nph0nysqmfr2dg6ysxkk3xn9bpzms6gq4";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1e1240bb7b5bb8773f804b987901566a20e3e8a9/recipes/ox-hugo";
@@ -55681,12 +55495,12 @@
package-build = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "package-build";
- version = "20180205.1521";
+ version = "20180330.2032";
src = fetchFromGitHub {
owner = "melpa";
repo = "package-build";
- rev = "d6f926e3688d1c8d3c9d06cbfdd5a31f85accf00";
- sha256 = "072dlzskl0w4xcnrzgy36gzn4sla4hw84yr82rv04akb9mg4ya9m";
+ rev = "50c41597d15fb5f39ec65d8009e10ea8fb11d67a";
+ sha256 = "0l84iilg7jmr5q16h1jjmssq68f9xz45kvhgdspvrh6j723js12l";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/948fb86b710aafe6bc71f95554655dfdfcab0cca/recipes/package-build";
@@ -55723,12 +55537,12 @@
package-lint = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "package-lint";
- version = "20171201.1903";
+ version = "20180323.1852";
src = fetchFromGitHub {
owner = "purcell";
repo = "package-lint";
- rev = "9abfb14d9ad903ef73895a27b9964b5e6023d752";
- sha256 = "0brd8zhiyn9kpbc0za455vjbb5v49i2pj3hhj1lbdcghzwq39jvi";
+ rev = "5ac4122cf1e24649b387bec8630740cd4ec85b72";
+ sha256 = "030jcapghpf1smmsb17q79dmgfmjqh5x3kvzlqcgmcgfdj2jvx7m";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9744d8521b4ac5aeb1f28229c0897af7260c6f78/recipes/package-lint";
@@ -55783,22 +55597,22 @@
license = lib.licenses.free;
};
}) {};
- package-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ package-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, restart-emacs }:
melpaBuild {
pname = "package-utils";
- version = "20170222.2352";
+ version = "20180317.1134";
src = fetchFromGitHub {
owner = "Silex";
repo = "package-utils";
- rev = "3cbbc2ff50ecb5e6fb20a309cb07d74ca10d4d42";
- sha256 = "1bp04c2ljcgxf590yv05wzvqz7b7ih22h343g7rwdd5l3cli43km";
+ rev = "652531caf1a1df916d2185e7f47085bd0509c940";
+ sha256 = "0lmz4szrfs2445q8nyqnh9hgm69bwdf7q78sfqyxiw1fqaj205si";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a1bb884a0299408daa716eba42cb39f79622766c/recipes/package-utils";
sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r";
name = "package-utils";
};
- packageRequires = [];
+ packageRequires = [ restart-emacs ];
meta = {
homepage = "https://melpa.org/#/package-utils";
license = lib.licenses.free;
@@ -55807,12 +55621,12 @@
packed = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "packed";
- version = "20170819.942";
+ version = "20180318.1029";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "packed";
- rev = "94ea12b9d44bfa42c28d0548199f2fcd19e4aa6a";
- sha256 = "1n80y5pqaibix71fnw3cxmq66frmqfji2b2y170jszmrxi03kwxm";
+ rev = "c41c3dfda86ae33832ffc146923e2a4675cbacfa";
+ sha256 = "1272xmb3l8ddfijqzci3x0kxwibqb0sbkci4rbcv9ba9hpxp4d1v";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/packed";
@@ -55975,12 +55789,12 @@
pamparam = callPackage ({ emacs, fetchFromGitHub, fetchurl, hydra, lib, lispy, melpaBuild, worf }:
melpaBuild {
pname = "pamparam";
- version = "20180122.1325";
+ version = "20180321.1041";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "pamparam";
- rev = "f531518bd9952d39af8605f461fc43aa6b6fa5f4";
- sha256 = "110jnj7yp6j2qj5ar72c5kgkpj43b4b82ipq725xivk6zsvrhicr";
+ rev = "bc3df2f1190c773f03fdd43fac5125da37f03de9";
+ sha256 = "00jdc99gm8qplhs6jwlr6daa6rkpazbs1wicbdbiag9g7h8y7q5h";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/067b5e3594641447478db8c1ffcb36d63018b1b2/recipes/pamparam";
@@ -56084,8 +55898,8 @@
src = fetchFromGitHub {
owner = "cadadr";
repo = "elisp";
- rev = "3059378379a6fbd0363cd14fe6227c27739af4e1";
- sha256 = "1hnph9x5981rfqc5p5imiah2cd7fr1f3bbs2x23z7lckaqa5v0g7";
+ rev = "8118551aaf0472900cdfdc13449b55b33ab56289";
+ sha256 = "153cch134c6rvqfcpikidlpxcbxk8nys2ig1xxpbn9ncn4fqkaf3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a7ea18a56370348715dec91f75adc162c800dd10/recipes/paper-theme";
@@ -56225,12 +56039,12 @@
paren-face = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "paren-face";
- version = "20180124.352";
+ version = "20180318.1325";
src = fetchFromGitHub {
owner = "tarsius";
repo = "paren-face";
- rev = "166975683225367c866e6ae6f6acb88d24e21a35";
- sha256 = "02mh8w2na6qa94p3bh6pvdvmg36p2vrbp5hpjnwjcayrb92dskgy";
+ rev = "a45d111153a76c481fa0b36d6172ac90e073dfc4";
+ sha256 = "1cr0vnm57lxs48z17ddcv7qlfvks7wdsp01zsw0c7i3h5ajl8myp";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d398398d1d5838dc4985a06515ee668f0f566aab/recipes/paren-face";
@@ -56897,12 +56711,12 @@
pcomplete-extension = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pcomplete-extension";
- version = "20140604.947";
+ version = "20180322.28";
src = fetchFromGitHub {
owner = "thierryvolpiatto";
repo = "pcomplete-extension";
- rev = "839740c90de857e18db2f578d6660951522faab5";
- sha256 = "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6";
+ rev = "3d7dac3de9e81604e4ed93c344cf4d44ebae3bf7";
+ sha256 = "1qrlp066rbcafn67mmbg48fkxw7ai6ni8b3asmm8w623xhd63v1g";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6cb8a938418f84a5b0ede92e84a516f38e4b1011/recipes/pcomplete-extension";
@@ -57086,11 +56900,11 @@
pelican-mode = callPackage ({ emacs, fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pelican-mode";
- version = "20180217.317";
+ version = "20180401.148";
src = fetchgit {
url = "https://git.korewanetadesu.com/pelican-mode.git";
- rev = "524c001eed50ceee40095d6680787e435b9d3624";
- sha256 = "1559x7wxmflgzjykkbdsgw61zayswpil940n71979qkgqzcc5ggq";
+ rev = "c48bd6c3b7369787a09923c53b452d9ec460399c";
+ sha256 = "0b5sizmbf05kiwrq0n45scg95jg33qar70gi2vsqp4aaqryipccs";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/aede5994c2e76c7fd860661c1e3252fb741f9228/recipes/pelican-mode";
@@ -57546,12 +57360,12 @@
phi-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "phi-search";
- version = "20170310.237";
+ version = "20180321.1829";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "phi-search";
- rev = "a81c4ea203fcb572f6cc37cc658d6b01453bef9d";
- sha256 = "1z3640walrdk2c90hj47xvlpm6xd5iblxvn7i16krdfz735i4rr5";
+ rev = "9a089b8271cb1cff9640848850298c9ec855286c";
+ sha256 = "1gr5plcbrfdc4pglfj905s89hf8x0kc083h30wcnd81bnw9jwz1x";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2f0274300c33f19ca6f868e1d570ffee513dbdf7/recipes/phi-search";
@@ -57777,12 +57591,12 @@
php-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "php-mode";
- version = "20180309.822";
+ version = "20180328.1051";
src = fetchFromGitHub {
owner = "ejmr";
repo = "php-mode";
- rev = "b67b34c43c6e937b70fcf87cc324936ef117093b";
- sha256 = "0z3byyy5wd2h9ab8wnhyfj3xymwz3dxq37caxjfyspzsgaviwq4c";
+ rev = "2c83fbe9af2ac07806e973ed6baa34582fb70f4e";
+ sha256 = "18a8q4jfdz2hh1dswv069qzqh68d2qzal7mprj64kz17a1p62d3w";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7cdbc35fee67b87b87ec72aa00e6dca77aef17c4/recipes/php-mode";
@@ -58369,8 +58183,8 @@
src = fetchFromGitHub {
owner = "skuro";
repo = "plantuml-mode";
- rev = "fce628885b54635b0287b3337626752b2725369d";
- sha256 = "1pcxl00iwhrsi57s6gbf3bch00pkdxbg46p8xryn1w5r16xzd9pm";
+ rev = "cfb408fc840dae80a7d05d5648d27c18f04c00a9";
+ sha256 = "1w2f953glxqfg8ilv537qznxj4kv4ddi011wyhkn27sv4wnky82c";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/38e74bb9923044323f34473a5b13867fe39bed25/recipes/plantuml-mode";
@@ -58491,12 +58305,12 @@
playground = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "playground";
- version = "20180309.1614";
+ version = "20180319.243";
src = fetchFromGitHub {
owner = "akirak";
repo = "emacs-playground";
- rev = "0781674b0d65b287d253f143c2bc51ee65ec5959";
- sha256 = "0jb8qkj2hbnz4j5xzky1n9kq035xzqadssa3s9zwm43cyn6nn6f7";
+ rev = "f1b87ba65d8be28c4a8fc0fd8480d2da00e52406";
+ sha256 = "0fqja170pbdrj1lz8dfpi53l07bf4vk18maa1kzcd2nyd569xxvi";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f062a74fe1746129879ad19c1735621f58509d33/recipes/playground";
@@ -58638,8 +58452,8 @@
version = "20170419.303";
src = fetchgit {
url = "https://git.savannah.gnu.org/git/gettext.git";
- rev = "007245c860654e88d5228b341c9066e84f035903";
- sha256 = "091p7m0vs96wywysqbagirpkyn1iw1g4b5afnpv9ng0x4fvilq62";
+ rev = "071d155f83e2c9c917db43f5452822a6dc30250a";
+ sha256 = "1whbjblizl478gc7yc2yj0spwskzq8d9inpxian441a6jj9biah3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/po-mode";
@@ -58767,6 +58581,27 @@
license = lib.licenses.free;
};
}) {};
+ poet-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "poet-theme";
+ version = "20180324.1909";
+ src = fetchFromGitHub {
+ owner = "kunalb";
+ repo = "poet";
+ rev = "53e0ec4006d5b5d24f263e1cfd1c1154c47bac9e";
+ sha256 = "1qizsg2mh8nx8wx5ibd2fnpdxxiq57b02vrcx71pnbdqi6fv7zr9";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/40bbe29dee56f7989d8e87c03f4842e2b191acc3/recipes/poet-theme";
+ sha256 = "0pllyp4spj30g6ihzc91hzvnrvcg2zb49adj8wcmbzvq3hxnvls1";
+ name = "poet-theme";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/poet-theme";
+ license = lib.licenses.free;
+ };
+ }) {};
point-pos = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "point-pos";
@@ -58896,12 +58731,12 @@
pomidor = callPackage ({ alert, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pomidor";
- version = "20180312.828";
+ version = "20180320.1252";
src = fetchFromGitHub {
owner = "TatriX";
repo = "pomidor";
- rev = "b15219a7a31adeebc80a060c42aed36d4b48d149";
- sha256 = "0xfl08cfgnms404vmc64mdihp49z00cyqyihk7i4fp1ag8cbja1k";
+ rev = "30004b21714b53d22041514d905e1876c5cedd4b";
+ sha256 = "0nis9dx73y90lqnh24j5ywrdmjf7aa1jrdgwxm53wjl4sfmk85r1";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4e0d4f313081594df23f357c40feb456847d8bd0/recipes/pomidor";
@@ -59316,12 +59151,12 @@
powerline = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "powerline";
- version = "20180115.1942";
+ version = "20180321.1948";
src = fetchFromGitHub {
owner = "milkypostman";
repo = "powerline";
- rev = "2933f2b6d00a8cab39f73fc6231fac311cba5b29";
- sha256 = "0fxkz7rqj057bnxfqgh3i88waqxnla05dqw20v8njf9swchry0ya";
+ rev = "af5ef31a33c3589a9be0b2a55a2741582e605efd";
+ sha256 = "0zynj4pl9717xbj8g1mac3haiybdndb034bnqk03bb42iyrwy767";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f805053cd4dd9ed53ee0df17ad69429bc62325bb/recipes/powerline";
@@ -59673,12 +59508,12 @@
prodigy = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "prodigy";
- version = "20180312.325";
+ version = "20180329.1357";
src = fetchFromGitHub {
owner = "rejeep";
repo = "prodigy.el";
- rev = "67b74d1354616f4761acd947fb4f89c6c8bd758e";
- sha256 = "0pnkw65kr046368xd29rpfbf4x7qd9h430knpy8rgf4czqqvl3hw";
+ rev = "a07c611862ae6dad6cdf9186a7813e701dc6e072";
+ sha256 = "1addcwmgd2i9jp327ccsw5vgiixw6k1jks2fwg328llln0gv18ll";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/prodigy";
@@ -59882,12 +59717,12 @@
projectile = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }:
melpaBuild {
pname = "projectile";
- version = "20180316.2010";
+ version = "20180324.2226";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "projectile";
- rev = "981ef7de7cd4d2465e95ae649993561783d85bc8";
- sha256 = "0za8a1p05xqss2n4y1pvmr686xzaqwqsnp8myc8d3xqpl5412ha3";
+ rev = "fba757dcee67479e579c164ec0f4f930793de6cd";
+ sha256 = "1c3lvq9n501dcvxa8xz9cg4hm7bazbamb5rbfxlqjk9b4gbf8hby";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/projectile";
@@ -59987,12 +59822,12 @@
projectile-rails = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, inf-ruby, inflections, lib, melpaBuild, projectile, rake }:
melpaBuild {
pname = "projectile-rails";
- version = "20171117.730";
+ version = "20180327.433";
src = fetchFromGitHub {
owner = "asok";
repo = "projectile-rails";
- rev = "348b11b237e87d87e784ab7accaef2bf97664bd6";
- sha256 = "1swlbndipa48hd6mhmgzi1x3bapdzn4cwd7j7a13wxfcj9s1jm9x";
+ rev = "b5e516ef6a336bde32e4594408be15fd96b07e1b";
+ sha256 = "06qwhf04wy67ils5wn9hyc1z2j1pq0kb1mvxkxzqglwdnaca00l7";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b16532bb8d08f7385bca4b83ab4e030d7b453524/recipes/projectile-rails";
@@ -60012,8 +59847,8 @@
src = fetchFromGitHub {
owner = "nlamirault";
repo = "ripgrep.el";
- rev = "1f4338eeeb4bb3084a4b43762fa69a2c93ddff85";
- sha256 = "0im6l8gn3msl5jks3qif0jmi358kj46a50p2lirpjh6rnilmnanq";
+ rev = "a1f8f030bf5daea92dd13b953720a6c13dd3557c";
+ sha256 = "0mpysjcbw9qxy1lcwsd2rqf72xahpdpn88xcq0cnk1y2jam8gjkf";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/195f340855b403128645b59c8adce1b45e90cd18/recipes/projectile-ripgrep";
@@ -60327,8 +60162,8 @@
src = fetchFromGitHub {
owner = "google";
repo = "protobuf";
- rev = "ab95b1bc1eb964ee5f1fb48297344c5d37d35191";
- sha256 = "0abx3gs9x081wn2p3pc7v2s9rfyv0a1fmrzfwlrv2i4cx1axafig";
+ rev = "7bf47a6b5d10382a4b427677cf7ca9288f4e2833";
+ sha256 = "1rmq32csqd5zxhw7v9c8hd08ylr84s2dgnci0xss73s5cfyrd0g3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/protobuf-mode";
@@ -60414,22 +60249,22 @@
license = lib.licenses.free;
};
}) {};
- psession = callPackage ({ async, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ psession = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "psession";
- version = "20180314.205";
+ version = "20180331.1138";
src = fetchFromGitHub {
owner = "thierryvolpiatto";
repo = "psession";
- rev = "6f7c8d6807c76fd351380b2f6f273d800736c5ec";
- sha256 = "1wc4fx5wqcqj2xzcch0wg5xr5vjdlqm04ljwz3cqv5ipdvqjz80z";
+ rev = "1360c92372fc2cdb05a3a06dbabf311471cca460";
+ sha256 = "02lksnjd6c4b2az09jhkhfcimld96cl8kdv75j39jvf4qdqhmrg8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/669342d2b3e6cb622f196571d776a98ec8f3b1d3/recipes/psession";
sha256 = "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a";
name = "psession";
};
- packageRequires = [ async cl-lib emacs ];
+ packageRequires = [ cl-lib emacs ];
meta = {
homepage = "https://melpa.org/#/psession";
license = lib.licenses.free;
@@ -61066,12 +60901,12 @@
pyim = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pyim-basedict }:
melpaBuild {
pname = "pyim";
- version = "20180206.1419";
+ version = "20180324.2310";
src = fetchFromGitHub {
owner = "tumashu";
repo = "pyim";
- rev = "c670df2a338ca956b6103fd388f81a551bfc33f8";
- sha256 = "1pkjwcwz6xagamigsv25bxydda1yxzphw0xfclpi21raqnr9f1s6";
+ rev = "78fe2db87d38fc64879621802e2fcf8b54b8acb7";
+ sha256 = "1w5qswz1ybfzk1g5w8qlid836n6nsd5zpblfkijmss4nlkwxczgs";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/151a0af91a58e27f724854d85d5dd9668229fe8d/recipes/pyim";
@@ -61196,8 +61031,8 @@
src = fetchFromGitHub {
owner = "PyCQA";
repo = "pylint";
- rev = "03aa4ca2d6a78a4d9dc69438cbc76b982aca1569";
- sha256 = "0a8jdksaabm8ybpk0fzp58v9zy4vld1h857nwxf0crk68r50dv6z";
+ rev = "955acfec0e51c7705960693ed077c0696dd91581";
+ sha256 = "0d220lp9187shwvaqnq2306f6ajg9bdyn3vz9f4z8qz1ya6ris9j";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a073c91d6f4d31b82f6bfee785044c4e3ae96d3f/recipes/pylint";
@@ -61210,22 +61045,22 @@
license = lib.licenses.free;
};
}) {};
- pynt = callPackage ({ deferred, ein, emacs, epc, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
+ pynt = callPackage ({ deferred, ein, emacs, epc, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pynt";
- version = "20180203.2100";
+ version = "20180331.2118";
src = fetchFromGitHub {
owner = "ebanner";
repo = "pynt";
- rev = "92b3f0e7ee88dde641b9f62c50431f7c499dcf1e";
- sha256 = "1wn1gjql7g2dg7bnwqgx3r66b0hnxcmpmbh1wc5nc312wnklpz6f";
+ rev = "742ed8313088a29abcbd2d3fe74922823666e554";
+ sha256 = "0fpnv6vv4blrfr6v4nrqvgcrq7c6w8jj67n0mskyp4a7p7l44qcy";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fdb297084188a957a46dcd036e65d9d893044bea/recipes/pynt";
sha256 = "07c0zc68r3pskn3bac3a8x5nrsykl90a1h22865g3i5vil76vvg3";
name = "pynt";
};
- packageRequires = [ deferred ein emacs epc helm ];
+ packageRequires = [ deferred ein emacs epc ];
meta = {
homepage = "https://melpa.org/#/pynt";
license = lib.licenses.free;
@@ -61360,12 +61195,12 @@
python-mode = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "python-mode";
- version = "20180121.50";
+ version = "20180319.344";
src = fetchFromGitLab {
owner = "python-mode-devs";
repo = "python-mode";
- rev = "c9009f6753e05a4182674fdd3d9f80808de2dc2f";
- sha256 = "01r54skcxkjd6ihx7spx4rmp1b4x02yy9my93qgb4bkg3mwsbq5w";
+ rev = "85b61649b5f66e966d55ffbaf90160c2b60ff410";
+ sha256 = "173i3k0nvjri1g1mkgkc2i9c9mpnsvxf1ldmm12yhadl5gl2ah07";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/82861e1ab114451af5e1106d53195afd3605448a/recipes/python-mode";
@@ -61493,12 +61328,12 @@
pyvenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pyvenv";
- version = "20180304.712";
+ version = "20180331.802";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "pyvenv";
- rev = "f83c31a825138645dc55db49c5389cd8c7bf7b42";
- sha256 = "0xq71zbwfl0ijmljcsq74nxmm2pj8m3rbdpwpcdk2j2i6zx2wgr6";
+ rev = "ea3e28a4d6fe90d56c5d356161b0b2cb59529950";
+ sha256 = "0cn8dksg429cb6vmm7pqrmxgckiw0zpxcx68bcm87pdnp7186f58";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e37236b89b9705ba7a9d134b1fb2c3c003953a9b/recipes/pyvenv";
@@ -61616,22 +61451,22 @@
license = lib.licenses.free;
};
}) {};
- quelpa = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, package-build }:
+ quelpa = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "quelpa";
- version = "20171207.1139";
+ version = "20180325.1338";
src = fetchFromGitHub {
owner = "quelpa";
repo = "quelpa";
- rev = "fc393aeb3bb1a9a35e603515d13c90cc008caece";
- sha256 = "1zkx7bpzmphhfwgqf5pfwf6qb4vjwgvhmds38vm6h2302hl4racx";
+ rev = "260bad5748dc9b02ad4d98bfef755fa9abd07af2";
+ sha256 = "0g48fkc8qf9dfr61qlxw5sf0cw03mpr6zl7sn4fjglf5rlx7kdzh";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7dc3ba4f3efbf66142bf946d9cd31ff0c7a0b60e/recipes/quelpa";
sha256 = "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs";
name = "quelpa";
};
- packageRequires = [ emacs package-build ];
+ packageRequires = [ emacs ];
meta = {
homepage = "https://melpa.org/#/quelpa";
license = lib.licenses.free;
@@ -61644,8 +61479,8 @@
src = fetchFromGitHub {
owner = "quelpa";
repo = "quelpa-use-package";
- rev = "f276555d6bead02a0d869149f03a545d4d4265ad";
- sha256 = "0cmpfjkwx5mpiyssyglfnrfkfg7c4qr01b598z50vc1lyg6198i1";
+ rev = "cd4820a34819516f26df0fe2e4d416bdea468e89";
+ sha256 = "0wbmf0ihxldgrx43c3wiaapssn8qimcyaa3hg2x2j1q05c2qlgcg";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b581e411ef5ea3954acc2cd997c87b3b86777333/recipes/quelpa-use-package";
@@ -62501,12 +62336,12 @@
realgud = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, load-relative, loc-changes, melpaBuild, test-simple }:
melpaBuild {
pname = "realgud";
- version = "20180312.1514";
+ version = "20180327.1634";
src = fetchFromGitHub {
owner = "rocky";
repo = "emacs-dbgr";
- rev = "6706358aa7adbfc6b551d8a2fd394287b01070e5";
- sha256 = "1m9j3gfz9nhlvdfxrn1qf6fysj6zjjzyvr4vs8wnd7zdv2s4cvrw";
+ rev = "096bd8732ea0661f10d7f7c1c91ad1ca4cf51207";
+ sha256 = "1mjbhnzq4j7pfapmxqhy6lx3f6py2wbj2xrri16npmn1qqmkmbjp";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7ca56f05df6c8430a5cbdc55caac58ba79ed6ce5/recipes/realgud";
@@ -62633,12 +62468,12 @@
rebecca-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rebecca-theme";
- version = "20171114.2208";
+ version = "20180324.121";
src = fetchFromGitHub {
owner = "vic";
repo = "rebecca-theme";
- rev = "f34089f176def79ecee5feda7dd79896f555bbe2";
- sha256 = "08kavajrmp3lxl9r67rg9710326ynywlklz73vdijpzjpyhp5al5";
+ rev = "1fe3662d1b02caea96e9a780252b2c45f7a49b1d";
+ sha256 = "0qcfnc9slhm4y2bpld0ckbv3wijr9y7h6555sy23z3dlmz7xs1wm";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/19f40f30113c7dabd76a2d0e52898e6d6be69a35/recipes/rebecca-theme";
@@ -62864,12 +62699,12 @@
redprl = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "redprl";
- version = "20180227.723";
+ version = "20180320.1312";
src = fetchFromGitHub {
owner = "RedPRL";
repo = "sml-redprl";
- rev = "8482615ea753ff78aad2f16565ff3a918e7f6435";
- sha256 = "1h6y2b0073xm996w4858w2xfhj97viq1fn674sfz21g93w4gjw51";
+ rev = "c28a1d98dcb4f766e19ba7ce78824ca57d022a7b";
+ sha256 = "1kr6j75b428xr1pqy1ad0gqahh5dj5zh4pddc6rymr969yai02z0";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/06e7371d703ffdc5b6ea555f2ed289e57e71e377/recipes/redprl";
@@ -63640,12 +63475,12 @@
rg = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "rg";
- version = "20180312.2254";
+ version = "20180401.1308";
src = fetchFromGitHub {
owner = "dajva";
repo = "rg.el";
- rev = "a3516855e12e58cef5894ddf1ca7f7b524c804d7";
- sha256 = "1hc85c0ffkiawy3ifln8i6rak3samdzlsyl5kz7rqgg8x9pzvaf4";
+ rev = "1d037789386ca626123cef6eab8b5ab467a8ca3b";
+ sha256 = "18q55bx6wfmzvzxl97w38b5kk9ihblyk8p9g9q4d1xangsclqqzz";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9ce1f721867383a841957370946f283f996fa76f/recipes/rg";
@@ -63808,12 +63643,12 @@
ripgrep = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ripgrep";
- version = "20180301.650";
+ version = "20180323.920";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "ripgrep.el";
- rev = "1f4338eeeb4bb3084a4b43762fa69a2c93ddff85";
- sha256 = "0im6l8gn3msl5jks3qif0jmi358kj46a50p2lirpjh6rnilmnanq";
+ rev = "a1f8f030bf5daea92dd13b953720a6c13dd3557c";
+ sha256 = "0mpysjcbw9qxy1lcwsd2rqf72xahpdpn88xcq0cnk1y2jam8gjkf";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e8d789818876e959a1a59690f1dd7d4efa6d608b/recipes/ripgrep";
@@ -64085,8 +63920,8 @@
src = fetchFromGitHub {
owner = "Andersbakken";
repo = "rtags";
- rev = "4310b26e69dd9569582962d0013ebc8c372730e5";
- sha256 = "03mkchsrfxf8g9c36n8b8wxb99kb3nb74x293yw9ch1rbfvw3xis";
+ rev = "a595d13f60c13d67a28467b3941d5ed558102e91";
+ sha256 = "0yp6h6nsbji7dmc9pnf9qi7zsqxrxa1bln90bn0y71xf6z11kbp4";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/rtags";
@@ -64102,12 +63937,12 @@
rtm = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rtm";
- version = "20160116.927";
+ version = "20180329.808";
src = fetchFromGitHub {
owner = "pmiddend";
repo = "emacs-rtm";
- rev = "08dc10458b56e72f1512896192b2114ef57e58c5";
- sha256 = "1ajks5dmsb5cyj0hzxbp3r305liwaayb8jds0wdnw4nk5anlsbnr";
+ rev = "3e3d09387cb84801343ecca8fb02e82f213e7bbe";
+ sha256 = "0cc07lhh27i1ra4alrwb6w322ddi6hw0498nkzf388arhn10h3wv";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/rtm";
@@ -64291,12 +64126,12 @@
ruby-hash-syntax = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ruby-hash-syntax";
- version = "20171013.50";
+ version = "20180323.1909";
src = fetchFromGitHub {
owner = "purcell";
repo = "ruby-hash-syntax";
- rev = "90e0fc89a2b28c527fcece7ee90d5783694a4406";
- sha256 = "1lkicxingcvs4inxvkrpxknylf09a506plbzx6bfiq9dicsnlw14";
+ rev = "89fc364a837d7a78ecce34380f09c073a83e30e0";
+ sha256 = "1nwf3681fa6lfqr14n9wihckpi220hvamv1ppzmrhn4k49vxljy8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c7d21a43a4bf267507bdc746ec9d0fd82049c0af/recipes/ruby-hash-syntax";
@@ -64522,12 +64357,12 @@
rust-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rust-mode";
- version = "20180303.854";
+ version = "20180322.127";
src = fetchFromGitHub {
owner = "rust-lang";
repo = "rust-mode";
- rev = "42c98bbf3550aff91fd2a3f24637508b408d4cdb";
- sha256 = "0l0dk7w1jklg8sh5i8sxh6ggcyb9gna0n72b0icvyfihqn25qk30";
+ rev = "07e16c6364bf0362f76c6aa46604453dec3ac640";
+ sha256 = "0xjbv9q3mz7chjaz889hyji4xaff8ql2wmk0wir6bnyg6g2k58d1";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8f6e5d990d699d571dccbdeb13327b33389bb113/recipes/rust-mode";
@@ -64543,12 +64378,12 @@
rust-playground = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rust-mode }:
melpaBuild {
pname = "rust-playground";
- version = "20170211.5";
+ version = "20180317.1434";
src = fetchFromGitHub {
owner = "grafov";
repo = "rust-playground";
- rev = "ff4149489c30a65817750428847217368bd995ba";
- sha256 = "04d5z33pv1xqsn539nfkyjh7dvf0kc0rwili1zr6817z0406k1qn";
+ rev = "cbb8a32c5f69b5acd5e04519f55465b2b241c0a0";
+ sha256 = "0791msvihb99ghknkvmmbjkp1zcvn39463y3qg6xj049h2xl9skk";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/rust-playground";
@@ -64585,12 +64420,12 @@
ryo-modal = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ryo-modal";
- version = "20180222.415";
+ version = "20180331.118";
src = fetchFromGitHub {
owner = "Kungsgeten";
repo = "ryo-modal";
- rev = "4d10e251ca734548e48e7f0785b3b69a6e863f67";
- sha256 = "1pqq2mzrfam7lzilpgqnzr192dsisgxnnnkilyksqfk1q199p9my";
+ rev = "42f874467dfdce59b511f883496ce2624b133dd7";
+ sha256 = "0k9nmi014vb9c8rymy3w8xbnj1q85xlslpblacz78iqn1kr6wy1z";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ryo-modal";
@@ -64988,8 +64823,8 @@
src = fetchFromGitHub {
owner = "openscad";
repo = "openscad";
- rev = "3e7fbfff14baf75c5f0c23496ac3fb5c5e6f8a96";
- sha256 = "12vs4k6ci02jw9l2z0iknm1mhs0w8kis2b9r5r1ip61nb9d43qx1";
+ rev = "e7c0851d4023817b2a11df2583d6f406f3b58883";
+ sha256 = "1rmjlgx83ck511ikahmn9xkg1qwakm0x3k7yzc2r5jkl40605833";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2d27782b9ac8474fbd4f51535351207c9c84984c/recipes/scad-mode";
@@ -65780,12 +65615,12 @@
seoul256-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "seoul256-theme";
- version = "20171213.1209";
+ version = "20180331.1939";
src = fetchFromGitHub {
owner = "anandpiyer";
repo = "seoul256-emacs";
- rev = "1b487722ba817347030b50df01491dbbff4b2891";
- sha256 = "0q8nnm5b6dp9qlnjg3hw7l863xiiajdfd4nk2i5p1gfx549mcdv5";
+ rev = "237cea479c5635fda908c0229beada080ca6c17f";
+ sha256 = "1dd8vvvkm6h1ljxv15v4mcsb9nxf0d4v5yk6wnpx185l2936gykc";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/seoul256-theme";
@@ -66389,12 +66224,12 @@
shm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shm";
- version = "20170523.238";
+ version = "20180326.1757";
src = fetchFromGitHub {
owner = "chrisdone";
repo = "structured-haskell-mode";
- rev = "bd08a0b2297667e2ac7896e3b480033ae5721d4d";
- sha256 = "14rl739z19ns31h9fj48sx9ppca4g4mqkc7ccpacagwwf55m259c";
+ rev = "7f9df73f45d107017c18ce4835bbc190dfe6782e";
+ sha256 = "1jcc30048j369jgsbbmkb63whs4wb37bq21jrm3r6ry22izndsqa";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/68a2fddb7e000487f022b3827a7de9808ae73e2a/recipes/shm";
@@ -67187,12 +67022,12 @@
slime = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, macrostep, melpaBuild }:
melpaBuild {
pname = "slime";
- version = "20180308.733";
+ version = "20180330.423";
src = fetchFromGitHub {
owner = "slime";
repo = "slime";
- rev = "85ffc5ff9cd1d88e0b2fa10bbcd03d0c84768896";
- sha256 = "0wvfw7hk95zn78j6ry82gixz3q0z3wdiy7s3gwi8v9a8lizwq83i";
+ rev = "a83b6ececbbe77cfdb7d54d7d24870a1071fb8c2";
+ sha256 = "18hdgxjng6mq2fgy2dmisnyg547l3kwk3z7069h101xwh8dji3w5";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/14c60acbfde13d5e9256cea83d4d0d33e037d4b9/recipes/slime";
@@ -67711,12 +67546,12 @@
smart-mode-line = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rich-minority }:
melpaBuild {
pname = "smart-mode-line";
- version = "20180313.1752";
+ version = "20180323.648";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "smart-mode-line";
- rev = "08993097c991070a3f804e797862a92a8bb4d59c";
- sha256 = "0mkhg4hj48yqzdr9ziszqm43pxr5n6ybk28sidrv8w10skrgjara";
+ rev = "9e261a2bb6ade7f8a4428bc6cb27789878b2844c";
+ sha256 = "1hfngb60n3nbfx1p662p76kz7v4mjcppf0ygbqlhrlbv6a9n8ll5";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/smart-mode-line";
@@ -67736,8 +67571,8 @@
src = fetchFromGitHub {
owner = "Malabarba";
repo = "smart-mode-line";
- rev = "08993097c991070a3f804e797862a92a8bb4d59c";
- sha256 = "0mkhg4hj48yqzdr9ziszqm43pxr5n6ybk28sidrv8w10skrgjara";
+ rev = "9e261a2bb6ade7f8a4428bc6cb27789878b2844c";
+ sha256 = "1hfngb60n3nbfx1p662p76kz7v4mjcppf0ygbqlhrlbv6a9n8ll5";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/60072b183151e519d141ec559b4902d20c87904c/recipes/smart-mode-line-powerline-theme";
@@ -67900,12 +67735,12 @@
smartparens = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smartparens";
- version = "20180308.1042";
+ version = "20180325.438";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "smartparens";
- rev = "3181747d9b84ed44b95fa95855609b624ce83d9b";
- sha256 = "0gv1k922w2sz1lgmivd1d5hh2gvv2w5zpvr51y94ddzpfmph4bwy";
+ rev = "6eea872207c331c3df70caac49577b01926be45a";
+ sha256 = "02qx8clgwwaggm2xmrsr0bxcapiipryyb5d4csm05xpbm19q7xv1";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bd98f85461ef7134502d4f2aa8ce1bc764f3bda3/recipes/smartparens";
@@ -68236,12 +68071,12 @@
snakemake-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild }:
melpaBuild {
pname = "snakemake-mode";
- version = "20180128.752";
+ version = "20180320.2029";
src = fetchFromGitHub {
owner = "kyleam";
repo = "snakemake-mode";
- rev = "6cf6d20db2e5253ce3f86e302651faa28f220aa7";
- sha256 = "0dmvd5f5rb5kkzjkhzz17b40hlld23sy5wyzr8vq763f6pzs37kk";
+ rev = "43a4b37b1374de50e2022885077968af6d0e30a5";
+ sha256 = "1xjhg3921gpgnxwr2grcrw9j9ar9faggppv030lyc4i7cx5qj357";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c3a5b51fee1c9e6ce7e21555faa355d118d34b8d/recipes/snakemake-mode";
@@ -68446,12 +68281,12 @@
solaire-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "solaire-mode";
- version = "20171209.1350";
+ version = "20180328.343";
src = fetchFromGitHub {
owner = "hlissner";
repo = "emacs-solaire-mode";
- rev = "dd93cfd6c02e4575e6c7048ecf9dac8c09864bf2";
- sha256 = "1afbkz93xa6f0453n7n1mrm0ng5jrdi06mh0s105gkzcfxqjc0gd";
+ rev = "9307486ceee18f4b622406b8d600360419e6d742";
+ sha256 = "0j8vl26vpzmsfbpx23wj5c9b7ia6fdyr8advnk6vcbkcwgj8r9q2";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/52c69070eef3003eb53e1436c538779c74670ce6/recipes/solaire-mode";
@@ -68488,12 +68323,12 @@
solidity-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "solidity-mode";
- version = "20171231.741";
+ version = "20180328.1608";
src = fetchFromGitHub {
owner = "ethereum";
repo = "emacs-solidity";
- rev = "b5d95ef678305ca70b17e94fc2ee4289a8328048";
- sha256 = "04l3hvfpgqiaxdxh8s2cg2rx4cy50i7a411q81g8661fx60c6h6p";
+ rev = "55049577992638a6c6c5e68ddc4bcbc6a9af7e60";
+ sha256 = "0f6f3sry2ym2fivpn42r1dz2cy5hbdgb41p9qpmix0qyf31vh034";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bb9df5ec0692352b6494d435d11166f4ea26c99e/recipes/solidity-mode";
@@ -68810,12 +68645,12 @@
spaceline = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline, s }:
melpaBuild {
pname = "spaceline";
- version = "20171111.334";
+ version = "20180330.1332";
src = fetchFromGitHub {
owner = "TheBB";
repo = "spaceline";
- rev = "ca20430271f80d46892d62cb7624b4dee6cafe72";
- sha256 = "1a9my43y64y4k7bizvxc0pdr7194vcf167jdiyyl577wxq1z640p";
+ rev = "efa2ebdec8bc1d8fa067f25fa54648f5a4d22aeb";
+ sha256 = "1669r27rv4a7xlp2prjvl8hijnhzdw71lgsvxp65iwz7dl0912wk";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/46e4c876aeeb0bb0d0e81dcbb8363a5db9c3ff61/recipes/spaceline";
@@ -68852,12 +68687,12 @@
spacemacs-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "spacemacs-theme";
- version = "20180309.1335";
+ version = "20180319.736";
src = fetchFromGitHub {
owner = "nashamri";
repo = "spacemacs-theme";
- rev = "122b5b7edb0202610be7fcfd96b7a5e03b418de3";
- sha256 = "1pv0pv1bkp5syvkg2rss82m3f4cfx8s4726hxglm7ar72i6qy21s";
+ rev = "3c1a613a36e80d10ecd4a536d690dca672d41242";
+ sha256 = "0arg3sw1rrlkn12kag5zyx8jgn4xgfffj7ysxpyqag8as7i5mcwi";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6c8ac39214856c1598beca0bd609e011b562346f/recipes/spacemacs-theme";
@@ -68936,12 +68771,12 @@
sparql-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sparql-mode";
- version = "20171116.510";
+ version = "20180320.1102";
src = fetchFromGitHub {
owner = "ljos";
repo = "sparql-mode";
- rev = "00527b8172ae61b667bc70a802c112132e06ba0b";
- sha256 = "1k8hg1mg8zyxr9bvfm2k2447arph9wk58yjbxgqlq4w5svrq79km";
+ rev = "a00bb622c54086ac1ee96c265bf7fbef12c68089";
+ sha256 = "0f919alnqbp5dnc4krgmnc9acqg84xs64fmzjc78gpbmfn0kyi0m";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c3d729130a41903bb01465d0f01c34fbc508b56e/recipes/sparql-mode";
@@ -69017,6 +68852,27 @@
license = lib.licenses.free;
};
}) {};
+ speeddating = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "speeddating";
+ version = "20180319.23";
+ src = fetchFromGitHub {
+ owner = "xuchunyang";
+ repo = "emacs-speeddating";
+ rev = "df69db0560f19636a66a74f3d88c793bbb18b21e";
+ sha256 = "0mhzjia900irv0ndiw6w2vzin1gvyaf48pghi16r562ci4lr963w";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/01e23a3e2a2495e86aba60302dbd06f3b25768b4/recipes/speeddating";
+ sha256 = "0b5lcb1inkcx94grib5ssv1qkbzxqryzm115qizlgfs04k8cwz09";
+ name = "speeddating";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/speeddating";
+ license = lib.licenses.free;
+ };
+ }) {};
sphinx-doc = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "sphinx-doc";
@@ -69339,8 +69195,8 @@
src = fetchFromGitHub {
owner = "leethargo";
repo = "sql-clickhouse";
- rev = "35308c9292622547a79c0cc2659db2fc9de42e93";
- sha256 = "12j9facwvwnwc8ga3nj9yddx3xp3kp28mih6lg4s1b67zj28pccg";
+ rev = "2edccd94145c55a040a3a87193793f06cf01f64f";
+ sha256 = "0zajd35i02h869mg6n2pn2fnb80ddny6ss1kap21b75p2gw79lb7";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a0ef23e6825924094eb69bd8526a95d8fab210c1/recipes/sql-clickhouse";
@@ -69566,12 +69422,12 @@
ssh-deploy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ssh-deploy";
- version = "20180301.2215";
+ version = "20180323.2320";
src = fetchFromGitHub {
owner = "cjohansson";
repo = "emacs-ssh-deploy";
- rev = "a3f9ec5dc8ecf7caa7551be31e62a6edfdc542c3";
- sha256 = "130jrdj9y6cv78a71xsl6j9l79vnzf4081w6v1llxpyy1mn81a33";
+ rev = "5a89d59a5371aac9ee9eae22996ae2065f7f2a6b";
+ sha256 = "1zmlw75sdlvb99ijylan4bc2z2wm23x5zlql2bmjnfvjb1z2mh39";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ssh-deploy";
@@ -70362,12 +70218,12 @@
sunburn-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sunburn-theme";
- version = "20171101.1126";
+ version = "20180317.1051";
src = fetchFromGitHub {
owner = "mvarela";
repo = "Sunburn-Theme";
- rev = "c57190f87e2e6c5ef6c7fbfd40964eb8f11b32ca";
- sha256 = "1b2d0iky9w8f0sww4wish55j2s2j1y2v4bjf3lk0yg2ysbspy3vq";
+ rev = "63fbc5a609100e78d8304c99646ae8f689e17bf2";
+ sha256 = "04dwqssci9xvcaw1wrhf45hsqskmj0s38lyc0fmbbg1vx53npnk3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bfd68b90234222dbf5907a29d506b6c4e61a372b/recipes/sunburn-theme";
@@ -70404,12 +70260,12 @@
sunshine = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sunshine";
- version = "20160410.1317";
+ version = "20180325.548";
src = fetchFromGitHub {
owner = "aaronbieber";
repo = "sunshine.el";
- rev = "11e49846a116bdec6e2e463bed2db4c2df9c8ad2";
- sha256 = "0jv1shacpxqbw6pv9rlkk8z84si85alhillhb9a2s6s36kjmybk0";
+ rev = "ecaccac91010f8d464646a0360b1676be71e6600";
+ sha256 = "0n9ppy22ijc2cgs5xix8nks7abn0shvh0v0f2ir1j7v1ckjsklc5";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4a0ff9a4ef4bbe8de722a4f77f4a56a851497ff1/recipes/sunshine";
@@ -70593,12 +70449,12 @@
sweetgreen = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, request }:
melpaBuild {
pname = "sweetgreen";
- version = "20151207.916";
+ version = "20180401.1715";
src = fetchFromGitHub {
owner = "CestDiego";
repo = "sweetgreen.el";
- rev = "a456dd7948a25da8ff007a142cf1325b4855d908";
- sha256 = "10blwlwg1ry9jznf1a6iss5s0z8sj9gc02ayf5qv92mgxvjhrhdn";
+ rev = "ffd7a7497db05e64031eaaffe170741b40ed753a";
+ sha256 = "0whciwh6avhfb2qhpxfl63x3z097hcm7hwhypx8symydy3r4cbqz";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/63812707948e6dcc00e00ebc3c423469593e80fd/recipes/sweetgreen";
@@ -70656,12 +70512,12 @@
swiper = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }:
melpaBuild {
pname = "swiper";
- version = "20180316.924";
+ version = "20180326.919";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "swiper";
- rev = "b53ba0be297a6bf22e0fab831eb1297c986bf774";
- sha256 = "15azw9x9pbcdzkkllh4nc1wk9l5dk95l1p5qzdszfizb1kc1xjqi";
+ rev = "f8cdaa7f3c733b88865650d10d9138bcb40a9ba8";
+ sha256 = "0gfaj5ygjmvrmghyqghp7i6wf5abiayb28av4291plpyl0liz78h";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper";
@@ -70821,6 +70677,27 @@
license = lib.licenses.free;
};
}) {};
+ symbolword-mode = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "symbolword-mode";
+ version = "20180401.727";
+ src = fetchFromGitHub {
+ owner = "ncaq";
+ repo = "symbolword-mode";
+ rev = "3857c42696e20f49f274ff8bc45a6f3ee26884d4";
+ sha256 = "0pk20glbf73lpfky0jz6dqvxzaqvig3m11xca0786ni0g1yc4g0g";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/be2018e0206c3f39c1b67e83000b030d70a72ceb/recipes/symbolword-mode";
+ sha256 = "1fs1irnmlbrn76b4gdsy0v65nz8av85iqm0b7g9nm2rm8azcr050";
+ name = "symbolword-mode";
+ };
+ packageRequires = [ emacs f ];
+ meta = {
+ homepage = "https://melpa.org/#/symbolword-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
symon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "symon";
@@ -70908,12 +70785,12 @@
synonymous = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }:
melpaBuild {
pname = "synonymous";
- version = "20160721.2255";
+ version = "20180325.1117";
src = fetchFromGitHub {
owner = "toroidal-code";
repo = "synonymous.el";
- rev = "1cbdc016c70ed3834c514621f9a33adc93707024";
- sha256 = "1lsn2x6mk36pl0j3z419jq2g6sxxl0hylpz0xl8aiqzsbmwnc6r1";
+ rev = "2cb9a674d84fddf3f1b00c9d6b13a853576acb87";
+ sha256 = "1l0skavpj96x5gdrx9l8dqj4mrb7zcilv3jj335ak11p2i4ckcq2";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ecf2c44c63e9f41f1733849bdef0d0c301485580/recipes/synonymous";
@@ -70933,8 +70810,8 @@
src = fetchFromGitHub {
owner = "hpdeifel";
repo = "synosaurus";
- rev = "ceeb06e24d3af3643862ecfdb263590eec1f492f";
- sha256 = "1qdppyx24zmz9dzm9kjvcx30g6znik602mg2h2s835cww9n97idm";
+ rev = "8bf95b935976ec0a1964cf175ed57cc5f6f93bdb";
+ sha256 = "06dssdq0fwmr5fw56f17hysy4ysvljlvh6np4szv7lc8bhvykki0";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/synosaurus";
@@ -71033,12 +70910,12 @@
system-packages = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "system-packages";
- version = "20180316.811";
+ version = "20180331.1102";
src = fetchFromGitHub {
owner = "jabranham";
repo = "system-packages";
- rev = "557b1eb96479cc6c73b9b7d509dd60b0ee71934d";
- sha256 = "01r8754ckbzsvlmnbpwpx2j33q693cmg5a59i5d77adn24ssk4f4";
+ rev = "fff67d190440fb076104f0f52d55a5e098207e31";
+ sha256 = "0ia4nnyhk84dkahsan8l8dslmqiv0afs5abc1w2fnql7zhsiac6q";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8c423d8c1ff251bd34df20bdb8b425c2f55ae1b1/recipes/system-packages";
@@ -71557,12 +71434,12 @@
telephone-line = callPackage ({ cl-generic, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, seq }:
melpaBuild {
pname = "telephone-line";
- version = "20180220.109";
+ version = "20180329.1924";
src = fetchFromGitHub {
owner = "dbordak";
repo = "telephone-line";
- rev = "3e73a0ed2457e7b6991ea6555a1379bf9b77053b";
- sha256 = "0bwicz1xymq5j57m2kc8myjnc2dyfljm1jz2l80ifmlkdn549x92";
+ rev = "220a1a4a89ca95be9ae1fab356b92296fff5b73a";
+ sha256 = "0dkmysgqpmcqchhsng2lkgb3w2nb8cpnk2sk6330h5drhp61d35c";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9c998b70365fb0a210c3b9639db84034c7d45097/recipes/telephone-line";
@@ -72040,12 +71917,12 @@
texfrag = callPackage ({ auctex, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "texfrag";
- version = "20180117.2025";
+ version = "20180318.1647";
src = fetchFromGitHub {
owner = "TobiasZawada";
repo = "texfrag";
- rev = "aca88ea6440dc9a8ac35692e72ee00aac27ce575";
- sha256 = "0bgjsqsxpfncfab5wnjpwy64wli6k7xw77dn7l1lpbymmsm9mnr5";
+ rev = "8bb74e2d38139d6497545581a3507c6f7b4fa5e2";
+ sha256 = "03pqbx2mwz2lz7027da0aiyh12f2jifdfvxh0s83qshsnw6sipmk";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/756649bbe2dc6233c66c3d128a8096be12231078/recipes/texfrag";
@@ -72317,8 +72194,8 @@
src = fetchFromGitHub {
owner = "apache";
repo = "thrift";
- rev = "a9efd1abd4fd4862d8e967ec207015af79494b6c";
- sha256 = "104viwwc6z9qk7p77wlmb088278f9awwx1v5cycnn6qv8wglhxfj";
+ rev = "8fb719efb1533e3a8038c155cbb209b492a29910";
+ sha256 = "01pi4qh3a6m5j4j0sk5z7h7l7m19w82scm8x3kycdwkmfgn5fxsi";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/857ab7e3a5c290265d88ebacb9685b3faee586e5/recipes/thrift";
@@ -72397,12 +72274,12 @@
tide = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, s, typescript-mode }:
melpaBuild {
pname = "tide";
- version = "20180301.121";
+ version = "20180327.2043";
src = fetchFromGitHub {
owner = "ananthakumaran";
repo = "tide";
- rev = "bd6948be51c61845238fd323a6c08b929534cac1";
- sha256 = "1ppzr2nhwarzmc3gpf0qcfphq2nz7jjvml1dkskpbm1j322z0mqa";
+ rev = "0db094ba1748e3add4e152fa34d64b25eb07bdd2";
+ sha256 = "113lg22aaagh3bbabxp65460cfwa9whjg3yzafd5n8azkinq8s6k";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a21e063011ebbb03ac70bdcf0a379f9e383bdfab/recipes/tide";
@@ -73109,8 +72986,8 @@
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "circe";
- rev = "f7f7cb62a992120bf80c3a078bec1c029f8ff0cd";
- sha256 = "122wvsxvv3yzkdjfi8s5gbl371bzi5kw377a7f3cpp7hxz4i24bl";
+ rev = "9aaad726ea0b0cce4d911eec92ab8fd2a6455fe6";
+ sha256 = "1nyw9phrh1qpc7j6b8fkald18y3rldydb666r6ppphggly6lh4vd";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a2b295656d53fddc76cacc86b239e5648e49e3a4/recipes/tracking";
@@ -73189,12 +73066,12 @@
transfer-sh = callPackage ({ async, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "transfer-sh";
- version = "20160828.424";
+ version = "20180317.1022";
src = fetchFromGitHub {
owner = "Brillow";
repo = "transfer-sh.el";
- rev = "70cd5c50b56ed2597221796014298417f503d10f";
- sha256 = "1s4c70z54pc1kcqzqg3z07vw4v0d0f68w7nzifcmbx6s1l5211wf";
+ rev = "3f0344358081bcaa3c129b401ee18ecaeecda4d9";
+ sha256 = "0flsdkqhmrclnwwbxxqraawj4xv0240bwh5pbi4hgwdl5l9ihc4j";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b4f74dd06d4d5249beaf67b2befec4251c8c18ed/recipes/transfer-sh";
@@ -73565,12 +73442,12 @@
tuareg = callPackage ({ caml, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tuareg";
- version = "20180312.410";
+ version = "20180325.47";
src = fetchFromGitHub {
owner = "ocaml";
repo = "tuareg";
- rev = "a3ad3a9220363f2fd0898369866f5879489d51ec";
- sha256 = "1l7nbg273d1ffnac8crhvmiq8mz2xdyd52aflp0s3am9iw7319kn";
+ rev = "fcf578a6aa2af815bc93fb48f374b8c3798a3e9a";
+ sha256 = "0zmrmkcz019ny1cwqssyy327zmqpjmrn05xikcz4xqwy7ij8xifp";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/01fb6435a1dfeebdf4e7fa3f4f5928bc75526809/recipes/tuareg";
@@ -73838,12 +73715,12 @@
typescript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "typescript-mode";
- version = "20180315.1309";
+ version = "20180326.434";
src = fetchFromGitHub {
owner = "ananthakumaran";
repo = "typescript.el";
- rev = "526f307ca8ca50b8f98975f2812198212f6acf2f";
- sha256 = "1hj4jy91qfpfmnajb4wc9vavx0zlmawi0r1nvkh87ngm3q09mnbi";
+ rev = "d8501770f6ebd50bbbaada2c65b19c85564c1d1e";
+ sha256 = "0hhn3bf9msmp3gbcqpsij1sqwm0zsdxpjyjqaz1r997i4lrqw2r2";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d3f534a1e2cee4ad2e32e32802c5080207417b3d/recipes/typescript-mode";
@@ -73901,12 +73778,12 @@
typit = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, mmt }:
melpaBuild {
pname = "typit";
- version = "20171231.2214";
+ version = "20180317.107";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "typit";
- rev = "45dc6ba44fd5f2aece9da4a0e88effb947fe6c0e";
- sha256 = "1q3gva57r7g9iqvkfi90zih97dq37ds2vfbjisqxzh43vab8hsjv";
+ rev = "4fe50d616fc60e77eb9b5a824c0a1ca4010b0746";
+ sha256 = "0j5s86s9wb33fqw415mmkysdasyj3vdx9l8l6ca6f89ps6znr636";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d17d019155e19c156f123dcd702f18cfba488701/recipes/typit";
@@ -74150,26 +74027,6 @@
license = lib.licenses.free;
};
}) {};
- undo-tree = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "undo-tree";
- version = "20170706.246";
- src = fetchgit {
- url = "http://www.dr-qubit.org/git/undo-tree.git";
- rev = "e9a9102f515acd7523158f20e83f300600374989";
- sha256 = "07y1pn0dzwh1avkd3dm96lcjisvnr7p02wbhxf1m3dgaxf059mcn";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4327b4dd464ebb00c2acdd496274dedf912cdf92/recipes/undo-tree";
- sha256 = "0vrjxprpk854989wcp4wjb07jhhxqi25p6c758gz264z3xa8g9cr";
- name = "undo-tree";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/undo-tree";
- license = lib.licenses.free;
- };
- }) {};
undohist = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "undohist";
@@ -74402,8 +74259,8 @@
sha256 = "03x3nakbhmakwm977mwrf8jifvjnfwzpjv6wrwpizbqjnkgfchmn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0af5c20984ebe5458c6e97b24ef97e8b2fbc4045/recipes/unidecode";
- sha256 = "1xizid7hg98lx2i544w253h6c51ykimim1j58jkn1r5fzqg3r4xd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f9ba8e425e37e80a2236832c3f12568546d4c7c9/recipes/unidecode";
+ sha256 = "0vhghnyj8a5mcqq5rzajrm1izzfry77pd1wxhmra5yp9ribw2sv5";
name = "unidecode";
};
packageRequires = [];
@@ -74650,8 +74507,8 @@
src = fetchFromGitHub {
owner = "jwiegley";
repo = "use-package";
- rev = "f0932c9165700f77b1c8fd3fee7d8f59e0486182";
- sha256 = "07m5fnk5m3l4s3d1qs1kydy3jbdi6lz53v635rzjkl2jzgybv8g5";
+ rev = "512aa50b025018cb8574498d868814f73c02bb9b";
+ sha256 = "0ncg9vbn2hjdv846v0ij6pf1cs76i73jkb17wbf08r3km7933xmw";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/51a19a251c879a566d4ae451d94fcb35e38a478b/recipes/use-package";
@@ -74671,8 +74528,8 @@
src = fetchFromGitHub {
owner = "jwiegley";
repo = "use-package";
- rev = "f0932c9165700f77b1c8fd3fee7d8f59e0486182";
- sha256 = "07m5fnk5m3l4s3d1qs1kydy3jbdi6lz53v635rzjkl2jzgybv8g5";
+ rev = "512aa50b025018cb8574498d868814f73c02bb9b";
+ sha256 = "0ncg9vbn2hjdv846v0ij6pf1cs76i73jkb17wbf08r3km7933xmw";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6240afa625290187785e4b7535ee7b0d7aad8969/recipes/use-package-chords";
@@ -74713,8 +74570,8 @@
src = fetchFromGitHub {
owner = "jwiegley";
repo = "use-package";
- rev = "f0932c9165700f77b1c8fd3fee7d8f59e0486182";
- sha256 = "07m5fnk5m3l4s3d1qs1kydy3jbdi6lz53v635rzjkl2jzgybv8g5";
+ rev = "512aa50b025018cb8574498d868814f73c02bb9b";
+ sha256 = "0ncg9vbn2hjdv846v0ij6pf1cs76i73jkb17wbf08r3km7933xmw";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6240afa625290187785e4b7535ee7b0d7aad8969/recipes/use-package-ensure-system-package";
@@ -76178,12 +76035,12 @@
web-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "web-mode";
- version = "20180313.1458";
+ version = "20180401.810";
src = fetchFromGitHub {
owner = "fxbois";
repo = "web-mode";
- rev = "49a7a72adf77c8d3ee457ef38dce415cddd09aae";
- sha256 = "0m0dg0w6pimvq0bp5xm7jca6619n38zsw40mddpb9xw01gxmaagb";
+ rev = "1a61f347cc1ac3cf2a68f917b7100fdcb21b488c";
+ sha256 = "1yswl44kgz34nn5r5z0wck85ilyniysql2pwc94pn32lpzypa4ah";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6f0565555eaa356141422c5175d6cca4e9eb5c00/recipes/web-mode";
@@ -76280,6 +76137,27 @@
license = lib.licenses.free;
};
}) {};
+ webkit-color-picker = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, posframe }:
+ melpaBuild {
+ pname = "webkit-color-picker";
+ version = "20180325.36";
+ src = fetchFromGitHub {
+ owner = "osener";
+ repo = "emacs-webkit-color-picker";
+ rev = "765cac80144cad4bc0bf59025ea0199f0486f737";
+ sha256 = "0a6nirdn1l7cymjycbns38ja9an1z4l5lwjk5h428aly3pmkvdqj";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/af9d2e39385c6833eff6b7c7e5a039238563c00f/recipes/webkit-color-picker";
+ sha256 = "1i9244zghabyavxhz86d22fn40qspzdn2sjql8pl3mm8ks7a49a3";
+ name = "webkit-color-picker";
+ };
+ packageRequires = [ emacs posframe ];
+ meta = {
+ homepage = "https://melpa.org/#/webkit-color-picker";
+ license = lib.licenses.free;
+ };
+ }) {};
weblogger = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xml-rpc }:
melpaBuild {
pname = "weblogger";
@@ -76556,12 +76434,12 @@
which-key = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "which-key";
- version = "20180301.1018";
+ version = "20180321.331";
src = fetchFromGitHub {
owner = "justbur";
repo = "emacs-which-key";
- rev = "d19fe4e037baf8a5cd6e8c0609d3999528bb5ac9";
- sha256 = "1ylfy31a63g3306v0392a8nx2jdjms10f0r91i7am57pkygrx664";
+ rev = "bc97659029bffda0861a418da092656b379dd0cd";
+ sha256 = "0j1kpykqz691f8dlb2grfgv5rafr9xvb64yfc9pb07r4f8791fgc";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/315865a3df97c0694f648633d44b8b34df1ac76d/recipes/which-key";
@@ -76682,12 +76560,12 @@
whole-line-or-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "whole-line-or-region";
- version = "20170815.212";
+ version = "20180324.2119";
src = fetchFromGitHub {
owner = "purcell";
repo = "whole-line-or-region";
- rev = "1220974153b7eaca5192ed87f86182d121e228e4";
- sha256 = "1n44nn0zkk55cnwlincv5i8s36nymnh3bm6jd85h6m97jssxd85l";
+ rev = "944290d443a395ef0578531929186d6274ab03e9";
+ sha256 = "04hbs8hrm5csnjxvxkfbd9fky0rd6xpr105cy0bvya5c14anzcd4";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/whole-line-or-region";
@@ -77164,12 +77042,12 @@
with-editor = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "with-editor";
- version = "20180217.548";
+ version = "20180318.1253";
src = fetchFromGitHub {
owner = "magit";
repo = "with-editor";
- rev = "fcbccec6ec0f6639eab769d6ff8e97f25347a48e";
- sha256 = "079dy4b409i9016j3fkgwxggw8332hkvnnm86am46va3lqpd3jr9";
+ rev = "ff3e96929d4532e33422a5980a6e3ca9f2fcf032";
+ sha256 = "1fhn2wd0wszbnfpvnjmlw8gxqzy8f4q7dg7r16jpa1cmk0fpcdi0";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8c52c840dc35f3fd17ec660e113ddbb53aa99076/recipes/with-editor";
@@ -77710,12 +77588,12 @@
x86-lookup = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "x86-lookup";
- version = "20161215.448";
+ version = "20180321.1802";
src = fetchFromGitHub {
owner = "skeeto";
repo = "x86-lookup";
- rev = "544a1ad4e8551c60e58e6c431470b6ef4ce7c5cb";
- sha256 = "1w2fhi5x0amjyzzdndp9lvm6i279pcjjs6zfhssly2lbxw4dpaky";
+ rev = "a72e282d3db72fc1078623f405c2874bd48b9205";
+ sha256 = "0ayjdq50kd3karg0rc9ffxdn8pv0fbf7yfbq5vics8p5w7fl55x0";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/27757b9b5673f5581e678e8cad719138db654415/recipes/x86-lookup";
@@ -77752,12 +77630,12 @@
xah-elisp-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xah-elisp-mode";
- version = "20180228.2206";
+ version = "20180328.1205";
src = fetchFromGitHub {
owner = "xahlee";
repo = "xah-elisp-mode";
- rev = "3a617b446fda59294b5ff67c0b86a0a6e9f15feb";
- sha256 = "1bj2w1r98db1jwirvbvxnbc8p7l9pz3n4l0w2rl9g6kqavdx8pnh";
+ rev = "78d6c6d675804c601737e2cffc46d6663bb203b5";
+ sha256 = "1p0irlff1qfkfqmcjj9l028x7a6d6dx72q732ix1mwb51vl3fb0b";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-elisp-mode";
@@ -77794,12 +77672,12 @@
xah-fly-keys = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xah-fly-keys";
- version = "20180313.1143";
+ version = "20180331.2108";
src = fetchFromGitHub {
owner = "xahlee";
repo = "xah-fly-keys";
- rev = "cef43c378743bd0073e9044b5cd4df212a022bd8";
- sha256 = "1qa4payi7r6ncg2dgp9frs6g8gmsc5mfaxssf84lgm3p3468y0fw";
+ rev = "4bb464eb0ea68cdd3f4c544371c876418b47107d";
+ sha256 = "0i8q15rygavs336nfvbg4riwsgyk10s796qff3bmcxi7l0v8byzq";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-fly-keys";
@@ -77857,12 +77735,12 @@
xah-math-input = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xah-math-input";
- version = "20180308.349";
+ version = "20180328.1515";
src = fetchFromGitHub {
owner = "xahlee";
repo = "xah-math-input";
- rev = "2904922958f746cbb77692564e4c4487ff31c9ab";
- sha256 = "1zk02fbkd9y6hy226lnqf31c3l5sync2m6gqj1m4pj4qqla98m1k";
+ rev = "6e240b83bd3bc19b0edf8a85413b216dbf27f441";
+ sha256 = "1ff3r1a3jgvv33sahi9ajs04m4sch9cmqwx0dlwkn1595smwk8k5";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-math-input";
@@ -78592,12 +78470,12 @@
yankpad = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yankpad";
- version = "20180220.1049";
+ version = "20180328.532";
src = fetchFromGitHub {
owner = "Kungsgeten";
repo = "yankpad";
- rev = "de672dab9df4a0bffb44cdadaace93d00d9a8848";
- sha256 = "1w0lkn1prv9xd4pn81kqxk26s37ia1xk0kz8qahcvjg7z4igyy9n";
+ rev = "e2ffe7d90bd5a88b794afa1b462f773d8b772db2";
+ sha256 = "0a5b8bdzi0h00bk2980mp5mfm1hb7hk5i6jlijmiin89bgs19xpc";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e64746d10f9e0158621a7c4dc41dc2eca6ad573c/recipes/yankpad";
@@ -78739,12 +78617,12 @@
yasnippet = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yasnippet";
- version = "20180310.1614";
+ version = "20180319.607";
src = fetchFromGitHub {
owner = "joaotavora";
repo = "yasnippet";
- rev = "5170f051ad39353ed46ae7ff7b67e50e0e27324c";
- sha256 = "1ssb1ljbm8i78qii15yhd488y3q1w2082lb2pcwly2axwa5a02kv";
+ rev = "fa6a71c42de7fecd58193e2fd3681a0225b71dc5";
+ sha256 = "0zxwqc2ksk43p47svhcxsbw8fazl7krarfj8d1i1r9nkwhx5sqqi";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5d1927dc3351d3522de1baccdc4ce200ba52bd6e/recipes/yasnippet";
@@ -78760,12 +78638,12 @@
yasnippet-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "yasnippet-snippets";
- version = "20180307.518";
+ version = "20180324.1124";
src = fetchFromGitHub {
owner = "AndreaCrotti";
repo = "yasnippet-snippets";
- rev = "2b4c4d7ef7e85a3b9306ce7da82a65cf243edc22";
- sha256 = "0v0q8ym8jp6pps6g9g0qnz9x39i4n4w937s8s6arf1f31fc73r52";
+ rev = "79fc648da3550ada25ec38cebe394c7e5ca8f7b9";
+ sha256 = "0sdd021wdighn71mgb9ih4qa8i0msx8sg390kjhqgqfvg8xzrfd4";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/25b8d4efe2e7833eb95dfdf33aa3ecc34af7a687/recipes/yasnippet-snippets";
@@ -79087,8 +78965,8 @@
src = fetchFromGitHub {
owner = "bbatsov";
repo = "zenburn-emacs";
- rev = "3a9ae671d01d9828b3e2935c80e8796cd3c1d77b";
- sha256 = "1kfwnwnnax22dlkc42rlw7lrdlpjxmh70sjnrrljpvi238scn5b2";
+ rev = "af752f46306eb710158904b89c1bf0d6786d0a4d";
+ sha256 = "0w3s3c1h7s5j02h7jgbnnh85cx1cmqb5jd8w6fgsp4jna6wn5627";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/zenburn-theme";
@@ -79624,4 +79502,4 @@
license = lib.licenses.free;
};
}) {};
- }
\ No newline at end of file
+ }
diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix
index 6b986aa7499..d23c735aba4 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix
@@ -82,10 +82,6 @@ self:
inherit (self.melpaPackages) ess ctable popup;
};
- ess-R-object-popup = super.ess-R-object-popup.override {
- inherit (self.melpaPackages) ess popup;
- };
-
# upstream issue: missing dependency highlight
evil-search-highlight-persist = markBroken super.evil-search-highlight-persist;
@@ -117,7 +113,7 @@ self:
ido-complete-space-or-hyphen = markBroken super.ido-complete-space-or-hyphen;
# upstream issue: missing file header
- initsplit = markBroken super.initsplit;
+ initsplit = super.initsplit;
# Expects bash to be at /bin/bash
ivy-rtags = markBroken super.ivy-rtags;
@@ -128,9 +124,6 @@ self:
# upstream issue: missing file header
link = markBroken super.link;
- # upstream issue: mismatched filename
- link-hint = markBroken super.link-hint;
-
# upstream issue: missing file header
maxframe = markBroken super.maxframe;
diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
index 294414f15ee..83f6a56da0a 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
@@ -125,48 +125,6 @@
license = lib.licenses.free;
};
}) {};
- ac-cake = callPackage ({ auto-complete, cake, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "ac-cake";
- version = "1.0.0";
- src = fetchFromGitHub {
- owner = "k1LoW";
- repo = "emacs-ac-cake";
- rev = "f01b3da7e2d20ea5a62daf62412c7dc1ad0130ff";
- sha256 = "12z8nq797hjy0bq5vzpcm7z7bdn0ixc3ma4cj3v51xnwmgknzk6c";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2257db76719cb1e3e2f79aff2b61073b655f9061/recipes/ac-cake";
- sha256 = "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl";
- name = "ac-cake";
- };
- packageRequires = [ auto-complete cake ];
- meta = {
- homepage = "https://melpa.org/#/ac-cake";
- license = lib.licenses.free;
- };
- }) {};
- ac-cake2 = callPackage ({ auto-complete, cake2, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "ac-cake2";
- version = "1.0.1";
- src = fetchFromGitHub {
- owner = "k1LoW";
- repo = "emacs-ac-cake2";
- rev = "ffbb679c0d5c261b05abde06d8d1d1e5d5990b6a";
- sha256 = "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b8b728c2caed96d7505cafc42d0d7ed49d6cadcd/recipes/ac-cake2";
- sha256 = "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy";
- name = "ac-cake2";
- };
- packageRequires = [ auto-complete cake2 ];
- meta = {
- homepage = "https://melpa.org/#/ac-cake2";
- license = lib.licenses.free;
- };
- }) {};
ac-capf = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ac-capf";
@@ -212,12 +170,12 @@
ac-clang = callPackage ({ auto-complete, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip, yasnippet }:
melpaBuild {
pname = "ac-clang";
- version = "2.0.2";
+ version = "2.1.0";
src = fetchFromGitHub {
owner = "yaruopooner";
repo = "ac-clang";
- rev = "d14b0898f88c9f2911ebf68c1cbaae09e28b534a";
- sha256 = "02f8avxvcpr3ns4f0dw72jfx9c89aib5c2j54qcfz66fhka9jnvq";
+ rev = "daddbea033d3c6f934e5043cc2fff8eca3b6e5f7";
+ sha256 = "1hp3xpv0kwmilfivif2smbbgknjyk8kcgp399dghdcq71qsxz3wr";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ffe0485048b85825f5e8ba95917d8c9dc64fe5de/recipes/ac-clang";
@@ -527,12 +485,12 @@
ac-php = callPackage ({ ac-php-core, auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "ac-php";
- version = "2.0.3";
+ version = "2.0.4";
src = fetchFromGitHub {
owner = "xcwen";
repo = "ac-php";
- rev = "cf9db85af2db9150e9d9b4fecad874e16ce43f0d";
- sha256 = "0gm15f5l91sh7syf60lnvlfnf3vivbk36gddsf3yndiwfsqh7xd0";
+ rev = "326721527b2f88df7227cdc41708912b2f9c8494";
+ sha256 = "1rrjzaa1qqzbnwp6ykk4qbdqlrwprdg2z4xqsb8098p052jjdpii";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php";
@@ -548,12 +506,12 @@
ac-php-core = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode, popup, s, xcscope }:
melpaBuild {
pname = "ac-php-core";
- version = "2.0.3";
+ version = "2.0.4";
src = fetchFromGitHub {
owner = "xcwen";
repo = "ac-php";
- rev = "cf9db85af2db9150e9d9b4fecad874e16ce43f0d";
- sha256 = "0gm15f5l91sh7syf60lnvlfnf3vivbk36gddsf3yndiwfsqh7xd0";
+ rev = "326721527b2f88df7227cdc41708912b2f9c8494";
+ sha256 = "1rrjzaa1qqzbnwp6ykk4qbdqlrwprdg2z4xqsb8098p052jjdpii";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php-core";
@@ -1562,110 +1520,6 @@
license = lib.licenses.free;
};
}) {};
- anything = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "anything";
- version = "1.3.9";
- src = fetchgit {
- url = "http://repo.or.cz/r/anything-config.git";
- rev = "6b9718fba257e6c2912ba70f9895251ab1926928";
- sha256 = "040znq4qv6rqjw05klriasysvsx6s6xn00ssc3acbqdqjgjk8l2a";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e1700e86cb35617178f5d7c61c88718ac7849f9b/recipes/anything";
- sha256 = "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj";
- name = "anything";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/anything";
- license = lib.licenses.free;
- };
- }) {};
- anything-exuberant-ctags = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "anything-exuberant-ctags";
- version = "0.1.2";
- src = fetchFromGitHub {
- owner = "k1LoW";
- repo = "anything-exuberant-ctags";
- rev = "97fa91eb04df11bdf4558fe7bb2f6aebf8be0d6c";
- sha256 = "01lw9159axg5w9bpdy55m4zc902zmsqvk213ky1nmgnln0fvq3rd";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/66cae648d534468e5e9f125679847fb876935f68/recipes/anything-exuberant-ctags";
- sha256 = "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk";
- name = "anything-exuberant-ctags";
- };
- packageRequires = [ anything ];
- meta = {
- homepage = "https://melpa.org/#/anything-exuberant-ctags";
- license = lib.licenses.free;
- };
- }) {};
- anything-replace-string = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "anything-replace-string";
- version = "0.9.2";
- src = fetchFromGitHub {
- owner = "k1LoW";
- repo = "anything-replace-string";
- rev = "1962f24243d6013bcef7e8d23136277d42e13130";
- sha256 = "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/39b7f3a8de2f7728b374c09a1387beb3f7595d2e/recipes/anything-replace-string";
- sha256 = "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71";
- name = "anything-replace-string";
- };
- packageRequires = [ anything ];
- meta = {
- homepage = "https://melpa.org/#/anything-replace-string";
- license = lib.licenses.free;
- };
- }) {};
- anything-sage = callPackage ({ anything, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, sage-shell-mode }:
- melpaBuild {
- pname = "anything-sage";
- version = "0.0.1";
- src = fetchFromGitHub {
- owner = "stakemori";
- repo = "anything-sage";
- rev = "8335657d3f0611bd5fc8858160bbe87dfdbaf0f2";
- sha256 = "1bcvin2694ypqgiw0mqk82riq7gw6ra10vbkzng1yp9jp2qr6wmm";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/07be4b11bbddb376e11616525e7b226c5a9f2296/recipes/anything-sage";
- sha256 = "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3";
- name = "anything-sage";
- };
- packageRequires = [ anything cl-lib sage-shell-mode ];
- meta = {
- homepage = "https://melpa.org/#/anything-sage";
- license = lib.licenses.free;
- };
- }) {};
- anything-tramp = callPackage ({ anything, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "anything-tramp";
- version = "0.8.5";
- src = fetchFromGitHub {
- owner = "masasam";
- repo = "emacs-anything-tramp";
- rev = "942affd6b7538d1e829ee257bbd829cb4e860cce";
- sha256 = "0njynjg7p7i5li668ldpvmnpc5w7bikcs4cmkf26vf5n714fvlc1";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/anything-tramp";
- sha256 = "053bi7b6d9aa6xwsgm0yxbklbs5sl3dgi529gsapj30lw68lh1vh";
- name = "anything-tramp";
- };
- packageRequires = [ anything emacs ];
- meta = {
- homepage = "https://melpa.org/#/anything-tramp";
- license = lib.licenses.free;
- };
- }) {};
anzu = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "anzu";
@@ -2023,36 +1877,36 @@
license = lib.licenses.free;
};
}) {};
- auth-password-store = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, password-store, seq }:
+ auth-source-pass = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
- pname = "auth-password-store";
- version = "3.0.0";
+ pname = "auth-source-pass";
+ version = "4.0.1";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "auth-password-store";
- rev = "6af0458a6b586cc5004fa652f23615433304924d";
- sha256 = "150cx8ida9bl0g84iq051rziy64ic2pxz6hn0blsys1qcp9lf8wa";
+ rev = "5690092e40c790384692d8e8da3451e6878d8c17";
+ sha256 = "1dv202z8briifd4aqn8yvn4kd6zi1cabb2p86qcjj40lzkgn6w3p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0f4d2a28373ba93da5b280ebf40c5a3fa758ea11/recipes/auth-password-store";
- sha256 = "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5";
- name = "auth-password-store";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5e268441634a6e58a00e577d6e2292fa226c11b8/recipes/auth-source-pass";
+ sha256 = "0icwdwz2zy3f9ynksr81pgq482iapsbx8lpyssiklyw0xgd1k8ak";
+ name = "auth-source-pass";
};
- packageRequires = [ cl-lib emacs password-store seq ];
+ packageRequires = [ emacs ];
meta = {
- homepage = "https://melpa.org/#/auth-password-store";
+ homepage = "https://melpa.org/#/auth-source-pass";
license = lib.licenses.free;
};
}) {};
auto-compile = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, packed }:
melpaBuild {
pname = "auto-compile";
- version = "1.4.2";
+ version = "1.4.3";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "auto-compile";
- rev = "8d117868a0a091389d528428136e60f951e9c550";
- sha256 = "1qkw8qzhqzk16kvk1200ha10gi6ny0saqvyqm6b1ww0iw3q1ic5c";
+ rev = "6ce4255ab9a0b010ef8414c5bd9a6d6d9eea012f";
+ sha256 = "013vw4sgw6hpz7kskilndv7i7ik40asrkgicghjbygwk0lj5ran3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/auto-compile";
@@ -2620,16 +2474,16 @@
bbcode-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bbcode-mode";
- version = "2.0.0";
+ version = "2.1.0";
src = fetchFromGitHub {
- owner = "ejmr";
+ owner = "lassik";
repo = "bbcode-mode";
- rev = "e693ab09c3f34cabfd185e7c249c0b5403f0a7e0";
- sha256 = "1xvxz9sk9l57a4kiiavxxdp0v241mfgiy2lg5ilacq1cd6xrrhky";
+ rev = "73c56a40301c8b017d3e64c08dccc80d1dc47e59";
+ sha256 = "0g0dxk33pz18awv7ncv64c2a4lmdx9sigppkvq2mb9za47azk8dh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/bbcode-mode";
- sha256 = "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1ef095d23cc043f5d14a9deea788ed71d90c586c/recipes/bbcode-mode";
+ sha256 = "1kfxzp0916gdphp4dkk4xbramsbqmg6mazvfqni86mra41rdq6sb";
name = "bbcode-mode";
};
packageRequires = [];
@@ -3250,12 +3104,12 @@
buffer-flip = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "buffer-flip";
- version = "2.0";
+ version = "2.1";
src = fetchFromGitHub {
owner = "killdash9";
repo = "buffer-flip.el";
- rev = "868aa9e04438d57746e0b1f5a13bcb9b64061c05";
- sha256 = "0b069g89b34s76ds3axmpiwl924fjd1jh6z6fdw5x0h0lj20pa87";
+ rev = "e093360e05164c78255866c1ac8f966aa38ba514";
+ sha256 = "1s35llycdhhclf9kl1q9l7zzzfqrnnvbiqv5csfw0mngfj0lz77f";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3924870cac1392a7eaeeda34b92614c26c674d63/recipes/buffer-flip";
@@ -3562,27 +3416,6 @@
license = lib.licenses.free;
};
}) {};
- cake = callPackage ({ anything, cake-inflector, fetchFromGitHub, fetchurl, historyf, lib, melpaBuild }:
- melpaBuild {
- pname = "cake";
- version = "1.4.3";
- src = fetchFromGitHub {
- owner = "k1LoW";
- repo = "emacs-cake";
- rev = "a7c9f3bee71eb3865060123d4d98e5397c2f967e";
- sha256 = "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/86ed5054ee2392a0e384443c945a5d4824238e95/recipes/cake";
- sha256 = "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr";
- name = "cake";
- };
- packageRequires = [ anything cake-inflector historyf ];
- meta = {
- homepage = "https://melpa.org/#/cake";
- license = lib.licenses.free;
- };
- }) {};
cake-inflector = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "cake-inflector";
@@ -3604,27 +3437,6 @@
license = lib.licenses.free;
};
}) {};
- cake2 = callPackage ({ anything, cake-inflector, dash, f, fetchFromGitHub, fetchurl, historyf, ht, json ? null, lib, melpaBuild, s }:
- melpaBuild {
- pname = "cake2";
- version = "2.1.0";
- src = fetchFromGitHub {
- owner = "k1LoW";
- repo = "emacs-cake2";
- rev = "0a9d0b3a1c49ba1730088416f50507f53221c70b";
- sha256 = "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/18e38d9cdb9f1a8cc05545c52c3a76265a9aa2ab/recipes/cake2";
- sha256 = "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x";
- name = "cake2";
- };
- packageRequires = [ anything cake-inflector dash f historyf ht json s ];
- meta = {
- homepage = "https://melpa.org/#/cake2";
- license = lib.licenses.free;
- };
- }) {};
calendar-norway = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "calendar-norway";
@@ -3751,6 +3563,27 @@
license = lib.licenses.free;
};
}) {};
+ call-graph = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, hierarchy, ivy, lib, melpaBuild, tree-mode }:
+ melpaBuild {
+ pname = "call-graph";
+ version = "0.1.0";
+ src = fetchFromGitHub {
+ owner = "beacoder";
+ repo = "call-graph";
+ rev = "0bbe292b1b9c7ba1d8a65ed5e475f6a53f5f9f27";
+ sha256 = "0kckjs7yg8d04nir5z3f00k05272kgma98794g0ycgfn1vrck0h0";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6acf099e2510c82b4b03e2f35051afc3d28af45/recipes/call-graph";
+ sha256 = "0cklr79gqqrb94jq8aq65wqriamay78vv9sd3jrvp86ixl3ig5xc";
+ name = "call-graph";
+ };
+ packageRequires = [ cl-lib emacs hierarchy ivy tree-mode ];
+ meta = {
+ homepage = "https://melpa.org/#/call-graph";
+ license = lib.licenses.free;
+ };
+ }) {};
camcorder = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }:
melpaBuild {
pname = "camcorder";
@@ -4772,12 +4605,12 @@
cmake-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cmake-mode";
- version = "3.11.0pre1";
+ version = "3.11.0";
src = fetchFromGitHub {
owner = "Kitware";
repo = "CMake";
- rev = "02edf08be2b9476f442b702c6c00447912425cc2";
- sha256 = "1ppq3g1525izfl4d8779rj6lq8jkgqh50wnbyb0cmj6bp7b7c9sz";
+ rev = "61fd4c742013a7f9139db190f936703b656540ff";
+ sha256 = "1iiyysw16asqj1c077gk6s9pqy8qij6d83kwxc59swc7xgcy1g0d";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/598723893ae4bc2e60f527a072efe6ed9d4e2488/recipes/cmake-mode";
@@ -5129,12 +4962,12 @@
company-ansible = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company-ansible";
- version = "0.6.0";
+ version = "0.7.0";
src = fetchFromGitHub {
owner = "krzysztof-magosa";
repo = "company-ansible";
- rev = "2c30c3bdb8316b27d5c1832b944cb146d00de456";
- sha256 = "183hyy5vy7xs6hwsk8nrylck8w5czcqwzfx0wik4ppx8011jzis1";
+ rev = "42753d43333c6e4ad83797f0234149b76b463369";
+ sha256 = "1g93vnizl42k52ar47g7yn2csjyzsqvwb6siwbpfvjgbsr5d5d01";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7b44cd4bd9f9a7c942ca3f3bd88b2ce61ffff130/recipes/company-ansible";
@@ -5486,12 +5319,12 @@
company-php = callPackage ({ ac-php-core, cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company-php";
- version = "2.0.3";
+ version = "2.0.4";
src = fetchFromGitHub {
owner = "xcwen";
repo = "ac-php";
- rev = "cf9db85af2db9150e9d9b4fecad874e16ce43f0d";
- sha256 = "0gm15f5l91sh7syf60lnvlfnf3vivbk36gddsf3yndiwfsqh7xd0";
+ rev = "326721527b2f88df7227cdc41708912b2f9c8494";
+ sha256 = "1rrjzaa1qqzbnwp6ykk4qbdqlrwprdg2z4xqsb8098p052jjdpii";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/company-php";
@@ -5825,6 +5658,27 @@
license = lib.licenses.free;
};
}) {};
+ conllu-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parsec }:
+ melpaBuild {
+ pname = "conllu-mode";
+ version = "0.1.0";
+ src = fetchFromGitHub {
+ owner = "odanoburu";
+ repo = "conllu-mode";
+ rev = "993fd6bc2b5c7b70815a3ecede1642f607513615";
+ sha256 = "0x6ga4h084qcf9h6nak7c66qq1slq907n64sqx41gnd3zbscmwxa";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/444f943baddfeafe29708d6d68aeeeedbb7aa7bd/recipes/conllu-mode";
+ sha256 = "1wffvvs8d0xcnz6mcm9rbr8imyj4npyc148yh0gzfzlgjm0fiz1v";
+ name = "conllu-mode";
+ };
+ packageRequires = [ cl-lib emacs parsec ];
+ meta = {
+ homepage = "https://melpa.org/#/conllu-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
connection = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "connection";
@@ -6059,12 +5913,12 @@
counsel-etags = callPackage ({ counsel, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "counsel-etags";
- version = "1.4.1";
+ version = "1.5.1";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "counsel-etags";
- rev = "9d70490b551503aac22241c8089a46e55dd3deba";
- sha256 = "03yr0y3z0jgh8c1db43nq0888rr561f6ks5fmf254aibh63schff";
+ rev = "307638efaa172539e77fe425626eac99f7abf654";
+ sha256 = "0c0fqn9hin9738bcxib354al6pd64arj2pccacjiyg1sa5h3mwj3";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/87528349a3ab305bfe98f30c5404913272817a38/recipes/counsel-etags";
@@ -6122,12 +5976,12 @@
counsel-tramp = callPackage ({ counsel, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "counsel-tramp";
- version = "0.3.1";
+ version = "0.4.1";
src = fetchFromGitHub {
owner = "masasam";
repo = "emacs-counsel-tramp";
- rev = "d4c35e1aca724af6a0084362a027fdd70876d2c8";
- sha256 = "0dflm700n9wzn2nrwlbrh1558zv0c9fzzrs43d1kqvzw98wihfz2";
+ rev = "3f5ae75a6bde00bffeb2877b4ed4bd45610c0dfa";
+ sha256 = "06dhhjrgpikzpdl1hck0ckjbx8yzx8jbymb3ajfxglgvrvid4l1k";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e1822b735b6bd533f658bd64ddccda29e19e9a5e/recipes/counsel-tramp";
@@ -6143,12 +5997,12 @@
coverage = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, ov }:
melpaBuild {
pname = "coverage";
- version = "0.2";
+ version = "0.3";
src = fetchFromGitHub {
owner = "trezona-lecomte";
repo = "coverage";
- rev = "f7e78bb9502d3893ef876274c992743f49c0a1a7";
- sha256 = "01545iy2gaxyd4i8gawgxqi9gbkrjk20djhvc59finnjrblzccn3";
+ rev = "c73d984168955ca0f47f44b0464aa45282df42b6";
+ sha256 = "1kn61j91x4r4kc498y2jas5il4pc4qzhkj8392g2qiq5m3lbv4vl";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cd70e138534551dd12ba4d165ba56fbd1e033241/recipes/coverage";
@@ -6605,12 +6459,12 @@
cython-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cython-mode";
- version = "0.27.3";
+ version = "0.28.1";
src = fetchFromGitHub {
owner = "cython";
repo = "cython";
- rev = "8ad16fc871be075f889d5e7c2892db3e4c8ce978";
- sha256 = "144mqqyaid6w9qx38m88snd3c8qm2k1a73vs21h9cmnp19gigfby";
+ rev = "89cfbb4a3a0540abeec1703fd3ee31eba9293936";
+ sha256 = "1ndabmdzqfhkg3z9zaavp5bz8l86n4g9lwi0ji0vs7q7rpsykqdw";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/be9bfabe3f79153cb859efc7c3051db244a63879/recipes/cython-mode";
@@ -6665,6 +6519,27 @@
license = lib.licenses.free;
};
}) {};
+ daemons = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "daemons";
+ version = "1.1.0";
+ src = fetchFromGitHub {
+ owner = "cbowdon";
+ repo = "daemons.el";
+ rev = "75b54be70a909282b20c872b5f01d30e18e19f84";
+ sha256 = "0jv1i66b035yvj2mj83ihylk6vv7skljnr6kxa15zzj4daw9462c";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1f780485e72ae2885f698fdab0156855f70831f1/recipes/daemons";
+ sha256 = "14givkrw9p0m261hawahzi0n8jarapb63kv1s62faq57mqnq23jr";
+ name = "daemons";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/daemons";
+ license = lib.licenses.free;
+ };
+ }) {};
dante = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild, s }:
melpaBuild {
pname = "dante";
@@ -6857,12 +6732,12 @@
datetime = callPackage ({ emacs, extmap, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "datetime";
- version = "0.4";
+ version = "0.4.1";
src = fetchFromGitHub {
owner = "doublep";
repo = "datetime";
- rev = "2a92d80cdc7febf620cd184cf1204a68985d0e8b";
- sha256 = "0lzdgnmvkvap5j8hvn6pidfnc2ax317sj5r6b2nahllhh53mlr4j";
+ rev = "d8674ac11f9ebb702e5bbac10a4a6e5542958ef5";
+ sha256 = "19d4wximzwdcs0i2r48k6m60wwxcx5f89jw75k4hr0wvx0352a82";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/91ef4352603cc69930ab3d63f0a90eee63f5f328/recipes/datetime";
@@ -7235,12 +7110,12 @@
dim-autoload = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dim-autoload";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchFromGitHub {
owner = "tarsius";
repo = "dim-autoload";
- rev = "c91edab065f413910354940742b35bdffeb52029";
- sha256 = "0v4fgbh1byv89iiszifr31j4y2s95xwcq0g9iizxiww7mjrfggyi";
+ rev = "788320fe089fafbdf1cb09d2ab4d29d64a804e21";
+ sha256 = "0iyhjww7p274x418n1iw1xj2fkmn5k9icav0jyzbwmy83a2nmr52";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/66b1a81dfd09a2859ae996d5d8e3d704857a340f/recipes/dim-autoload";
@@ -7571,12 +7446,12 @@
direnv = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, with-editor }:
melpaBuild {
pname = "direnv";
- version = "1.3.0";
+ version = "1.4.0";
src = fetchFromGitHub {
owner = "wbolster";
repo = "emacs-direnv";
- rev = "5b55dac12467689083ff995777f54a304ff47be1";
- sha256 = "0sjrnab8rx1bpnxim268b8jfpyh8h0iy3j38925r0jqjgjb19ksn";
+ rev = "03c4edffba45722a9511d6d10992578f140d095f";
+ sha256 = "1b8xp0yprpy1sc8hmim6jcdmgpc8yj6wjzgj4rdy77k7l96016v8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5419809ee62b920463e359c8e1314cd0763657c1/recipes/direnv";
@@ -7809,12 +7684,12 @@
docker-compose-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, yaml-mode }:
melpaBuild {
pname = "docker-compose-mode";
- version = "1.0.0";
+ version = "1.1.0";
src = fetchFromGitHub {
owner = "meqif";
repo = "docker-compose-mode";
- rev = "ae25b0e01394f94995f4b0ceaab1e04eb4b9acbd";
- sha256 = "14xri92dcj52vw1vhrnicibrn9y010zv8w7jw6j3q9lrpmr073lr";
+ rev = "7f4cd0b1718df2ab93d51bd395b2f37df9482265";
+ sha256 = "1fbcxwfvm33xcdj3cs26d9i1zyrryyjjkv7sc3mfxd45nq8d3ivj";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/37dd4c1fc11d22598c6faf03ccc860503a68b950/recipes/docker-compose-mode";
@@ -7895,14 +7770,14 @@
pname = "doom";
version = "1.3";
src = fetchFromGitHub {
- owner = "emacsorphanage";
+ owner = "kensanata";
repo = "doom";
rev = "5e2d3f54e5b84eaa533cbdb6cf17b1b6009f0730";
sha256 = "04h1hlsc83w4dppw9m44jq7mkcpy0bblvnzrhvsh06pibjywdd73";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7e41ed64142be89a62fddeceee5e39603a18525c/recipes/doom";
- sha256 = "098q77lix7kwpmarv26yndyk1yy1h4k3l9kaf3g7sg6ji6k7d3wl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0960deb3b1d106ad2ffa95a44f34cb9efc026f01/recipes/doom";
+ sha256 = "1ji2fdiw5b13n76nv2wvkz6v155b0qgh1rxwmv3m5nnrbmklfjh5";
name = "doom";
};
packageRequires = [ cl-lib ];
@@ -8103,12 +7978,12 @@
dtrt-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dtrt-indent";
- version = "0.6";
+ version = "0.7";
src = fetchFromGitHub {
owner = "jscheid";
repo = "dtrt-indent";
- rev = "3ea5136bde1240f93fbf3ce30fffc4f279a58d27";
- sha256 = "0lkc8y09lhlpg7vrn2459c5fxn0nvxbzqhwadmkgc046i3aapqpg";
+ rev = "0ac070c9576e4ebab12cd6800ac2ac3abcecc2c1";
+ sha256 = "0dambn5l0wvbhccvhh5hbz9hw66y4mp1la3wj85dl9kgr7hq1ry7";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/61bcbcfa6c0f38a1d87f5b6913b8be6c50ef2994/recipes/dtrt-indent";
@@ -8145,12 +8020,12 @@
dumb-jump = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }:
melpaBuild {
pname = "dumb-jump";
- version = "0.5.1";
+ version = "0.5.2";
src = fetchFromGitHub {
owner = "jacktasia";
repo = "dumb-jump";
- rev = "64c0759432334465ccea115d83600b468f86e3be";
- sha256 = "00vhxd7z7fw2cwdzgvfbdzfp668dfaw83c95kkicmmdzlabiz50i";
+ rev = "260054500d4731c36574b6cbc519de29fdd22f43";
+ sha256 = "00ph85vp8sa3k99qrdxfz4l8zx121q9xf47vvspzg26bk9l4nwin";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dumb-jump";
@@ -8354,12 +8229,12 @@
eacl = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }:
melpaBuild {
pname = "eacl";
- version = "1.1.1";
+ version = "1.1.2";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "eacl";
- rev = "ec601f3a8da331dd0a9e7a93d40ae3925bd06700";
- sha256 = "1kgayh2q97rxzds5ba1zc9ah08kbah9lqbwhmb7pxxgvgx9yfagg";
+ rev = "80113a9f6cc246cef67e3e20ec052788c38ab116";
+ sha256 = "1pwppn0m288d6j9b7cdshgc3rxv0nfs94klc1fpsyfxqx0a6f23z";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8223bec7eed97f0bad300af9caa4c8207322d39a/recipes/eacl";
@@ -8372,22 +8247,22 @@
license = lib.licenses.free;
};
}) {};
- easy-hugo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ easy-hugo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }:
melpaBuild {
pname = "easy-hugo";
- version = "2.8.21";
+ version = "3.2.23";
src = fetchFromGitHub {
owner = "masasam";
repo = "emacs-easy-hugo";
- rev = "61a504616705feae8c3fd8b01bf315e2cb89f699";
- sha256 = "1lr2hbz4gxcn2r5m3hx4izk8aawgy0fls0isp6cvcgs1s54s2kxi";
+ rev = "161354d0f06e2cdbe63610fb11880ae54e050181";
+ sha256 = "12dxb0kzb02h6zal65n6bviy3zdkqjfbzsf7ncsbbmq8f1xrajmc";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/easy-hugo";
sha256 = "1m7iw6njxxsk82agyqay277iql578b3wz6z9wjs8ls30ps8s2b8g";
name = "easy-hugo";
};
- packageRequires = [ emacs ];
+ packageRequires = [ emacs popup ];
meta = {
homepage = "https://melpa.org/#/easy-hugo";
license = lib.licenses.free;
@@ -8396,12 +8271,12 @@
easy-jekyll = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "easy-jekyll";
- version = "1.5.12";
+ version = "1.6.12";
src = fetchFromGitHub {
owner = "masasam";
repo = "emacs-easy-jekyll";
- rev = "9a66d5c5dddac7d5b924df0c3bb414d3f797d8a5";
- sha256 = "0qx6lgpg2szjgy1a3a856klm7vh544braq8v2s7f81lq0ks2bjhj";
+ rev = "faeff895ab2aa0ee9c6df18046817e8a3f0b62a1";
+ sha256 = "1dp1r16rr5gqbh3aw900v2jz146c3qnlbjf5k75fazdglkbnagxk";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c3f281145bad12c27bdbef32ccc07b6a5f13b577/recipes/easy-jekyll";
@@ -9304,6 +9179,27 @@
license = lib.licenses.free;
};
}) {};
+ elisp-def = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
+ melpaBuild {
+ pname = "elisp-def";
+ version = "1.0";
+ src = fetchFromGitHub {
+ owner = "Wilfred";
+ repo = "elisp-def";
+ rev = "5e0d766a5db537f4e7145c2053c22829d736ceba";
+ sha256 = "0l9az09yw40rr2xrvf01c3idfqplddr1kk880qscnzj8v9p06l4x";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1f027b844efdc5946d2ad80d7052a8f3b96aac3d/recipes/elisp-def";
+ sha256 = "1y29nsgjv9nb03g0jc5hb1a8k23r54ivdlv9h0a384cig8i91hsz";
+ name = "elisp-def";
+ };
+ packageRequires = [ dash emacs f s ];
+ meta = {
+ homepage = "https://melpa.org/#/elisp-def";
+ license = lib.licenses.free;
+ };
+ }) {};
elisp-lint = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elisp-lint";
@@ -9538,12 +9434,12 @@
elpy = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, find-file-in-project, highlight-indentation, lib, melpaBuild, pyvenv, s, yasnippet }:
melpaBuild {
pname = "elpy";
- version = "1.18.0";
+ version = "1.19.0";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "elpy";
- rev = "30cb5e3c344edef572b6cffac94c6ff80bf6595f";
- sha256 = "17iwdaly9kw17ih86rk9w1iswn8r6vvj9sh71picsxg6gqdrqnrk";
+ rev = "8b04039b8112fd18392861718dc30ba011626dee";
+ sha256 = "0yyn1a8sdn8avmwmlg98365irr9b2rx2jrjxs3y93d1bhlmr816i";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1d8fcd8745bb15402c9f3b6f4573ea151415237a/recipes/elpy";
@@ -9564,6 +9460,27 @@
license = lib.licenses.free;
};
}) {};
+ elscreen = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "elscreen";
+ version = "2018snapshot3snapshot21";
+ src = fetchFromGitHub {
+ owner = "knu";
+ repo = "elscreen";
+ rev = "02164afab2c5fbff6e4aa7c59e0daedc6c504772";
+ sha256 = "1jzp7w2c9xl8x8kdxcchgp8s3ygvj70pi2vwwg1qilkya7yv61p0";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e6140694c1dea0a573586d23d1f63d46c9b22936/recipes/elscreen";
+ sha256 = "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s";
+ name = "elscreen";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/elscreen";
+ license = lib.licenses.free;
+ };
+ }) {};
elscreen-fr = callPackage ({ elscreen, fetchFromGitHub, fetchurl, lib, melpaBuild, seq }:
melpaBuild {
pname = "elscreen-fr";
@@ -9630,12 +9547,12 @@
elx = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elx";
- version = "1.2.1";
+ version = "1.2.2";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "elx";
- rev = "9f32e91ebbaebd7f1125107dce2aa979827b26c0";
- sha256 = "1hc4jw2fy25ri2hh3xw7sp67yfl2jvrgj1a25xa6svchjq3h1yf2";
+ rev = "c5fb4853d8a7d266c8d484522cbaa6b31e745695";
+ sha256 = "1lc9kdflssp4j220p252hskd5ikl0fbvhqp6fksfynrj1j02p4jg";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/elx";
@@ -10028,12 +9945,12 @@
emojify = callPackage ({ emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, seq }:
melpaBuild {
pname = "emojify";
- version = "0.4";
+ version = "1.0";
src = fetchFromGitHub {
owner = "iqbalansari";
repo = "emacs-emojify";
- rev = "4eccfc7ce43d4dfd3cf65ea86b2975abb4b4e9ad";
- sha256 = "1n5pmcd6d71pcgjwkqnmh6midcyp7ahc5yry3r38my3shrwirqc2";
+ rev = "9fac58de9b8f7539bfd4c6983bc826e27d060b30";
+ sha256 = "1z5j4nr9c6806f6ys4p3b2byxca7zc34ap1bysai8nvzxz02rzf6";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/488d2751b5fd3bf00f5a6f0545530f44563b86d7/recipes/emojify";
@@ -10101,12 +10018,12 @@
enh-ruby-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "enh-ruby-mode";
- version = "20171101";
+ version = "20180330";
src = fetchFromGitHub {
owner = "zenspider";
repo = "enhanced-ruby-mode";
- rev = "9467cd7fc8b6bb3caf644b223e3046fc32013ccb";
- sha256 = "0spsgfkka6sld8ac3m2biydyp8xj84vxa0w7apqvhhmfk3klbbhf";
+ rev = "c9c39ff07f8cf45814071a77b559477bd57bc3b1";
+ sha256 = "1w563cnxadmjbfnwbazqazrpmw2k5xyk4yaxgfk2glxahk4dr0fn";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cd1ac1ce69b77b11f34c4175611a852e7ec0806c/recipes/enh-ruby-mode";
@@ -10486,12 +10403,12 @@
erlang = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erlang";
- version = "20.2.4";
+ version = "20.3.2";
src = fetchFromGitHub {
owner = "erlang";
repo = "otp";
- rev = "13c6a4bf01d39a5002e09ef1f82619cde9f2c90c";
- sha256 = "1j8fqzaw36j8naafrrq1s329jlvlb06ra1f03hl76xr0bbxm44ks";
+ rev = "c5ee502e6031986983d3596745cad7fd547fd9c2";
+ sha256 = "0cd7rz32cxghxb2q7g3p52sxbhwqn4pkjlf28hy1dms6q7f85zv1";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d9cd526f43981e0826af59cdc4bb702f644781d9/recipes/erlang";
@@ -11010,12 +10927,12 @@
eterm-256color = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, xterm-color }:
melpaBuild {
pname = "eterm-256color";
- version = "0.3.12";
+ version = "0.3.13";
src = fetchFromGitHub {
owner = "dieggsy";
repo = "eterm-256color";
- rev = "89b20de890bc890331abe2d5e27a7e3129cde7b8";
- sha256 = "1bh0wqz2wkp8i1g8r8wgqzny0f5igflca5hkwq9p8ql84jkwlm69";
+ rev = "dab96af559deb443c4c9c00e23389926e1607192";
+ sha256 = "0ysxblc90kjcz84siprnyxwh94scflivqbxylzkvjm7hbx93rsh1";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e556383f7e18c0215111aa720d4653465e91eff6/recipes/eterm-256color";
@@ -11910,22 +11827,22 @@
license = lib.licenses.free;
};
}) {};
- exato = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild, thingatpt-plus }:
+ exato = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "exato";
- version = "0.0.5";
+ version = "0.0.6";
src = fetchFromGitHub {
owner = "ninrod";
repo = "exato";
- rev = "ba21cd2c8d0588e1c70ba89ebad6df247605e03f";
- sha256 = "12xqysbdnkvz220qf0jz2v40809hcmdmga10ac74yhg00h25nll6";
+ rev = "70f7ca2a4c6de0392e5e54ac4f16c96daa106be6";
+ sha256 = "0ns43whqcq3cv9vh8wbakj5fgs0lsn8f3q1rgl4rw4mfgbvv85pm";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/939efbcb9b40a2df5ef14e653fb242a8e37c72f9/recipes/exato";
sha256 = "1h2dd3yhv1n0sznznw8ncx98g53hgi1rg1zkd0nmldih2rd5qisn";
name = "exato";
};
- packageRequires = [ evil thingatpt-plus ];
+ packageRequires = [ emacs evil ];
meta = {
homepage = "https://melpa.org/#/exato";
license = lib.licenses.free;
@@ -12077,22 +11994,30 @@
license = lib.licenses.free;
};
}) {};
- exwm-x = callPackage ({ bind-key, cl-lib ? null, exwm, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper, switch-window }:
+ exwm-x = callPackage ({ bind-key, cl-lib ? null, counsel, exwm, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild, swiper, switch-window }:
melpaBuild {
pname = "exwm-x";
- version = "1.7.2";
+ version = "1.8.1";
src = fetchFromGitHub {
owner = "tumashu";
repo = "exwm-x";
- rev = "e50edd9e4174b729fdbc5750221c5e49b772e9c5";
- sha256 = "0kx4db5mdm295d4gyx88xjgivhsnl6f5p24smvwi1wf3jv35rnds";
+ rev = "4f7946db67d6599baba6b3961e8f543a68707742";
+ sha256 = "00lcn5106xig2y9gyir1f1gzyp2i05rwq1lbbbah8aipkdi3z9xl";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a0e6e23bcffdcd1e17c70599c563609050e5de40/recipes/exwm-x";
sha256 = "1d9q57vz63sk3h1g5gvp9xnmqkpa73wppmiy2bv8mxk11whl6xa3";
name = "exwm-x";
};
- packageRequires = [ bind-key cl-lib exwm swiper switch-window ];
+ packageRequires = [
+ bind-key
+ cl-lib
+ counsel
+ exwm
+ ivy
+ swiper
+ switch-window
+ ];
meta = {
homepage = "https://melpa.org/#/exwm-x";
license = lib.licenses.free;
@@ -12224,6 +12149,27 @@
license = lib.licenses.free;
};
}) {};
+ faff-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "faff-theme";
+ version = "2.0";
+ src = fetchFromGitHub {
+ owner = "WJCFerguson";
+ repo = "emacs-faff-theme";
+ rev = "0835c25b5e4ae7a79f0c1c4c44867f2d2e73b642";
+ sha256 = "0msh7w8qmrd9977zamyh0qifzf5bwl6g1012gc8lsr995c6gwm87";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0b35c169fe56a5612ff5a4242140f617fdcae14f/recipes/faff-theme";
+ sha256 = "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g";
+ name = "faff-theme";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/faff-theme";
+ license = lib.licenses.free;
+ };
+ }) {};
fancy-battery = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fancy-battery";
@@ -12457,12 +12403,12 @@
find-file-in-project = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }:
melpaBuild {
pname = "find-file-in-project";
- version = "5.5.2";
+ version = "5.6.0";
src = fetchFromGitHub {
owner = "technomancy";
repo = "find-file-in-project";
- rev = "aba912a73d1f3fcff0d184b49008a2fa1655ad7e";
- sha256 = "145n04lid9alrm8nl6gfnll75jz1ssli48pbsc9zyva00ryk83my";
+ rev = "ad6c8fce30ac927b4c2297894b6436e1cf724501";
+ sha256 = "1mq544h03laphwvcff2qaxdbb7krmnw1vxmnc9jchz8ascx2x28n";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/find-file-in-project";
@@ -12583,12 +12529,12 @@
fish-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fish-mode";
- version = "0.1.3";
+ version = "0.1.4";
src = fetchFromGitHub {
owner = "wwwjfy";
repo = "emacs-fish";
- rev = "cd0387f7f1d5c50e080091f86ca97d8a67d603a6";
- sha256 = "0q4cq1rkiz5mjxhp7p5awmw59q1yjb2sryc9i54cwhr5dwwqf95k";
+ rev = "bac709ac1235751952d6022dddc6307d9135d096";
+ sha256 = "0a74ghmjjrxfdhk4mvq6lar4w6l6lc4iilabs99smqr2fn5rsslq";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/efac97c0f54a3300251020c4626056526c18b441/recipes/fish-mode";
@@ -12776,22 +12722,22 @@
license = lib.licenses.free;
};
}) {};
- flower = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ flower = callPackage ({ clomacs, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flower";
- version = "0.3.6";
+ version = "0.4.1";
src = fetchFromGitHub {
owner = "PositiveTechnologies";
repo = "flower";
- rev = "2c89a7b0bc9d7b2e95d98e159a059d41ae43933f";
- sha256 = "1ilj0wa53qs8863d7ri9k8m57jd4n2zm3ijs3s2i7fn8a3svmmhy";
+ rev = "98c53b03da698833058b9ad6b6eb8be46cfd00f6";
+ sha256 = "08wq66gvqy14mcpm8x14xz3hvw4h7rcd5ivynma91d4358qrmqap";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c8a731715d360aea9af2b898242fd4eee5419d14/recipes/flower";
sha256 = "1cb9ppgspdrg4yrrlq4sfajpa6s7xiwvdf9b3947rmmxizgqgynd";
name = "flower";
};
- packageRequires = [];
+ packageRequires = [ clomacs emacs ];
meta = {
homepage = "https://melpa.org/#/flower";
license = lib.licenses.free;
@@ -13388,12 +13334,12 @@
flycheck-pycheckers = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-pycheckers";
- version = "0.5";
+ version = "0.7.1";
src = fetchFromGitHub {
owner = "msherry";
repo = "flycheck-pycheckers";
- rev = "6f7c6d7db4d3209897c4b15511bfaed4562ac5e4";
- sha256 = "0mg2165zsrkn8w7anjyrfgkr66ynhm1fv43f5p8wg6g0afss9763";
+ rev = "bb814165f12ad25d93f6c224502887c89089e750";
+ sha256 = "14g3ia2nr12068rq1695lz5xnm30x8ngbcq1pxqf0pmaka4akf8l";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/af36dca316b318d25d65c9e842f15f736e19ea63/recipes/flycheck-pycheckers";
@@ -14333,12 +14279,12 @@
fountain-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fountain-mode";
- version = "2.5.0";
+ version = "2.5.3";
src = fetchFromGitHub {
owner = "rnkn";
repo = "fountain-mode";
- rev = "ee20f7a3bcb86b661a38480acf853c1da2db6d26";
- sha256 = "0y7ji7p3blgzbwsz434346g835hzjs896hd7jli1ig0b9b0l43my";
+ rev = "8269066a9035fcf50eb835de3745a62c1cb96660";
+ sha256 = "1s1wyhjdyp12iz3zk333z5wlbxl5x3hki9q16164fk9ifhkrppxd";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/913386ac8d5049d37154da3ab32bde408a226511/recipes/fountain-mode";
@@ -14372,6 +14318,27 @@
license = lib.licenses.free;
};
}) {};
+ frameshot = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "frameshot";
+ version = "0.1.1";
+ src = fetchFromGitHub {
+ owner = "tarsius";
+ repo = "frameshot";
+ rev = "4e7b252e9fd9227de8b25f384af2c855ec45279a";
+ sha256 = "020irzkqr7gs99xsvdd0haja0jvw46dk40xi7ab0m3cq7957srjh";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e5cfaa4b5fda97054d45691fad9d79b559f2df14/recipes/frameshot";
+ sha256 = "1z5f988m9s25miyxbhaxk6m4af9afvblb2p5mdidva04szjklr70";
+ name = "frameshot";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/frameshot";
+ license = lib.licenses.free;
+ };
+ }) {};
free-keys = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "free-keys";
@@ -14614,12 +14581,12 @@
fwb-cmds = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fwb-cmds";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchFromGitHub {
owner = "tarsius";
repo = "fwb-cmds";
- rev = "7d4abf8aa13b2235e4e2f0bb9049ebd6b491f710";
- sha256 = "10xjs8gm9l3riffxip1ffg8xhcf8srffh01yn6ifyln5f70b063d";
+ rev = "90258a5c7dbbaa2ac227e0fb4ff6c7d5aec3628f";
+ sha256 = "1xwvv8wjgdaz96v1x1xc5w697bfvcanlcixd0n5qbx6ryakqrb72";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fe40cdeb5e19628937820181479897acdad40200/recipes/fwb-cmds";
@@ -14677,12 +14644,12 @@
gams-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gams-mode";
- version = "6.3";
+ version = "6.4";
src = fetchFromGitHub {
owner = "ShiroTakeda";
repo = "gams-mode";
- rev = "900e1788695d91dde2a3d7fee97681a3380285de";
- sha256 = "1lix0x2gj6lrcx6imr5w3scyix99526fwpx0vzs1dzxfzglscjja";
+ rev = "2d6b5c29d84a42421ddc2f7f1e9c3a141d81c31c";
+ sha256 = "0cri329g0b7ywqarg4jlmry574z7v15gdd9j7jnikq1s2jjgnb85";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c895a716636b00c2a158d33aab18f664a8601833/recipes/gams-mode";
@@ -14761,12 +14728,12 @@
geiser = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "geiser";
- version = "0.9";
+ version = "0.10";
src = fetchFromGitHub {
owner = "jaor";
repo = "geiser";
- rev = "8ef6a9321d81ff478cfd376023eb84b8a819a991";
- sha256 = "08aha9lxdxix1jq0vc3am9wsyivj6vjpfs8frm797aca3bwaam0j";
+ rev = "775d1d734a677274fbbf4af780592bb3768d3f9b";
+ sha256 = "086qlii1w7sqxwnxwxvc4d6d71p829jabhgwvi0l0bjkxn7bx8pq";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b0fe32d24cedd5307b4cccfb08a7095d81d639a0/recipes/geiser";
@@ -14947,22 +14914,22 @@
license = lib.licenses.free;
};
}) {};
- ghub = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ ghub = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }:
melpaBuild {
pname = "ghub";
- version = "1.3.0";
+ version = "2.0.0";
src = fetchFromGitHub {
owner = "magit";
repo = "ghub";
- rev = "d8ec78184ec82d363fb0ac5bab724f390ee71d3d";
- sha256 = "194nf5kjkxgxqjmxlr9q6r4p9kxcsm9qx8pcagxbhvmfyh6km71h";
+ rev = "ae37bef2eb3afb8232bb0a6f7306a8da2390abf4";
+ sha256 = "1k8bim7yk3swpzsx5lwm6qbjfqf2lsssir0zlqzrkid61d3ixfgy";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/70a4dbd62fd6ebb4e056d0e97fa1a958437ddc91/recipes/ghub";
sha256 = "031bzp61aal2id5sazwjz30svydjvxvphw5wbv5cyy4dqyh7w2ps";
name = "ghub";
};
- packageRequires = [ emacs ];
+ packageRequires = [ emacs let-alist ];
meta = {
homepage = "https://melpa.org/#/ghub";
license = lib.licenses.free;
@@ -15118,12 +15085,12 @@
git-commit = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, with-editor }:
melpaBuild {
pname = "git-commit";
- version = "2.11.0";
+ version = "2.12.1";
src = fetchFromGitHub {
owner = "magit";
repo = "magit";
- rev = "4ad2ebfef0afa7e5f5fb85e8d1146da613804fe5";
- sha256 = "1zvib46hn2c0g2zdnf4vcwjrs9dj5sb81hpqm7bqm8f97p9dv6ym";
+ rev = "44508d71fb400910adb5d0594b56d3c34aa3a5de";
+ sha256 = "0cpcdrikfcmkb6sj13bvznilyk8yc054pq5md874s3j224bdxcnx";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/git-commit";
@@ -15244,12 +15211,12 @@
git-lens = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-lens";
- version = "0.4.2";
+ version = "0.7.0";
src = fetchFromGitHub {
owner = "pidu";
repo = "git-lens";
- rev = "2d1d94fd2e8a17025224ae2224c5f44d8482dc64";
- sha256 = "1d0vk8344n4lcdcqxkv44qc7f3753mpy76hmgf8xi60kyajvjrd7";
+ rev = "ea49e2e005af977a08331f8caa8f64d102b3b932";
+ sha256 = "0prx0xbnhhp46c09nnzpz07jgr3s5ngrw8zjksf48abr8acwywfv";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/66fd7c0642e8e61b883d2030f88892d039380475/recipes/git-lens";
@@ -15328,12 +15295,12 @@
git-timemachine = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-timemachine";
- version = "4.4";
+ version = "4.5";
src = fetchFromGitHub {
owner = "pidu";
repo = "git-timemachine";
- rev = "020d02cd77df6bf6f0efd4d4c597aad2083b6302";
- sha256 = "1g7gxa2snh8ya8r3wim834qszhcmpp154gnvqkc3b1gw8x7jdrql";
+ rev = "dbcb92ffaa5f8350d47f4fbd74512f4000b8c043";
+ sha256 = "1ml06jfjyrcqmbpr5hqvbpi3yy6l2aa836jq8qjla1h74g9qka7z";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/41e95e41fc429b688f0852f58ec6ce80303b68ce/recipes/git-timemachine";
@@ -15370,12 +15337,12 @@
gitattributes-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gitattributes-mode";
- version = "1.2.6";
+ version = "1.2.7";
src = fetchFromGitHub {
owner = "magit";
repo = "git-modes";
- rev = "9f18eca514d242816a4969e86c4cfd2cf4dfe401";
- sha256 = "0k380f9ff15gg724c2spfd9qml97k24bhn3h9ipv1c7rn9qvhdhc";
+ rev = "b08ac12f09a6cfe967ef70dad3f22430da4fbdab";
+ sha256 = "13zwdl0gn8ykqprqv3f3sfjsdqx9zk8ih4k4y7qm5i36crip8nyy";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4b4e2ddd2a80875afc0fc654052e6cbff2f3777f/recipes/gitattributes-mode";
@@ -15412,12 +15379,12 @@
gitconfig-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gitconfig-mode";
- version = "1.2.6";
+ version = "1.2.7";
src = fetchFromGitHub {
owner = "magit";
repo = "git-modes";
- rev = "9f18eca514d242816a4969e86c4cfd2cf4dfe401";
- sha256 = "0k380f9ff15gg724c2spfd9qml97k24bhn3h9ipv1c7rn9qvhdhc";
+ rev = "b08ac12f09a6cfe967ef70dad3f22430da4fbdab";
+ sha256 = "13zwdl0gn8ykqprqv3f3sfjsdqx9zk8ih4k4y7qm5i36crip8nyy";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/44a37f59b87f59a587f6681e7aadfabf137c98d7/recipes/gitconfig-mode";
@@ -15538,12 +15505,12 @@
gitignore-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gitignore-mode";
- version = "1.2.6";
+ version = "1.2.7";
src = fetchFromGitHub {
owner = "magit";
repo = "git-modes";
- rev = "9f18eca514d242816a4969e86c4cfd2cf4dfe401";
- sha256 = "0k380f9ff15gg724c2spfd9qml97k24bhn3h9ipv1c7rn9qvhdhc";
+ rev = "b08ac12f09a6cfe967ef70dad3f22430da4fbdab";
+ sha256 = "13zwdl0gn8ykqprqv3f3sfjsdqx9zk8ih4k4y7qm5i36crip8nyy";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/44a37f59b87f59a587f6681e7aadfabf137c98d7/recipes/gitignore-mode";
@@ -15577,6 +15544,48 @@
license = lib.licenses.free;
};
}) {};
+ gitlab-ci-mode = callPackage ({ emacs, fetchFromGitLab, fetchurl, lib, melpaBuild, yaml-mode }:
+ melpaBuild {
+ pname = "gitlab-ci-mode";
+ version = "20180306.1";
+ src = fetchFromGitLab {
+ owner = "joewreschnig";
+ repo = "gitlab-ci-mode";
+ rev = "313431fa5b8b5ce4512909dfc15675bb99395f6f";
+ sha256 = "0zdj3f0a5fg4vwhbv851jv4fs1dqfz2w4jsxqbri2zhzdjxc97vn";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d7915ddcf21fdec539a86bb86c209cf0bbd378cb/recipes/gitlab-ci-mode";
+ sha256 = "1jg6ihrgccrcwg30ysyqw9k7rmvfmsrp70skr2057hfamvccwn4f";
+ name = "gitlab-ci-mode";
+ };
+ packageRequires = [ emacs yaml-mode ];
+ meta = {
+ homepage = "https://melpa.org/#/gitlab-ci-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
+ gitlab-ci-mode-flycheck = callPackage ({ emacs, fetchFromGitLab, fetchurl, flycheck, gitlab-ci-mode, lib, melpaBuild }:
+ melpaBuild {
+ pname = "gitlab-ci-mode-flycheck";
+ version = "20180304.1";
+ src = fetchFromGitLab {
+ owner = "joewreschnig";
+ repo = "gitlab-ci-mode-flycheck";
+ rev = "388fd05f3ea88ed3ebafb09868fc021f6ecc7625";
+ sha256 = "0idpg4265rfx5i0i8cgfs6w3gncc766mbg81ldxqjhzvq3n28z39";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d7915ddcf21fdec539a86bb86c209cf0bbd378cb/recipes/gitlab-ci-mode-flycheck";
+ sha256 = "19ixd60yynsvmaj7mkppp6k73793x794vrnhx3hh6n7dap1rsjdh";
+ name = "gitlab-ci-mode-flycheck";
+ };
+ packageRequires = [ emacs flycheck gitlab-ci-mode ];
+ meta = {
+ homepage = "https://melpa.org/#/gitlab-ci-mode-flycheck";
+ license = lib.licenses.free;
+ };
+ }) {};
gitpatch = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gitpatch";
@@ -15640,6 +15649,27 @@
license = lib.licenses.free;
};
}) {};
+ glab = callPackage ({ emacs, fetchFromGitHub, fetchurl, ghub, lib, melpaBuild }:
+ melpaBuild {
+ pname = "glab";
+ version = "2.0.0";
+ src = fetchFromGitHub {
+ owner = "magit";
+ repo = "ghub";
+ rev = "ae37bef2eb3afb8232bb0a6f7306a8da2390abf4";
+ sha256 = "1k8bim7yk3swpzsx5lwm6qbjfqf2lsssir0zlqzrkid61d3ixfgy";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/70a4dbd62fd6ebb4e056d0e97fa1a958437ddc91/recipes/glab";
+ sha256 = "0ym8bgym11mdv5bw22lgkcxyqy7qgxxm0yjmrq8qx7i55gqayyb8";
+ name = "glab";
+ };
+ packageRequires = [ emacs ghub ];
+ meta = {
+ homepage = "https://melpa.org/#/glab";
+ license = lib.licenses.free;
+ };
+ }) {};
gmail-message-mode = callPackage ({ fetchFromGitHub, fetchurl, ham-mode, lib, melpaBuild }:
melpaBuild {
pname = "gmail-message-mode";
@@ -16063,12 +16093,12 @@
go-tag = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }:
melpaBuild {
pname = "go-tag";
- version = "1.0.1";
+ version = "1.1.0";
src = fetchFromGitHub {
owner = "brantou";
repo = "emacs-go-tag";
- rev = "a239f58bbef2629086d9e2cf90a64ba3d389a8a3";
- sha256 = "1w1m05ypl94xn2qvypbgvjhq7gysi13g42pqwlmppgsdh1kphwha";
+ rev = "8dbcb7d42dccac046c7beb31bdf79bb09a0fef40";
+ sha256 = "1l20az4lhgbrh96sk6bpvp3w4bh29653fms4bimmiaqmhn2n14y2";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fc4cd3fd8fb0707912e205b9d71789ea8126c442/recipes/go-tag";
@@ -16315,12 +16345,12 @@
govc = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, json-mode, lib, magit-popup, melpaBuild, s }:
melpaBuild {
pname = "govc";
- version = "0.16.0";
+ version = "0.17.1";
src = fetchFromGitHub {
owner = "vmware";
repo = "govmomi";
- rev = "7d879bac14d09f2f2a45a0477c1e45fbf52240f5";
- sha256 = "09fllx7l2hsjrv1jl7g06xngjy0xwn5n5zng6x8dspgsl6kblyqp";
+ rev = "123ed177021588bac57b5c87c1a84270ddf2eca8";
+ sha256 = "0m144lpjbyil8cs57dw9q72abjhrd8cfwbalvzyaldgnx10j8gkc";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/92d6391318021c63b06fe39b0ca38f667bb45ae9/recipes/govc";
@@ -16599,12 +16629,12 @@
green-is-the-new-black-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "green-is-the-new-black-theme";
- version = "0.0.4";
+ version = "0.0.6";
src = fetchFromGitHub {
owner = "fredcamps";
repo = "green-is-the-new-black-emacs";
- rev = "374d14b99f4959fa039c0e1ce8e0e7991b726d98";
- sha256 = "135w5vwbk2468b82v6icc8nh50d9flpi7zd63xch8vpvsri0vpw0";
+ rev = "8a03687a2b8b55c5dc7f099086019278d505d8d8";
+ sha256 = "07j5sv8dskqxpbzr5f58n75cziyqm9v01c3f7wmwfs8jl7h5nc4m";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3e42528d5677fd90515cad47266c07ea3d4363fb/recipes/green-is-the-new-black-theme";
@@ -17226,12 +17256,12 @@
hasky-stack = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild }:
melpaBuild {
pname = "hasky-stack";
- version = "0.7.0";
+ version = "0.8.0";
src = fetchFromGitHub {
owner = "hasky-mode";
repo = "hasky-stack";
- rev = "17b9facafcff8203012c037c5a589f290169fc33";
- sha256 = "00k13sl2yjnqjjdqlmz8ril07xw5al2ysbsnpmz81sccqa1kbikr";
+ rev = "3e17ce07dd6b0207474e4ff14ad7b8c467382947";
+ sha256 = "0cdsdlgapf9xxj928hlb7ch9x8rznayrvj7n8j2vzfa0kfmg7qwf";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c3faf544872478c3bccf2fe7dc51d406031e4d80/recipes/hasky-stack";
@@ -18780,12 +18810,12 @@
helm-tramp = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-tramp";
- version = "0.8.5";
+ version = "0.9.5";
src = fetchFromGitHub {
owner = "masasam";
repo = "emacs-helm-tramp";
- rev = "ee7f6a2c09df5fdc28b4d910840a7c56922059c3";
- sha256 = "0lkzi6h6wkm19mn7v6wjy50kd96k6hw7jhx7pxwgfp577816c7c2";
+ rev = "34cc68bededd3ff6cbec8140f33c530fd3206a64";
+ sha256 = "1lway52ssh6zn6jw8157fp8d4brrkdln03vgll2r53bd69i2ipmn";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-tramp";
@@ -18885,12 +18915,12 @@
helpful = callPackage ({ dash, dash-functional, elisp-refs, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s, shut-up }:
melpaBuild {
pname = "helpful";
- version = "0.7";
+ version = "0.9";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "helpful";
- rev = "3ae20551fb0ce199deff47534a475cab50f19237";
- sha256 = "1zb2zfyflabhar8smvpxcdmkla7camaq2srq6dk2xc66226vj9rn";
+ rev = "c527d0a9f66b50c28dfc44b88c5dd634c770ade2";
+ sha256 = "0mbqwxnk689mx58yjqs6dyyfkcgakginm35nqzp3kdwsvwvvkxzb";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/889d34b654de13bd413d46071a5ff191cbf3d157/recipes/helpful";
@@ -18966,6 +18996,27 @@
license = lib.licenses.free;
};
}) {};
+ hide-mode-line = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "hide-mode-line";
+ version = "1.0.1";
+ src = fetchFromGitHub {
+ owner = "hlissner";
+ repo = "emacs-hide-mode-line";
+ rev = "86b9057391edad75467261c2e579603567e608f9";
+ sha256 = "0qmjmwhmlm008r22n2mv7lir4v1lpfz1c3yvqlwjgv0glbyvqd88";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2af28365f9fbc6ae71043a67966490c5d18a6095/recipes/hide-mode-line";
+ sha256 = "0yl6aicpib5h1ckqi3gyilh2nwvp8gf1017n1w1755j01gw1p9hl";
+ name = "hide-mode-line";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/hide-mode-line";
+ license = lib.licenses.free;
+ };
+ }) {};
hierarchy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hierarchy";
@@ -19305,12 +19356,12 @@
hl-todo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hl-todo";
- version = "1.8.0";
+ version = "1.8.1";
src = fetchFromGitHub {
owner = "tarsius";
repo = "hl-todo";
- rev = "961db3116f1396dc4f903e3a59824a40e0bbb6a2";
- sha256 = "0w847g7lvzk9br9r73n7rf2ba6wafqrapyigp91f62jicz28lvm1";
+ rev = "fbe311b3be34cb5719e612f71d46a87b99954309";
+ sha256 = "0f7dsp2b0hzzz6klcmawwlid1jyl90ax0p2ph7bh2791jhywq60k";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7c262f6a1a10e8b3cc30151cad2e34ceb66c6ed7/recipes/hl-todo";
@@ -19452,12 +19503,12 @@
htmlize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "htmlize";
- version = "1.51";
+ version = "1.53";
src = fetchFromGitHub {
owner = "hniksic";
repo = "emacs-htmlize";
- rev = "88e2cb6588827893d7bc619529393887c264d15a";
- sha256 = "09xpv8dsc39a7w9s6xnilc5kh1krs2jw8cklizxzz4gp36hrsj2n";
+ rev = "1bc2f1b0feb852fa5a289a1d72646b16ac84adf1";
+ sha256 = "0dr235c0z8is3pi5xdgqyqljg6px0b2aya6qb79zkyi477bmz4ip";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/075aa00a0757c6cd1ad392f0300bf5f1b937648d/recipes/htmlize";
@@ -19662,12 +19713,12 @@
ialign = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ialign";
- version = "0.4.1";
+ version = "0.4.2";
src = fetchFromGitHub {
owner = "mkcms";
repo = "interactive-align";
- rev = "523df320197b587abd8c0ec4e9fbc763aeab1cf6";
- sha256 = "04jak5j4yywl7fn5sggc125yh6cy0livf55194mfxs2kmbs5wm0h";
+ rev = "7ad88c8f7922adc616b8f060b65fa1add8952ea1";
+ sha256 = "0bh03w91i622hbar5dcq631ndxx1y8kd3h655pgw1g0lqkv1mlnc";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/072f1f7ce17e2972863bce10af9c52b3c6502eab/recipes/ialign";
@@ -20166,12 +20217,12 @@
imake = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "imake";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchFromGitHub {
owner = "tarsius";
repo = "imake";
- rev = "edd2e59f7996c35450987cf8f137ecb54777e9ca";
- sha256 = "12mq1ki001jgjdfr3fx43z1xz4jrki18rb0wkb7n956dvl34w0fg";
+ rev = "7df5fb9684a0288313ef5f64594078d477105959";
+ sha256 = "0xc19ir5ak1bfq0ag48ql5rj58zd565csgxhpa30s9lvvkc8kvr5";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/28de8f7f5302b27c7c6600ad65a998119518be43/recipes/imake";
@@ -20187,12 +20238,12 @@
imapfilter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "imapfilter";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchFromGitHub {
owner = "tarsius";
repo = "imapfilter";
- rev = "a879ddc36fedc30311693f308f414c520fdfc370";
- sha256 = "0rx4r6822iwl4gb9j0fii0sqinqvp3lzrc768rasgicgpklaqkjs";
+ rev = "79bbbe918319bc1e8f42a0bef53dc7c77fe868ea";
+ sha256 = "0lqhwh8kav7f526a40rjdy2hzarzph1i3ig2dmbf02gp32sl7rg9";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2415894afa3404fbd73c84c58f8b8267187d6d86/recipes/imapfilter";
@@ -20753,12 +20804,12 @@
intero = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }:
melpaBuild {
pname = "intero";
- version = "0.1.26";
+ version = "0.1.29";
src = fetchFromGitHub {
owner = "commercialhaskell";
repo = "intero";
- rev = "f85e1b47df3bb328be0de34120950cecb3465055";
- sha256 = "1zng4sliygg1l0jamprx9pfs85jiy19gwxpcy2hs3s4hc7yxjdds";
+ rev = "73997cf10277e9781682768113ebd87eeb6d2882";
+ sha256 = "1mf2ddpgnyjiq2km1qc4l926xp8mj9vrszlizh39hn3acxqlac7s";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/intero";
@@ -20984,12 +21035,12 @@
ivy-erlang-complete = callPackage ({ async, counsel, emacs, erlang, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }:
melpaBuild {
pname = "ivy-erlang-complete";
- version = "0.3.0";
+ version = "0.3.1";
src = fetchFromGitHub {
owner = "s-kostyaev";
repo = "ivy-erlang-complete";
- rev = "acd6322571cb0820868a6febdc5326782a29b729";
- sha256 = "158cmxhky8nng43jj0d7w8126phx6zlr6r0kf9g2in5nkmbcbd33";
+ rev = "62e2b14ff25b0c143c882cb38d029b216acc3dd6";
+ sha256 = "0sbxmj3ap0navgi7lxlgwb9ykfb8khgh7nl1hmqfh2jn9vx2s568";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ac1b9e350d3f066e4e56202ebb443134d5fc3669/recipes/ivy-erlang-complete";
@@ -21044,6 +21095,27 @@
license = lib.licenses.free;
};
}) {};
+ ivy-mpdel = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, libmpdel, melpaBuild, mpdel }:
+ melpaBuild {
+ pname = "ivy-mpdel";
+ version = "0.3.0";
+ src = fetchFromGitHub {
+ owner = "mpdel";
+ repo = "ivy-mpdel";
+ rev = "271673afc60fdb78052cbee390f2f4e6db0f83ec";
+ sha256 = "02ijq7z3j3hzaazpgdf38n02w1yid2702nc7n46bg0zs2dl10p53";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/ivy-mpdel";
+ sha256 = "1v9xiy4bs7r24li6fwi5dfqav8dfr3dy0xhj3wnzvcgwxp5ji56r";
+ name = "ivy-mpdel";
+ };
+ packageRequires = [ emacs ivy libmpdel mpdel ];
+ meta = {
+ homepage = "https://melpa.org/#/ivy-mpdel";
+ license = lib.licenses.free;
+ };
+ }) {};
ivy-pages = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }:
melpaBuild {
pname = "ivy-pages";
@@ -21549,12 +21621,12 @@
js2-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "js2-mode";
- version = "20170721";
+ version = "20180301";
src = fetchFromGitHub {
owner = "mooz";
repo = "js2-mode";
- rev = "cb57d9b67390ae3ff70ab64169bbc4f1264244bc";
- sha256 = "0z7ya533ap6lm5qwfsbhn1k4jh1k1p5xyk5r27wd40rfzvd2x2gy";
+ rev = "38e425785d5ea4600c3642f6500062ecedf694a4";
+ sha256 = "1afvm8cp9h0v0pk7v3jwag6f608v1787l7m7a9541ld616cgb5x7";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/js2-mode";
@@ -22008,15 +22080,36 @@
license = lib.licenses.free;
};
}) {};
+ keycast = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "keycast";
+ version = "0.1.1";
+ src = fetchFromGitHub {
+ owner = "tarsius";
+ repo = "keycast";
+ rev = "46370b8a72922902921d3ed2fa194564568053dc";
+ sha256 = "0wgicba3v5l7a0wmmr3awf026vhf4grrn8c4i2hipi9ij3wckqzc";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aaaf62c586818f2493667ad6ec8877234a58da53/recipes/keycast";
+ sha256 = "19qq5y1zjp3029kfq0c59xl9xnxqmdn2pd04sblznchcr9jdy5id";
+ name = "keycast";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/keycast";
+ license = lib.licenses.free;
+ };
+ }) {};
keychain-environment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "keychain-environment";
- version = "2.4.0";
+ version = "2.4.1";
src = fetchFromGitHub {
owner = "tarsius";
repo = "keychain-environment";
- rev = "7c08e8c4c3ea4d6eaee12d710a56793771f837c5";
- sha256 = "1mnqa69f584qzb62nn01bb4nz08gi7ra8b6xr0x7aphfqzk86kzy";
+ rev = "d3643196de6dc79ea77f9f4805028350fd76100b";
+ sha256 = "0wzs77nwal6apinc39d4arj3lralv2cb9aw9gkikk46fgk404hwj";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4382c9e7e8dee2cafea9ee49965d0952ca359dd5/recipes/keychain-environment";
@@ -22074,12 +22167,12 @@
keymap-utils = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "keymap-utils";
- version = "3.0.0";
+ version = "3.0.1";
src = fetchFromGitHub {
owner = "tarsius";
repo = "keymap-utils";
- rev = "0130f32e5ade649dd2738206a80570e450906ef6";
- sha256 = "1bq7zihdj67j94yyv6655mcrxhz99szbf2zi64nwsl60bxz0znb8";
+ rev = "1ad766dbc111ec78b1a292da97b9bd4856cd2ff7";
+ sha256 = "0imx8zp21bm066bzdynvasylrlhw0gr8mpk2bwkz8j1y5lsp54v8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c03acebf1462dea36c81d4b9ab41e2e5739be3c3/recipes/keymap-utils";
@@ -22326,12 +22419,12 @@
kurecolor = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "kurecolor";
- version = "1.2.4";
+ version = "1.2.6";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "kurecolor";
- rev = "eb894bcb0769ce73404734f14f7582661abe02c8";
- sha256 = "118csp4pi1dxm9grmd006d9wmdplnx8gnk02hbfrl639k7hnnd8z";
+ rev = "a27153f6a01f38226920772dc4917b73166da5e6";
+ sha256 = "04av67q5841jli6rp39hav3a5gr2vcf3db4qsv553i23ffplb955";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/58a5ebdbf82e83e6602161bca049d468887abe02/recipes/kurecolor";
@@ -22617,6 +22710,27 @@
license = lib.licenses.free;
};
}) {};
+ libmpdel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "libmpdel";
+ version = "0.5.0";
+ src = fetchFromGitHub {
+ owner = "mpdel";
+ repo = "libmpdel";
+ rev = "abb748b6cb35de4652df80ce8539bfc63189619d";
+ sha256 = "0ccqcn85131pywzga4644f0azxrsl5ay69m6jz27zzvshs7gzzjv";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/libmpdel";
+ sha256 = "0qi9g3czwzi9hhp7gjczpzjx9vgzz52xi91332l0sxcxmwbawjp1";
+ name = "libmpdel";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/libmpdel";
+ license = lib.licenses.free;
+ };
+ }) {};
lice = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lice";
@@ -22942,12 +23056,12 @@
live-py-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "live-py-mode";
- version = "2.21.1";
+ version = "2.22.0";
src = fetchFromGitHub {
owner = "donkirkby";
repo = "live-py-plugin";
- rev = "e0a5627e6591e1cbb9f93aabc44adbdc50b346c9";
- sha256 = "0dhm7gdd1smlibj5jmzps97kwkpzcigbdp0l26baa2mkc6155y66";
+ rev = "ab2f9bea32dbad11a6464a4880e5487645a0f65a";
+ sha256 = "0w3kpszsrh0gj0a62iqhnhm3flmmgq0pl0d6w5r61mvlq9wck5dv";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c7615237e80b46b5c50cb51a3ed5b07d92566fb7/recipes/live-py-mode";
@@ -23169,6 +23283,27 @@
license = lib.licenses.free;
};
}) {};
+ lsp-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "lsp-mode";
+ version = "4.1";
+ src = fetchFromGitHub {
+ owner = "emacs-lsp";
+ repo = "lsp-mode";
+ rev = "065c36f1fceb6322b7ff8fd4bc623aa0cf6136ba";
+ sha256 = "0129h8h2abc7vcv0h5b2lsr6swa0zq597s5r7zcfj3macga7iifr";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1a7b69312e688211089a23b75910c05efb507e35/recipes/lsp-mode";
+ sha256 = "0cklwllqxzsvs4wvvvsc1pqpmp9w99m8wimpby6v6wlijfg6y1m9";
+ name = "lsp-mode";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/lsp-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
lsp-ocaml = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, lsp-mode, melpaBuild }:
melpaBuild {
pname = "lsp-ocaml";
@@ -23316,15 +23451,15 @@
license = lib.licenses.free;
};
}) {};
- magit = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, git-commit, lib, magit-popup, melpaBuild, with-editor }:
+ magit = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, ghub, git-commit, let-alist, lib, magit-popup, melpaBuild, with-editor }:
melpaBuild {
pname = "magit";
- version = "2.11.0";
+ version = "2.12.1";
src = fetchFromGitHub {
owner = "magit";
repo = "magit";
- rev = "4ad2ebfef0afa7e5f5fb85e8d1146da613804fe5";
- sha256 = "1zvib46hn2c0g2zdnf4vcwjrs9dj5sb81hpqm7bqm8f97p9dv6ym";
+ rev = "44508d71fb400910adb5d0594b56d3c34aa3a5de";
+ sha256 = "0cpcdrikfcmkb6sj13bvznilyk8yc054pq5md874s3j224bdxcnx";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b0a9a6277974a7a38c0c46d9921b54747a85501a/recipes/magit";
@@ -23335,7 +23470,9 @@
async
dash
emacs
+ ghub
git-commit
+ let-alist
magit-popup
with-editor
];
@@ -23473,12 +23610,12 @@
magit-imerge = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "magit-imerge";
- version = "0.2.0";
+ version = "0.3.0";
src = fetchFromGitHub {
owner = "magit";
repo = "magit-imerge";
- rev = "1cd0fa843095f4ce8aa4eae89476c116414d060c";
- sha256 = "1h9m0miiv44az4bigg5gjgkpdgdy4hh114kavzjgjhmw5zsg6qfg";
+ rev = "f337f178a1b4d2e4c1199fa02338febe216ab902";
+ sha256 = "1x0714qxryj3fg9qwnsxrksdja1q98vvjpdwn8h9anifxa0wknh6";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e78a5c27eedfc9b1d79e37e8d333c5d253f31a3c/recipes/magit-imerge";
@@ -23491,15 +23628,36 @@
license = lib.licenses.free;
};
}) {};
+ magit-org-todos = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
+ melpaBuild {
+ pname = "magit-org-todos";
+ version = "0.1.1";
+ src = fetchFromGitHub {
+ owner = "danielma";
+ repo = "magit-org-todos.el";
+ rev = "d772f5220037cb7ad049250df2671e488c65da94";
+ sha256 = "19m1p8z016mqxj2b29961rnbjclxcpspx5bkmqhrwhfysyvcjqg5";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/84480cad490cab2f087a484ed7b9d3d3064bbd29/recipes/magit-org-todos";
+ sha256 = "0yywgzm2jzvsccm9h0a0s1q8fag9dfajnznwk6iqz5pywq5mxijr";
+ name = "magit-org-todos";
+ };
+ packageRequires = [ emacs magit ];
+ meta = {
+ homepage = "https://melpa.org/#/magit-org-todos";
+ license = lib.licenses.free;
+ };
+ }) {};
magit-popup = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "magit-popup";
- version = "2.12.2";
+ version = "2.12.3";
src = fetchFromGitHub {
owner = "magit";
repo = "magit-popup";
- rev = "ab75385a1fb8c0fba0769d448b13ba8324835261";
- sha256 = "0ky4l3k3camh1paa5ap9frr9hcadj7nj40l3imiiqfcvgyl8ijp6";
+ rev = "32e6da899abd6657c098534c5775fc7177047f49";
+ sha256 = "0nrvs7gwd9kn4n808akrydn7zggvy9zyk38yrcmm561kw0h0h903";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0263ca6aea7bf6eae26a637454affbda6bd106df/recipes/magit-popup";
@@ -23512,27 +23670,6 @@
license = lib.licenses.free;
};
}) {};
- magit-rockstar = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
- melpaBuild {
- pname = "magit-rockstar";
- version = "1.1.0";
- src = fetchFromGitHub {
- owner = "tarsius";
- repo = "magit-rockstar";
- rev = "c8320472e8a50c8299140ba0943bb1fe485d294a";
- sha256 = "1xjym51z0v7ibxw059f6k3zljli6z390rmxvrywbfzkb8hqms0l1";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7a20b539cbd38ffa546c1b56b9fac78c0b9457f6/recipes/magit-rockstar";
- sha256 = "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n";
- name = "magit-rockstar";
- };
- packageRequires = [ dash magit ];
- meta = {
- homepage = "https://melpa.org/#/magit-rockstar";
- license = lib.licenses.free;
- };
- }) {};
magit-stgit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "magit-stgit";
@@ -23963,12 +24100,12 @@
mastodon = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mastodon";
- version = "0.7.1";
+ version = "0.7.2";
src = fetchFromGitHub {
owner = "jdenen";
repo = "mastodon.el";
- rev = "e08bb5794762d22f90e85fd65cef7c143e6b9318";
- sha256 = "0bil0xxava04pd4acjqm3bfqm1kjdk4g0czd4zqvacsp5c9sl2qp";
+ rev = "ae8dabda04e377a6ac22cb854e4844f68073f533";
+ sha256 = "1avf2wkzd14dj27i9skm3mn3ipkr1zp93yrwxrk2q5kphj1qji2j";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/809d963b69b154325faaf61e54ca87b94c1c9a90/recipes/mastodon";
@@ -24338,6 +24475,27 @@
license = lib.licenses.free;
};
}) {};
+ mgmtconfig-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "mgmtconfig-mode";
+ version = "0.0.15";
+ src = fetchFromGitHub {
+ owner = "purpleidea";
+ repo = "mgmt";
+ rev = "3ad7097c8aa7eab7f895aab9af22338c0cf82986";
+ sha256 = "04sq8qn6wpsn5yxyf1g2cxv74v3r7n1n32jv174qdn4qknc9khkv";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4cf3dd70ae73c2b049e201a3547bbeb9bb117983/recipes/mgmtconfig-mode";
+ sha256 = "0bdjaqfk68av4lfc4cpacrl2mxvimplfkbadi9l6wb65vlqz6sil";
+ name = "mgmtconfig-mode";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/mgmtconfig-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
mhc = callPackage ({ calfw, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mhc";
@@ -24485,6 +24643,27 @@
license = lib.licenses.free;
};
}) {};
+ minions = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "minions";
+ version = "0.2.0";
+ src = fetchFromGitHub {
+ owner = "tarsius";
+ repo = "minions";
+ rev = "4fa1b333ecc13f577fab84ee64b8ee385a214b1e";
+ sha256 = "0gzp1n0jpjmlskbw8mpdpql0d050qdcxwkcw1bfpp07xbs071w0l";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/769a2167d7f6dfdbbfda058ddea036f80b97d230/recipes/minions";
+ sha256 = "0ximlj93yp6646bh99r2vnayk15ky26sibrmrqqysfw1pzs4a940";
+ name = "minions";
+ };
+ packageRequires = [ dash emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/minions";
+ license = lib.licenses.free;
+ };
+ }) {};
minitest = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "minitest";
@@ -24509,12 +24688,12 @@
mips-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mips-mode";
- version = "1.0.1";
+ version = "1.1.1";
src = fetchFromGitHub {
owner = "hlissner";
repo = "emacs-mips-mode";
- rev = "dcde079176c1419ec24df08b62dd77a897892437";
- sha256 = "0jvbcld3abm45qzsbcaf6f1zd71hgdg5y47v6c0ri4xgwgcwqrvc";
+ rev = "e6c25201a3325b555e64388908d584f3f81d9e32";
+ sha256 = "0ai4ff6hinajvnp8r86s5pv0rrv8h68ncdz4k98kka1ws2f79zdf";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/024a76b83efce47271bcb0ce3bde01b88349f391/recipes/mips-mode";
@@ -24568,27 +24747,6 @@
license = lib.licenses.free;
};
}) {};
- mmm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "mmm-mode";
- version = "0.5.4";
- src = fetchFromGitHub {
- owner = "purcell";
- repo = "mmm-mode";
- rev = "4085494df67e0a3207839a175ac62673dfd0acc1";
- sha256 = "097s4xnwfy8d1wzmz65g2f8bnjjjlj67w1yzwn4d3yasb171nbv8";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/mmm-mode";
- sha256 = "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw";
- name = "mmm-mode";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/mmm-mode";
- license = lib.licenses.free;
- };
- }) {};
mmt = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mmt";
@@ -24718,12 +24876,12 @@
mode-line-debug = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mode-line-debug";
- version = "1.2.2";
+ version = "1.2.3";
src = fetchFromGitHub {
owner = "tarsius";
repo = "mode-line-debug";
- rev = "da44422eeb6a1f055b4ec2f822962c5162fce001";
- sha256 = "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1";
+ rev = "a0fcc394b07d2414bd6f722da10f1c7567333f6b";
+ sha256 = "04vsb0lniy90bhnqb590dap9y4wac64xz0lc2rlfczic0nrqd1aa";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b0080ab9ef1eca5dd19b3fd9af536d8aa17773a2/recipes/mode-line-debug";
@@ -24781,12 +24939,12 @@
monokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "monokai-theme";
- version = "3.5.0";
+ version = "3.5.2";
src = fetchFromGitHub {
owner = "oneKelvinSmith";
repo = "monokai-emacs";
- rev = "bb5cbbd5895b8b3fbc6af572b1fd0aacd4988a8a";
- sha256 = "1f0jl4a3b6i9skbcym0qzpszy620385m947l2ba2wxf1na7rc626";
+ rev = "da23ef64d4848636e47a026259526575381bd164";
+ sha256 = "08py8dmwlqhc16fjcjf24dmpfbv2xpq8b0l43cx8f44f6791r2qf";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2bc9ce95a02fc4bcf7bc7547849c1c15d6db5089/recipes/monokai-theme";
@@ -24820,15 +24978,36 @@
license = lib.licenses.free;
};
}) {};
+ moody = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "moody";
+ version = "0.2.0";
+ src = fetchFromGitHub {
+ owner = "tarsius";
+ repo = "moody";
+ rev = "db27ba168503bd6e6c98c313e73699dc403a10aa";
+ sha256 = "1y0zg0flcv3sawyqvwilh1ysvbn1bsnkn0b2n89lj00zyb5dj5z8";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/63521fe6a1e540544a07231cc94144439e8caea7/recipes/moody";
+ sha256 = "095241sjw330fb5lk48aa4zx8xbzk8s4ml22n6a8bzr99nkhn5jy";
+ name = "moody";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/moody";
+ license = lib.licenses.free;
+ };
+ }) {};
morlock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "morlock";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchFromGitHub {
owner = "tarsius";
repo = "morlock";
- rev = "5845b60c705e8db88ce790b0b12cd8b917e1e5a5";
- sha256 = "1a6kwpanwcnipsq0dc99r4iiz9xa2k883syj0kbk544dxgf338xj";
+ rev = "b883d48024ddfffebe2d0dd69f5ed54c617f8834";
+ sha256 = "0xns4f39x012n7piiv6kgb45n932wxs5fp4yyq44p1mnr0m8v4y8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b6ef53bbc80edda12a90a8a9705fe14415972833/recipes/morlock";
@@ -24988,6 +25167,48 @@
license = lib.licenses.free;
};
}) {};
+ mpdel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, libmpdel, melpaBuild }:
+ melpaBuild {
+ pname = "mpdel";
+ version = "0.4.0";
+ src = fetchFromGitHub {
+ owner = "mpdel";
+ repo = "mpdel";
+ rev = "3786dd31a9f0a3355c967889323742cfe61f4141";
+ sha256 = "0fqdhjmywyw9yd97glrw12j962kmq062djgz2ymv6kspy2g1xv9y";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/mpdel";
+ sha256 = "1py6zk16yl7pyql2qxzd770clzszw7c769hw70n963kns1qmpif8";
+ name = "mpdel";
+ };
+ packageRequires = [ emacs libmpdel ];
+ meta = {
+ homepage = "https://melpa.org/#/mpdel";
+ license = lib.licenses.free;
+ };
+ }) {};
+ mpmc-queue = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, queue }:
+ melpaBuild {
+ pname = "mpmc-queue";
+ version = "0.1.1";
+ src = fetchFromGitHub {
+ owner = "smizoe";
+ repo = "mpmc-queue";
+ rev = "4775ddcb120528828ef1fcb7ee761524a0907a31";
+ sha256 = "0fbrx288vpd0vx2cph7kfclr7hhplqjgynr6csmkh8jaskv26p79";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/30511f1e5eaf45b5f43fbacdd6c7254cb39b1d2c/recipes/mpmc-queue";
+ sha256 = "08jcmhfl87nsg6zgv582yfs152bqihbcssh085gxxqn2x99li354";
+ name = "mpmc-queue";
+ };
+ packageRequires = [ emacs queue ];
+ meta = {
+ homepage = "https://melpa.org/#/mpmc-queue";
+ license = lib.licenses.free;
+ };
+ }) {};
mpv = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, names, org }:
melpaBuild {
pname = "mpv";
@@ -25155,6 +25376,27 @@
license = lib.licenses.free;
};
}) {};
+ multi-run = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, window-layout }:
+ melpaBuild {
+ pname = "multi-run";
+ version = "1";
+ src = fetchFromGitHub {
+ owner = "sagarjha";
+ repo = "multi-run";
+ rev = "87d9eed414999fd94685148d39e5308c099e65ca";
+ sha256 = "0m4wk6sf01b7bq5agmyfcm9kpmwmd90wbvh7fkhs61mrs86s2zw8";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e05ad99477bb97343232ded7083fddb810ae1781/recipes/multi-run";
+ sha256 = "1iv4a49czdjl0slp8590f1ya0vm8g2ycnkwrdpqi3b55haaqp91h";
+ name = "multi-run";
+ };
+ packageRequires = [ emacs window-layout ];
+ meta = {
+ homepage = "https://melpa.org/#/multi-run";
+ license = lib.licenses.free;
+ };
+ }) {};
multi-term = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "multi-term";
@@ -25263,12 +25505,12 @@
mwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mwim";
- version = "0.3";
+ version = "0.4";
src = fetchFromGitHub {
owner = "alezost";
repo = "mwim.el";
- rev = "d7885c32ad54f5b5698b48abea392a8eae2567a8";
- sha256 = "1kssmryl44m4cq05ff98blwdvqafb9x7v3bvb1z70rrvdvw3l024";
+ rev = "462207227b98a6a4356d51419f5ad5ba9356e5cf";
+ sha256 = "06lw6064i82daasgm87gm58d142pypqc1q3cnx1cm35hyj4skd32";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b7e1aa2fa1294b27ed7b6c5bdd5844fa5c37df72/recipes/mwim";
@@ -25767,12 +26009,12 @@
no-littering = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "no-littering";
- version = "0.5.12";
+ version = "0.5.13";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "no-littering";
- rev = "8e321f1036770c20637a0f946b655805cd070e25";
- sha256 = "11hxf0fkka4mv1qsw0nx3ymvgcav95r2bvk1gwyj5m5cbwb4a1n9";
+ rev = "57bf044e2f779a03c7bb80c9131d31286ca9660d";
+ sha256 = "0fdsm6d3v2hjcyl2kcrzv1fzy17qy8l5a5kpkrv3xq3s25l7dqx1";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/no-littering";
@@ -25827,6 +26069,27 @@
license = lib.licenses.free;
};
}) {};
+ nofrils-acme-theme = callPackage ({ emacs, fetchFromGitLab, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "nofrils-acme-theme";
+ version = "0.1.0";
+ src = fetchFromGitLab {
+ owner = "esessoms";
+ repo = "nofrils-theme";
+ rev = "7825f88cb881a84eaa5cd1689772819a18eb2943";
+ sha256 = "009did3i3i8yi0virq606l02w1mw0gdyiqablqg7m368gx0gfvh5";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c59ddaa5e41d3c25c446b1ed1905d7f88b448e0a/recipes/nofrils-acme-theme";
+ sha256 = "01xqsn8whczv34lfa9vbm5rpvrvsrlpav8pzng10jvax1a9wdp3a";
+ name = "nofrils-acme-theme";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/nofrils-acme-theme";
+ license = lib.licenses.free;
+ };
+ }) {};
nord-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nord-theme";
@@ -25910,12 +26173,12 @@
nov = callPackage ({ dash, emacs, esxml, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nov";
- version = "0.2.2";
+ version = "0.2.3";
src = fetchFromGitHub {
owner = "wasamasa";
repo = "nov.el";
- rev = "4ef20ebb587ffb0ab73c85ad5748d41af1071596";
- sha256 = "03s0qjvwk1f7y3i4wh2p5y3z4hdv00adgz8za3vphzc0q8i1kjzb";
+ rev = "e7bb37334ca85ce0e3f5c980464f652266a11218";
+ sha256 = "1lymf4ir9kja0dpifbx230cq3n1li25kcdn3x3bh8fskiil1pqm0";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cf543955ba2d5d0074fa2a5ba176f9415f6e006d/recipes/nov";
@@ -26204,12 +26467,12 @@
ob-prolog = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ob-prolog";
- version = "1.0.0";
+ version = "1.0.2";
src = fetchFromGitHub {
owner = "ljos";
repo = "ob-prolog";
- rev = "7e94309d3a21d7e265f3a85b41801397f286af00";
- sha256 = "0qxpgnjrx04dl43i949vcwv70sc7i23ivyvfk82hdvl8c2lwfd7w";
+ rev = "efa86bb70fd1907806f3e43705aff54d35582442";
+ sha256 = "0g25nn2h7djgc9rp59spx9096jdypsizd0vfzwj96cpq90lkysjx";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fb87868cd74325f0a4a38c5542c264501000951d/recipes/ob-prolog";
@@ -26544,8 +26807,8 @@
src = fetchFromGitHub {
owner = "OmniSharp";
repo = "omnisharp-emacs";
- rev = "7a6fe00e841106b17e7554f8a21f8457d12c5197";
- sha256 = "1vrgj2irm87pykfjyx27a46g5xam7rxwjdfqh4jl6p8cgzgprrrg";
+ rev = "c00a3a9157432c578fffb79169232e4a81d4ad31";
+ sha256 = "0ghwqf1wbiywzdx0qlgs4y94z4ivlgac8rpg1bimlb8xfx62sia0";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e327c483be04de32638b420c5b4e043d12a2cd01/recipes/omnisharp";
@@ -27097,12 +27360,12 @@
org-journal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-journal";
- version = "1.12.3";
+ version = "1.13.0";
src = fetchFromGitHub {
owner = "bastibe";
repo = "org-journal";
- rev = "44a52a20a154d5c1a78684ef720972c4fe36b64a";
- sha256 = "0c4jwh53mgy4qpv7aiwbsbvjjhchyfjb0ca5ny5875ljvkq59qz6";
+ rev = "5fddd231b9848f09daab3f0928e4d6e570b15174";
+ sha256 = "1xl5nkndvlxv5in6x2lq9lkvafqh7zwyyzr6vrcdp1wv4qb207m2";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/org-journal";
@@ -27115,6 +27378,27 @@
license = lib.licenses.free;
};
}) {};
+ org-kanban = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "org-kanban";
+ version = "0.2.0";
+ src = fetchFromGitHub {
+ owner = "gizmomogwai";
+ repo = "org-kanban";
+ rev = "2f0909f6f988f5185026a46a9cc929404652672f";
+ sha256 = "08imw445bic3r8x7wls78dqskgx9ny5lixdksrvnp806vixq0f94";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a9f3a10c126fa43a6fa60ee7f8e50c7a9661dbc1/recipes/org-kanban";
+ sha256 = "1flgqa2pwzw6b2zm3j09i9bvz1i8k03mbwj6l75yrk29lh4njq41";
+ name = "org-kanban";
+ };
+ packageRequires = [ dash emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/org-kanban";
+ license = lib.licenses.free;
+ };
+ }) {};
org-link-travis = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-link-travis";
@@ -27220,6 +27504,27 @@
license = lib.licenses.free;
};
}) {};
+ org-noter = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
+ melpaBuild {
+ pname = "org-noter";
+ version = "1.0.1";
+ src = fetchFromGitHub {
+ owner = "weirdNox";
+ repo = "org-noter";
+ rev = "32cdf41079ca67c5906a10215eb7fbaefebab994";
+ sha256 = "11hhw8fk1qn63hwdx49h9h58p2hmxhmni6qdazd0ipk68finmy8f";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a2bc0d95dc2744277d6acbba1f7483b4c14d75c/recipes/org-noter";
+ sha256 = "0vsc2b1yz9lw0zv1vnm722pl35kxpwhcdi7h6mijhnw8vv7rhixf";
+ name = "org-noter";
+ };
+ packageRequires = [ cl-lib emacs org ];
+ meta = {
+ homepage = "https://melpa.org/#/org-noter";
+ license = lib.licenses.free;
+ };
+ }) {};
org-outlook = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-outlook";
@@ -27506,12 +27811,12 @@
org-static-blog = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-static-blog";
- version = "1.0.3";
+ version = "1.1.1";
src = fetchFromGitHub {
owner = "bastibe";
repo = "org-static-blog";
- rev = "1a63f7eb0682a73126b534458b403ad0858273e8";
- sha256 = "13k8rqh8r48hhdn8z580g379m6mgyc3jnh8a2kk0b22vlx6c3zap";
+ rev = "8ea4456b0ca5642fff5868e54fe23f3b5109a579";
+ sha256 = "0zh1vb6q8xwaawizv9rq86ahpvxsmrjrzhgh6k4xv6rx8k7k1i7g";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e0768d41a3de625c04ac8644ef2e05f17ee99908/recipes/org-static-blog";
@@ -27737,12 +28042,12 @@
org-trello = callPackage ({ dash, dash-functional, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred, s }:
melpaBuild {
pname = "org-trello";
- version = "0.8.0";
+ version = "0.8.1";
src = fetchFromGitHub {
owner = "org-trello";
repo = "org-trello";
- rev = "32dd866e830836a72a3b96b96e0d00d044d0eaf7";
- sha256 = "0m5hyhb6211hdmyp1bq6f3fklfgw3957knd96bfdafj727vdnlzm";
+ rev = "c38c36159cdeb2348c4e9ca75246aa9cc1dfd76c";
+ sha256 = "02gx3kv4mkij69ln8x8wf9n28x17pbb4kv85v78d3lxph7ykqimc";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/188ed8dc1ce2704838f7a2883c41243598150a46/recipes/org-trello";
@@ -27893,12 +28198,12 @@
orgit = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild, org }:
melpaBuild {
pname = "orgit";
- version = "1.5.0";
+ version = "1.5.1";
src = fetchFromGitHub {
owner = "magit";
repo = "orgit";
- rev = "976f3c7d25ad92c57341b52dad9af89b49c37f0c";
- sha256 = "0m8mghh0iydbvlsrg0zd2xajfhdxgxk79dm4gwircrh6zv8194ax";
+ rev = "d909f92d3b1b42184143fd5e6d4c6a2762477ab7";
+ sha256 = "1jdc874bxkpbfpllak3vmfsn82p930s565bzff341vzv7aw2528c";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/73b5f7c44c90540e4cbdc003d9881f0ac22cc7bc/recipes/orgit";
@@ -27914,12 +28219,12 @@
orglink = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "orglink";
- version = "1.1.2";
+ version = "1.1.3";
src = fetchFromGitHub {
owner = "tarsius";
repo = "orglink";
- rev = "50debcf3508d2252bdce35c8822af1b3a81fd2dd";
- sha256 = "1b86c4pyc7cs02lrhnk93gh3czp9wajm17wd9mhszcbdn996rnhz";
+ rev = "e9e90e16ddaceaf99c9b251a215d6338b9762b4d";
+ sha256 = "0vqyidi54rbpqwqi6iv1xaqkr9gfr0pfhr1msxckh8jy6avgy319";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/be9b8e97cda6af91d54d402887f225e3a0caf055/recipes/orglink";
@@ -28100,6 +28405,27 @@
license = lib.licenses.free;
};
}) {};
+ outlook = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "outlook";
+ version = "0.1";
+ src = fetchFromGitHub {
+ owner = "asavonic";
+ repo = "outlook.el";
+ rev = "5847c6f13b106cb54529080e9050be5b8b5be867";
+ sha256 = "13wlfklk342gv5fmzpnz69mc07vm8x6xmh7li1w7f13ci3v4s045";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c5ce3e6800213b117578a1022f25407f2ec1604f/recipes/outlook";
+ sha256 = "0yq9zl7dr8kkm4rps5np4dwvjfhzsxq9wd1af7zwcmms4l3qry6k";
+ name = "outlook";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/outlook";
+ license = lib.licenses.free;
+ };
+ }) {};
outorg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "outorg";
@@ -28163,6 +28489,27 @@
license = lib.licenses.free;
};
}) {};
+ overcast-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "overcast-theme";
+ version = "1.1.0";
+ src = fetchFromGitHub {
+ owner = "myTerminal";
+ repo = "overcast-theme";
+ rev = "009257956522dedf07d9e136ee41ac0b1b0b3518";
+ sha256 = "1g3s44n839s7fw3spkph31m0a5walilj151v0jyp302mjfn396nh";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d86691c61fc880954a05502a6474cc2fa0d0a43b/recipes/overcast-theme";
+ sha256 = "1v8hdnvc4pfmadkvdm6b8z0cy20pminvhjdlr13q5m9immr88a4r";
+ name = "overcast-theme";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/overcast-theme";
+ license = lib.licenses.free;
+ };
+ }) {};
overseer = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }:
melpaBuild {
pname = "overseer";
@@ -28436,22 +28783,22 @@
license = lib.licenses.free;
};
}) {};
- package-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ package-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, restart-emacs }:
melpaBuild {
pname = "package-utils";
- version = "0.5.0";
+ version = "1.0.0";
src = fetchFromGitHub {
owner = "Silex";
repo = "package-utils";
- rev = "e00df8a85fb3d0cfe9dde5a683d81e1a89570e29";
- sha256 = "14zcg9rc2nif8kv8pfmv9arbq0i8glviyvxgxr0lfiif2n4cfg9s";
+ rev = "652531caf1a1df916d2185e7f47085bd0509c940";
+ sha256 = "0lmz4szrfs2445q8nyqnh9hgm69bwdf7q78sfqyxiw1fqaj205si";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a1bb884a0299408daa716eba42cb39f79622766c/recipes/package-utils";
sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r";
name = "package-utils";
};
- packageRequires = [];
+ packageRequires = [ restart-emacs ];
meta = {
homepage = "https://melpa.org/#/package-utils";
license = lib.licenses.free;
@@ -28460,12 +28807,12 @@
packed = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "packed";
- version = "2.0.2";
+ version = "3.0.0";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "packed";
- rev = "94ea12b9d44bfa42c28d0548199f2fcd19e4aa6a";
- sha256 = "1n80y5pqaibix71fnw3cxmq66frmqfji2b2y170jszmrxi03kwxm";
+ rev = "c41c3dfda86ae33832ffc146923e2a4675cbacfa";
+ sha256 = "1272xmb3l8ddfijqzci3x0kxwibqb0sbkci4rbcv9ba9hpxp4d1v";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/packed";
@@ -28668,12 +29015,12 @@
paren-face = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "paren-face";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchFromGitHub {
owner = "tarsius";
repo = "paren-face";
- rev = "166975683225367c866e6ae6f6acb88d24e21a35";
- sha256 = "02mh8w2na6qa94p3bh6pvdvmg36p2vrbp5hpjnwjcayrb92dskgy";
+ rev = "a45d111153a76c481fa0b36d6172ac90e073dfc4";
+ sha256 = "1cr0vnm57lxs48z17ddcv7qlfvks7wdsp01zsw0c7i3h5ajl8myp";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d398398d1d5838dc4985a06515ee668f0f566aab/recipes/paren-face";
@@ -29443,12 +29790,12 @@
php-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "php-mode";
- version = "1.18.4";
+ version = "1.19.0";
src = fetchFromGitHub {
owner = "ejmr";
repo = "php-mode";
- rev = "ad7d1092e1d66602482c5b54ed0609c6171dcae1";
- sha256 = "03yp07dxmxmhm8p5qcxsfdidhvnrpls20nr234cz6yamjl5zszh6";
+ rev = "c68013a583e2f0bd0792e0988ff9ce3e6deae531";
+ sha256 = "0ycqf8fr3f4flgww9ffiga2hkj8l6ikcdj93iafp7qxqs1bzjxfl";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7cdbc35fee67b87b87ec72aa00e6dca77aef17c4/recipes/php-mode";
@@ -29930,6 +30277,27 @@
license = lib.licenses.free;
};
}) {};
+ pomidor = callPackage ({ alert, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "pomidor";
+ version = "0.2";
+ src = fetchFromGitHub {
+ owner = "TatriX";
+ repo = "pomidor";
+ rev = "5780ce2aaa98882a79e92f5eefaaf10fd8dbee3a";
+ sha256 = "19bz3pg3s265wpcwb458i84138z170rgd1qybn6vrll2brvwsf8b";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4e0d4f313081594df23f357c40feb456847d8bd0/recipes/pomidor";
+ sha256 = "0pdzipyza98dhnz6am8lrmz8fh3p1c21v2mhs56fb9lwyvcgv8fi";
+ name = "pomidor";
+ };
+ packageRequires = [ alert emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/pomidor";
+ license = lib.licenses.free;
+ };
+ }) {};
pony-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "pony-snippets";
@@ -30562,12 +30930,12 @@
protobuf-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "protobuf-mode";
- version = "3.5.1.1";
+ version = "3.5.2";
src = fetchFromGitHub {
owner = "google";
repo = "protobuf";
- rev = "860bd12fec5c69e6529565165532b3d5108a7d97";
- sha256 = "1h4xydr5j2zg1888ncn8a1jvqq8fgpgckrmjg6lqzy9jpkvqvfdk";
+ rev = "b5fbb742af122b565925987e65c08957739976a7";
+ sha256 = "14gq6rnv03zvcb5hym240z4yqiphrmd5y4zx9a77n37rwvfgx5qy";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/protobuf-mode";
@@ -31087,12 +31455,12 @@
python-pytest = callPackage ({ dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, projectile, s }:
melpaBuild {
pname = "python-pytest";
- version = "0.2.2";
+ version = "0.3.1";
src = fetchFromGitHub {
owner = "wbolster";
repo = "emacs-python-pytest";
- rev = "0ed385f7e8edd1a7d0aee72f5112459ea9054cbe";
- sha256 = "1wpvgx8ldrnq0pjr8iq65f3m0kmh1c9hnv1lkrgrglqazs2c6hbm";
+ rev = "6772ecfaa86f0f4a1a66bfd3a454c9b11956de70";
+ sha256 = "086jjygzdrcjfp7j70xs8jh8nq0xv496kza6iap7lyc3qf16b4kk";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d95442748827911e082a55f4fd7c348a3757e274/recipes/python-pytest";
@@ -31157,12 +31525,12 @@
pyvenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pyvenv";
- version = "1.12";
+ version = "1.13";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "pyvenv";
- rev = "71eec02c25006737444dec7dfd004285f6cff6a8";
- sha256 = "1j62qf4llrbmwwi7ynrhnzvh0g4razbc21vdlaa8jkjg6y5id95m";
+ rev = "70a755d79b04964bdb969e41166f2473e21f277e";
+ sha256 = "1sim74ccvwifradjdq726jbfcbw52cizbj1vh8q7c75qis6nhb7x";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e37236b89b9705ba7a9d134b1fb2c3c003953a9b/recipes/pyvenv";
@@ -31640,12 +32008,12 @@
realgud = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, load-relative, loc-changes, melpaBuild, test-simple }:
melpaBuild {
pname = "realgud";
- version = "1.4.4";
+ version = "1.4.5";
src = fetchFromGitHub {
owner = "rocky";
repo = "emacs-dbgr";
- rev = "3804711863630affe79614a1527bc12c0955ec7c";
- sha256 = "0fi48xh6rc7z146rafkabqhg6wy3zv85apn1bciw9pysazblq8pb";
+ rev = "09431a4561921bece36a6083b6e27ac4dc82432d";
+ sha256 = "00dgdiiwnwynlyyh6pfhljrl363s8zd5ynbx9mhd2y8c3gmvfab0";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7ca56f05df6c8430a5cbdc55caac58ba79ed6ce5/recipes/realgud";
@@ -32318,12 +32686,12 @@
rjsx-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }:
melpaBuild {
pname = "rjsx-mode";
- version = "0.3.0";
+ version = "0.4.0";
src = fetchFromGitHub {
owner = "felipeochoa";
repo = "rjsx-mode";
- rev = "79bedb1d188e209be5cfef3bea8906df9c509ab8";
- sha256 = "1dh76r9hy1d1f9xhdywslgv0w3c9nhsbwvpd8icgp300x5c6a3zh";
+ rev = "f7d31589acd8a2dfcf4ca8851d2384e4f90364d0";
+ sha256 = "057pgylflzd69ydqz41g8wisvixypdrfn8yv81mfixh3iyq740y8";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b83be7efdef2457e1320fe3dec46484fbd20263c/recipes/rjsx-mode";
@@ -32948,12 +33316,12 @@
sbt-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sbt-mode";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchFromGitHub {
owner = "ensime";
repo = "emacs-sbt-mode";
- rev = "84c3d178a1f2c580f620fd8f03a05ac6413086a3";
- sha256 = "1ndxylb2jbnfrrsbbs5vcxygrqd3ssf3az01nh694hv6lkcidw5k";
+ rev = "a70899661861cf40f54f773c3066fe5b5e9fb71d";
+ sha256 = "0gnqy88qi751pzpg8ga3j2yx0x9cz5inkqpv2451n5b0gjfps9yh";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/364abdc3829fc12e19f00b534565227dbc30baad/recipes/sbt-mode";
@@ -33660,12 +34028,12 @@
shx = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shx";
- version = "0.0.13";
+ version = "0.0.14";
src = fetchFromGitHub {
owner = "riscy";
repo = "shx-for-emacs";
- rev = "33383bd359d795df2d7ef725b5349c953f5a6aa8";
- sha256 = "1arwsb6as8jpah0bs3b92a3kdnbfkhnsm1jglspfh4lqpafmx5vf";
+ rev = "b33b23097ad34177e4179e9d3731ec5db30c6391";
+ sha256 = "0vlgm1aix074ifi9gvp4c0ygdmzplydj4gdsl46173qbd8lfi2rj";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7a2ff78ae3c4289ebf9e06cdfd8f8082c395a16f/recipes/shx";
@@ -34731,12 +35099,12 @@
sparql-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sparql-mode";
- version = "4.0.0";
+ version = "4.0.2";
src = fetchFromGitHub {
owner = "ljos";
repo = "sparql-mode";
- rev = "0ca89a2186ac35d7323ac45c0bea2e1c9ecd61ea";
- sha256 = "0a0vy1pg9s6vh3z52bahhcls9b5p4hhqi075cqsif0ld2l4a4am2";
+ rev = "2837b97244111515c61fb3823c1479bc126a458b";
+ sha256 = "0hqp8r24wvzrkl630wbm0lynrcrnawv2yn2a3xgwqwwhwgva35rn";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c3d729130a41903bb01465d0f01c34fbc508b56e/recipes/sparql-mode";
@@ -35490,8 +35858,8 @@
src = fetchFromGitHub {
owner = "CestDiego";
repo = "sweetgreen.el";
- rev = "9de3916023872ab054e1c7301175fa27fdb1de0c";
- sha256 = "1h56qkbx5abz1l94wrdpbzspiz24mfgkppzfalvbvx5qwl079cvs";
+ rev = "e40d2821ff941695e50a9b003a8c96d32c19bfdc";
+ sha256 = "1gw09x5d4yqlmknjsrhgygp9bch315cnmyqp3679i3hza0l7fds6";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/63812707948e6dcc00e00ebc3c423469593e80fd/recipes/sweetgreen";
@@ -35672,6 +36040,27 @@
license = lib.licenses.free;
};
}) {};
+ symbolword-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "symbolword-mode";
+ version = "1.0";
+ src = fetchFromGitHub {
+ owner = "ncaq";
+ repo = "symbolword-mode";
+ rev = "273dece5b04f7abc4c35048b2f64f04b33774b87";
+ sha256 = "0gpm0zy1kwqxkakvfdgh1lylp99msyamwvi19c53g9jl01m9avyd";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/be2018e0206c3f39c1b67e83000b030d70a72ceb/recipes/symbolword-mode";
+ sha256 = "1fs1irnmlbrn76b4gdsy0v65nz8av85iqm0b7g9nm2rm8azcr050";
+ name = "symbolword-mode";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/symbolword-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
symon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "symon";
@@ -35779,12 +36168,12 @@
system-packages = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "system-packages";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchFromGitHub {
owner = "jabranham";
repo = "system-packages";
- rev = "149c253583e8b4d56a851b1e91e456260749cdea";
- sha256 = "1c0q9c0wq9kskg8p6mnh6mnkivlabb46aqfcs7ms21497ndlmlsv";
+ rev = "557b1eb96479cc6c73b9b7d509dd60b0ee71934d";
+ sha256 = "01r8754ckbzsvlmnbpwpx2j33q693cmg5a59i5d77adn24ssk4f4";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8c423d8c1ff251bd34df20bdb8b425c2f55ae1b1/recipes/system-packages";
@@ -36514,12 +36903,12 @@
tide = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, s, typescript-mode }:
melpaBuild {
pname = "tide";
- version = "2.7.1";
+ version = "2.8.1";
src = fetchFromGitHub {
owner = "ananthakumaran";
repo = "tide";
- rev = "6ca5319cdd581d323944584242a1ba45a115ee3d";
- sha256 = "1jcnzx8g742pfh9nv3gcsxdj31kfpjzl202by30pzg2xz54i48gb";
+ rev = "0db094ba1748e3add4e152fa34d64b25eb07bdd2";
+ sha256 = "113lg22aaagh3bbabxp65460cfwa9whjg3yzafd5n8azkinq8s6k";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a21e063011ebbb03ac70bdcf0a379f9e383bdfab/recipes/tide";
@@ -36752,8 +37141,8 @@
sha256 = "0fk45jmnx34azldxa4yrv6lqmkaxkpkqbnwnn29q7y4ld0ljghs0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7a680ee3b4a0ab286ac04d84b3fba7606b40c65b/recipes/treemacs";
- sha256 = "0zbnw48wrbq9g7vlwxapxpq9xz8cqyr63814w0pqnh6j40ia7r2a";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/91038c1ab2f463102263dcc3701c0fdaad55de4c/recipes/treemacs";
+ sha256 = "1wcsn0kzrbawyyhxmsmrsxr1vp0llkxw6r7zx53pwyc82ia64nlv";
name = "treemacs";
};
packageRequires = [ ace-window cl-lib dash emacs f ht hydra pfuture s ];
@@ -36773,8 +37162,8 @@
sha256 = "0fk45jmnx34azldxa4yrv6lqmkaxkpkqbnwnn29q7y4ld0ljghs0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7a680ee3b4a0ab286ac04d84b3fba7606b40c65b/recipes/treemacs-evil";
- sha256 = "1b02dybvp2fs9n1f80gpnqaxic45wwykny7vdyfay11ds5xzfpsg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/91038c1ab2f463102263dcc3701c0fdaad55de4c/recipes/treemacs-evil";
+ sha256 = "1i2mxqwnqb2jz775qg3z4lf7pk4mgi646fyyi2la5gdcnq6a46mg";
name = "treemacs-evil";
};
packageRequires = [ evil treemacs ];
@@ -36794,8 +37183,8 @@
sha256 = "0fk45jmnx34azldxa4yrv6lqmkaxkpkqbnwnn29q7y4ld0ljghs0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7a680ee3b4a0ab286ac04d84b3fba7606b40c65b/recipes/treemacs-projectile";
- sha256 = "0q3rj0g03423ql0d1ssp928x5f4540kxqlg51584aw57dlyy2z3n";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/91038c1ab2f463102263dcc3701c0fdaad55de4c/recipes/treemacs-projectile";
+ sha256 = "1vyifik30673bwlfvbmw8pzz7f3wd4q6zzssvbj8d23zhk8kh8vc";
name = "treemacs-projectile";
};
packageRequires = [ projectile treemacs ];
@@ -37440,15 +37829,36 @@
license = lib.licenses.free;
};
}) {};
+ use-package-el-get = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, use-package }:
+ melpaBuild {
+ pname = "use-package-el-get";
+ version = "0.1";
+ src = fetchFromGitHub {
+ owner = "edvorg";
+ repo = "use-package-el-get";
+ rev = "f33c448ed43ecb003b60ff601ee7ef9b08cff947";
+ sha256 = "1wzn3h8k7aydj3hxxws64b0v4cr3b77cf7z128xh3v6xz2w62m4z";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ee4a96cf467bcab171a0adfd4ef754abec1a9971/recipes/use-package-el-get";
+ sha256 = "0sg9ijkjax6w25p0q7rw5rjn8r2i83z5jfzjkvy8pxil5cg8zyh0";
+ name = "use-package-el-get";
+ };
+ packageRequires = [ use-package ];
+ meta = {
+ homepage = "https://melpa.org/#/use-package-el-get";
+ license = lib.licenses.free;
+ };
+ }) {};
usql = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "usql";
- version = "0.0.1";
+ version = "0.0.3";
src = fetchFromGitHub {
owner = "nickbarnwell";
repo = "usql.el";
- rev = "4cd8f4cf5c2e75485343321f02d621915aef10e8";
- sha256 = "0cw25g8jvfjpzq3sabc3zbp0qynknzc0mq5psspcbxffk2qalbb9";
+ rev = "bfaf428b366a9a185eef84f0d645a98dc918fe3d";
+ sha256 = "00b1g30l86abg65wc9f4vcn4ccqa2zmn2mi33vdjrq3phw17d2ks";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c8f6b968312a09d062fcc8f942d29c93df2a5a3c/recipes/usql";
@@ -37464,12 +37874,12 @@
utop = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "utop";
- version = "2.0.2";
+ version = "2.1.0";
src = fetchFromGitHub {
owner = "diml";
repo = "utop";
- rev = "599fa4ff640d731927415a44679e5b07d9553acd";
- sha256 = "030wmzi51hya4180m411afy8i2vkq63r630cms3apdqd2bkjjjqs";
+ rev = "1b4bd052c6513d38f6cc626c24665637d25fdc07";
+ sha256 = "05pv6nj88im1jf9nngv56z362wrp9pmkzrjn3nm846rdzbc5f21j";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/30489fe52b4031184e54f994770aa3291257bc9d/recipes/utop";
@@ -38136,12 +38546,12 @@
web-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "web-mode";
- version = "15";
+ version = "16";
src = fetchFromGitHub {
owner = "fxbois";
repo = "web-mode";
- rev = "aef2a32f6e5e2fdb7f38a650b009a737c67959e2";
- sha256 = "14x91pngh9i7r66inssc4jaqvzv2kb3bnbks5x2bhsidvls7s28r";
+ rev = "3ff506aae50a47b277f2b95ff7b7a7c596664e6a";
+ sha256 = "17dw6a8d0p304f2sa4f9zwd8r48w2wbkc3fvbmxwlg4w12h7cwf0";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6f0565555eaa356141422c5175d6cca4e9eb5c00/recipes/web-mode";
@@ -38723,12 +39133,12 @@
with-editor = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "with-editor";
- version = "2.7.1";
+ version = "2.7.2";
src = fetchFromGitHub {
owner = "magit";
repo = "with-editor";
- rev = "04d59d68dab58a7cf3034c84d8ba0553b78ae30c";
- sha256 = "080f39m9nmi163arpmxw45xwadb7q7w7p385yi1jy62bzvqnk0pm";
+ rev = "ff3e96929d4532e33422a5980a6e3ca9f2fcf032";
+ sha256 = "1fhn2wd0wszbnfpvnjmlw8gxqzy8f4q7dg7r16jpa1cmk0fpcdi0";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8c52c840dc35f3fd17ec660e113ddbb53aa99076/recipes/with-editor";
@@ -39311,12 +39721,12 @@
yang-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yang-mode";
- version = "0.9.7";
+ version = "0.9.8";
src = fetchFromGitHub {
owner = "mbj4668";
repo = "yang-mode";
- rev = "0d5d5df86dbb6cbb2de3c0f2d0d5f8c8f29d0695";
- sha256 = "0ca55vjv9lz7w8mk2z731bia9vialrd4kv0igi09xs1mm0r2x5nv";
+ rev = "340aec635e359609b22f7e94df15af1af2b070f6";
+ sha256 = "0795z6s71vlb709n5lpx2f9adfjndafg1h5860zvy1qc4m1054rz";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bb42ab9b5f118baaf6766c478046552b686981a1/recipes/yang-mode";
diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
index a2ba794933e..be01b125cb7 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
@@ -81,10 +81,6 @@ self:
inherit (self.melpaPackages) ess ctable popup;
};
- ess-R-object-popup = super.ess-R-object-popup.override {
- inherit (self.melpaPackages) ess popup;
- };
-
# upstream issue: doesn't build
eterm-256color = markBroken super.eterm-256color;
diff --git a/pkgs/applications/editors/emacs-modes/org-generated.nix b/pkgs/applications/editors/emacs-modes/org-generated.nix
index f6349089be1..4af93ceb0bc 100644
--- a/pkgs/applications/editors/emacs-modes/org-generated.nix
+++ b/pkgs/applications/editors/emacs-modes/org-generated.nix
@@ -1,10 +1,10 @@
{ callPackage }: {
org = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild {
pname = "org";
- version = "20180226";
+ version = "20180402";
src = fetchurl {
- url = "https://orgmode.org/elpa/org-20180226.tar";
- sha256 = "0jqvry6gah1bwnryha4asynj13jyds3qim0xcy7s01rxk99m2ziy";
+ url = "https://orgmode.org/elpa/org-20180402.tar";
+ sha256 = "0gb8hh26jzjqy262ll8jl3ym0cpw6s17id2gizv5qvw18knxs751";
};
packageRequires = [];
meta = {
@@ -14,10 +14,10 @@
}) {};
org-plus-contrib = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild {
pname = "org-plus-contrib";
- version = "20180226";
+ version = "20180402";
src = fetchurl {
- url = "https://orgmode.org/elpa/org-plus-contrib-20180226.tar";
- sha256 = "034wp70hcqnpidji5k1k80mj35iyyy098nbvc2sl7i2aca4m03zc";
+ url = "https://orgmode.org/elpa/org-plus-contrib-20180402.tar";
+ sha256 = "09q5nr0ka7z719mi626wj5d51bcvdb08gk4zf94dzpks0gsqiikr";
};
packageRequires = [];
meta = {
diff --git a/pkgs/applications/editors/focuswriter/default.nix b/pkgs/applications/editors/focuswriter/default.nix
index 7be55b873bc..0e4a6a5bf20 100644
--- a/pkgs/applications/editors/focuswriter/default.nix
+++ b/pkgs/applications/editors/focuswriter/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "focuswriter-${version}";
- version = "1.6.10";
+ version = "1.6.11";
src = fetchurl {
url = "https://gottcode.org/focuswriter/focuswriter-${version}-src.tar.bz2";
- sha256 = "0hrbycy5lapdkaa2xm90j45sgsiqdnlk9wry41kxxpdln9msabxs";
+ sha256 = "0izbsm2vx24pnd92gf7ky8x47g324a8d16hy1s8kk3x1inxd80z1";
};
nativeBuildInputs = [ pkgconfig qmake qttools ];
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
description = "Simple, distraction-free writing environment";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ madjar ];
- platforms = platforms.all;
+ platforms = platforms.linux;
homepage = https://gottcode.org/focuswriter/;
};
}
diff --git a/pkgs/applications/editors/sublime/default.nix b/pkgs/applications/editors/sublime/2/default.nix
similarity index 100%
rename from pkgs/applications/editors/sublime/default.nix
rename to pkgs/applications/editors/sublime/2/default.nix
diff --git a/pkgs/applications/editors/sublime3/default.nix b/pkgs/applications/editors/sublime/3/common.nix
similarity index 82%
rename from pkgs/applications/editors/sublime3/default.nix
rename to pkgs/applications/editors/sublime/3/common.nix
index 9c8a75320a6..7185a82a960 100644
--- a/pkgs/applications/editors/sublime3/default.nix
+++ b/pkgs/applications/editors/sublime/3/common.nix
@@ -1,33 +1,39 @@
+{buildVersion, x32sha256, x64sha256}:
+
{ fetchurl, stdenv, glib, xorg, cairo, gtk2, pango, makeWrapper, openssl, bzip2,
pkexecPath ? "/run/wrappers/bin/pkexec", libredirect,
- gksuSupport ? false, gksu, unzip, zip, bash }:
+ gksuSupport ? false, gksu, unzip, zip, bash}:
assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux";
assert gksuSupport -> gksu != null;
let
- build = "3143";
+
libPath = stdenv.lib.makeLibraryPath [glib xorg.libX11 gtk2 cairo pango];
redirects = [ "/usr/bin/pkexec=${pkexecPath}" ]
++ stdenv.lib.optional gksuSupport "/usr/bin/gksudo=${gksu}/bin/gksudo";
in let
+ archSha256 =
+ if stdenv.system == "i686-linux" then
+ x32sha256
+ else
+ x64sha256;
+
+ arch =
+ if stdenv.system == "i686-linux" then
+ "x32"
+ else
+ "x64";
+
# package with just the binaries
sublime = stdenv.mkDerivation {
- name = "sublimetext3-${build}-bin";
-
+ name = "sublimetext3-${buildVersion}-bin";
src =
- if stdenv.system == "i686-linux" then
- fetchurl {
- name = "sublimetext-${build}.tar.bz2";
- url = "https://download.sublimetext.com/sublime_text_3_build_${build}_x32.tar.bz2";
- sha256 = "0dgpx4wij2m77f478p746qadavab172166bghxmj7fb61nvw9v5i";
- }
- else
- fetchurl {
- name = "sublimetext-${build}.tar.bz2";
- url = "https://download.sublimetext.com/sublime_text_3_build_${build}_x64.tar.bz2";
- sha256 = "06b554d2cvpxc976rvh89ix3kqc7klnngvk070xrs8wbyb221qcw";
- };
+ fetchurl {
+ name = "sublimetext-${buildVersion}.tar.bz2";
+ url = "https://download.sublimetext.com/sublime_text_3_build_${buildVersion}_${arch}.tar.bz2";
+ sha256 = archSha256;
+ };
dontStrip = true;
dontPatchELF = true;
@@ -80,8 +86,8 @@ in let
wrapProgram $out/plugin_host --prefix LD_PRELOAD : ${stdenv.cc.cc.lib}/lib${stdenv.lib.optionalString stdenv.is64bit "64"}/libgcc_s.so.1:${openssl.out}/lib/libssl.so:${bzip2.out}/lib/libbz2.so
'';
};
-in stdenv.mkDerivation {
- name = "sublimetext3-${build}";
+in stdenv.mkDerivation (rec {
+ name = "sublimetext3-${buildVersion}";
phases = [ "installPhase" ];
@@ -110,4 +116,4 @@ in stdenv.mkDerivation {
license = licenses.unfree;
platforms = platforms.linux;
};
-}
+})
diff --git a/pkgs/applications/editors/sublime/3/packages.nix b/pkgs/applications/editors/sublime/3/packages.nix
new file mode 100644
index 00000000000..84394e85c88
--- /dev/null
+++ b/pkgs/applications/editors/sublime/3/packages.nix
@@ -0,0 +1,18 @@
+{ callPackage }:
+
+let
+ common = opts: callPackage (import ./common.nix opts);
+in
+ rec {
+ sublime3-dev = common {
+ buildVersion = "3161";
+ x32sha256 = "0qrm2qmfsj71lr83c8zas2n3xk8hk9k4w8ygnasjhggmyjm3wy0q";
+ x64sha256 = "0cgadylm68s2jly10r038q1fvmbzmpc2nvqy86vlyq9avgqbm5pc";
+ } {};
+
+ sublime3 = common {
+ buildVersion = "3143";
+ x32sha256 = "0dgpx4wij2m77f478p746qadavab172166bghxmj7fb61nvw9v5i";
+ x64sha256 = "06b554d2cvpxc976rvh89ix3kqc7klnngvk070xrs8wbyb221qcw";
+ } {};
+ }
diff --git a/pkgs/applications/editors/tiled/default.nix b/pkgs/applications/editors/tiled/default.nix
index bd08d599755..8444ff6eaec 100644
--- a/pkgs/applications/editors/tiled/default.nix
+++ b/pkgs/applications/editors/tiled/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "tiled-${version}";
- version = "1.1.3";
+ version = "1.1.4";
src = fetchFromGitHub {
owner = "bjorn";
repo = "tiled";
rev = "v${version}";
- sha256 = "0rf50w7nkdm70999q1mj7sy5hyjj41qjf4izi849q9a7xnhddv44";
+ sha256 = "0ln8lis9g23wp3w70xwbkzqmmbkd02cdx6z7msw9lrpkjzkj7mlr";
};
nativeBuildInputs = [ pkgconfig qmake ];
diff --git a/pkgs/applications/gis/saga/default.nix b/pkgs/applications/gis/saga/default.nix
index 847421de3b1..a0f2e007555 100644
--- a/pkgs/applications/gis/saga/default.nix
+++ b/pkgs/applications/gis/saga/default.nix
@@ -2,15 +2,15 @@
libharu, opencv, vigra, postgresql }:
stdenv.mkDerivation rec {
- name = "saga-6.2.0";
+ name = "saga-6.3.0";
buildInputs = [ gdal wxGTK30 proj libharu opencv vigra postgresql libiodbc lzma jasper ];
enableParallelBuilding = true;
src = fetchurl {
- url = "mirror://sourceforge/project/saga-gis/SAGA%20-%206/SAGA%20-%206.2.0/saga-6.2.0.tar.gz";
- sha256 = "91b030892c894ba02eb4292ebfc9ccbf4acf3062118f2a89a9a11208773fa280";
+ url = "mirror://sourceforge/project/saga-gis/SAGA%20-%206/SAGA%20-%206.3.0/saga-6.3.0.tar.gz";
+ sha256 = "0hyjim8fcp3mna1hig22nnn4ki3j6b7096am2amcs99sdr09jjxv";
};
meta = {
diff --git a/pkgs/applications/graphics/gthumb/default.nix b/pkgs/applications/graphics/gthumb/default.nix
index 03489db933c..7dc69bceda9 100644
--- a/pkgs/applications/graphics/gthumb/default.nix
+++ b/pkgs/applications/graphics/gthumb/default.nix
@@ -1,32 +1,43 @@
{ stdenv, fetchurl, gnome3, itstool, libxml2, pkgconfig, intltool,
- exiv2, libjpeg, libtiff, gstreamer, libraw, libsoup, libsecret,
- libchamplain, librsvg, libwebp, json-glib, webkit, lcms2, bison,
- flex, hicolor-icon-theme, wrapGAppsHook, shared-mime-info }:
+ exiv2, libjpeg, libtiff, gst_all_1, libraw, libsoup, libsecret,
+ libchamplain, librsvg, libwebp, json-glib, webkitgtk, lcms2, bison,
+ flex, wrapGAppsHook, shared-mime-info }:
-stdenv.mkDerivation rec {
- name = "${pname}-${version}";
+let
pname = "gthumb";
- version = "${major}.0";
- major = "3.6";
+ version = "3.6.1";
+in stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
src = fetchurl {
- url = "mirror://gnome/sources/${pname}/${major}/${name}.tar.xz";
- sha256 = "1zc7myvnzgq7dawjg03rqvwfad7p938m20f25sfhv65jsfq8n928";
+ url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
+ sha256 = "1vj26gw9b5y4bmb2m49wplqg0md568g3gxin500v3slggzhzkaww";
};
- nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
+ nativeBuildInputs = [ itstool libxml2 intltool pkgconfig bison flex wrapGAppsHook ];
- buildInputs = with gnome3;
- [ itstool libxml2 intltool glib gtk gsettings-desktop-schemas dconf
- exiv2 libjpeg libtiff gstreamer libraw libsoup libsecret libchamplain
- librsvg libwebp json-glib webkit lcms2 bison flex hicolor-icon-theme defaultIconTheme ];
+ buildInputs = with gnome3; [
+ glib gtk gsettings-desktop-schemas gst_all_1.gstreamer gst_all_1.gst-plugins-base
+ exiv2 libjpeg libtiff libraw libsoup libsecret libchamplain
+ librsvg libwebp json-glib webkitgtk lcms2 defaultIconTheme
+ ];
enableParallelBuilding = true;
+ configureFlags = [
+ "--enable-libchamplain"
+ ];
+
preFixup = ''
gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${shared-mime-info}/share")
'';
+ passthru = {
+ updateScript = gnome3.updateScript {
+ packageName = pname;
+ };
+ };
+
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/gthumb;
description = "Image browser and viewer for GNOME";
diff --git a/pkgs/applications/graphics/jpegoptim/default.nix b/pkgs/applications/graphics/jpegoptim/default.nix
index b7063a0c4e7..0cad1e1aabb 100644
--- a/pkgs/applications/graphics/jpegoptim/default.nix
+++ b/pkgs/applications/graphics/jpegoptim/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, libjpeg }:
stdenv.mkDerivation rec {
- version = "1.4.4";
+ version = "1.4.5";
name = "jpegoptim-${version}";
src = fetchurl {
url = "http://www.kokkonen.net/tjko/src/${name}.tar.gz";
- sha256 = "1cn1i0g1xjdwa12w0ifbnzgb1vqbpr8ji6h05vxksj79vyi3x849";
+ sha256 = "1mngi8c4mhzwa7i4wqrqq6i80cqj4adbacblfvk6dy573wywyxmi";
};
# There are no checks, it seems.
diff --git a/pkgs/applications/graphics/openimageio/default.nix b/pkgs/applications/graphics/openimageio/default.nix
index c33c0b31a95..49835298f13 100644
--- a/pkgs/applications/graphics/openimageio/default.nix
+++ b/pkgs/applications/graphics/openimageio/default.nix
@@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
name = "openimageio-${version}";
- version = "1.8.8";
+ version = "1.8.9";
src = fetchFromGitHub {
owner = "OpenImageIO";
repo = "oiio";
rev = "Release-${version}";
- sha256 = "1jn4ph7giwxr65xxbm59i03wywnmxkqnpvqp0kcajl4k48vq3wkr";
+ sha256 = "0xyfb41arvi3cc5jvgj2m8skzjrb0xma8sml74svygjgagxfj65h";
};
outputs = [ "bin" "out" "dev" "doc" ];
diff --git a/pkgs/applications/graphics/processing/default.nix b/pkgs/applications/graphics/processing/default.nix
deleted file mode 100644
index 12ff5c77240..00000000000
--- a/pkgs/applications/graphics/processing/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ fetchurl, stdenv, ant, jdk, makeWrapper, libXxf86vm, which }:
-
-stdenv.mkDerivation rec {
- name = "processing-${version}";
- version = "2.2.1";
-
- src = fetchurl {
- url = "https://github.com/processing/processing/archive/processing-0227-${version}.tar.gz";
- sha256 = "1r8q5y0h4gpqap5jwkspc0li6566hzx5chr7hwrdn8mxlzsm50xk";
- };
-
- # Stop it trying to download its own version of java
- patches = [ ./use-nixpkgs-jre.patch ];
-
- buildInputs = [ ant jdk makeWrapper libXxf86vm which ];
-
- buildPhase = "cd build && ant build";
-
- installPhase = ''
- mkdir -p $out/${name}
- mkdir -p $out/bin
- cp -r linux/work/* $out/${name}/
- makeWrapper $out/${name}/processing $out/bin/processing \
- --prefix PATH : "${stdenv.lib.makeBinPath [ jdk which ]}" \
- --prefix LD_LIBRARY_PATH : ${libXxf86vm}/lib
- makeWrapper $out/${name}/processing-java $out/bin/processing-java \
- --prefix PATH : "${stdenv.lib.makeBinPath [ jdk which ]}" \
- --prefix LD_LIBRARY_PATH : ${libXxf86vm}/lib
- ln -s ${jdk} $out/${name}/java
- '';
-
- meta = with stdenv.lib; {
- description = "A language and IDE for electronic arts";
- homepage = https://processing.org;
- license = licenses.gpl2Plus;
- maintainers = [ maintainers.goibhniu ];
- platforms = platforms.linux;
- };
-}
diff --git a/pkgs/applications/graphics/processing/use-nixpkgs-jre.patch b/pkgs/applications/graphics/processing/use-nixpkgs-jre.patch
deleted file mode 100644
index 8f6a5e2018e..00000000000
--- a/pkgs/applications/graphics/processing/use-nixpkgs-jre.patch
+++ /dev/null
@@ -1,88 +0,0 @@
-From d1fb63255ff028ecc9cc66d5a6b21b24031b4b4a Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Cillian=20de=20R=C3=B3iste?=
-Date: Tue, 26 Aug 2014 00:07:58 +0200
-Subject: [PATCH] patch
-
----
- build/build.xml | 42 +++++++++++++++++++++---------------------
- 1 file changed, 21 insertions(+), 21 deletions(-)
-
-diff --git a/build/build.xml b/build/build.xml
-index 4d0f0b2..c3f5c09 100755
---- a/build/build.xml
-+++ b/build/build.xml
-@@ -640,10 +640,11 @@
- value="jre-tools-6u37-linux${sun.arch.data.model}.tgz" />
- -->
-
-+
-
--
-+
-
-
--
--
--
-+
-+
-+
-
-
--
--
--
--
--
--
--
-+
-+
-+
-+
-+
-+
-
-
--
--
--
--
--
--
--
--
--
-+
-+
-+
-+
-+
-+
-+
-+
-+
-
-
-
---
-2.1.0
-
diff --git a/pkgs/applications/graphics/shotwell/default.nix b/pkgs/applications/graphics/shotwell/default.nix
index 5a24a364587..c214fa58bc9 100644
--- a/pkgs/applications/graphics/shotwell/default.nix
+++ b/pkgs/applications/graphics/shotwell/default.nix
@@ -7,13 +7,13 @@
let
pname = "shotwell";
- version = "0.28.0";
+ version = "0.28.1";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
- sha256 = "1d797nmlz9gs6ri0h65b76s40ss6ma6h6405xqx03lhg5xni3kmg";
+ sha256 = "1ywikm5kdsr7q8hklh146x28rzvqkqfjs8kdpw7zcc15ri0dkzya";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix
index 0ccca916a1e..c4c57380be9 100644
--- a/pkgs/applications/misc/blender/default.nix
+++ b/pkgs/applications/misc/blender/default.nix
@@ -1,15 +1,18 @@
{ stdenv, lib, fetchurl, boost, cmake, ffmpeg, gettext, glew
, ilmbase, libXi, libX11, libXext, libXrender
, libjpeg, libpng, libsamplerate, libsndfile
-, libtiff, libGLU_combined, openal, opencolorio, openexr, openimageio, openjpeg_1, python
+, libtiff, libGLU_combined, openal, opencolorio, openexr, openimageio, openjpeg_1, pythonPackages
, zlib, fftw, opensubdiv, freetype, jemalloc, ocl-icd
, jackaudioSupport ? false, libjack2
, cudaSupport ? false, cudatoolkit
, colladaSupport ? true, opencollada
+, enableNumpy ? false, makeWrapper
}:
with lib;
+let python = pythonPackages.python; in
+
stdenv.mkDerivation rec {
name = "blender-2.79b";
@@ -24,6 +27,7 @@ stdenv.mkDerivation rec {
freetype libjpeg libpng libsamplerate libsndfile libtiff libGLU_combined openal
opencolorio openexr openimageio openjpeg_1 python zlib fftw jemalloc
(opensubdiv.override { inherit cudaSupport; })
+ makeWrapper
]
++ optional jackaudioSupport libjack2
++ optional cudaSupport cudatoolkit
@@ -70,6 +74,12 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
+ postInstall = optionalString enableNumpy
+ ''
+ wrapProgram $out/bin/blender \
+ --prefix PYTHONPATH : ${pythonPackages.numpy}/lib/python${python.majorVersion}/site-packages
+ '';
+
meta = with stdenv.lib; {
description = "3D Creation/Animation/Publishing System";
homepage = https://www.blender.org;
diff --git a/pkgs/applications/misc/buku/default.nix b/pkgs/applications/misc/buku/default.nix
index e75076e53d1..fb1f6403ce4 100644
--- a/pkgs/applications/misc/buku/default.nix
+++ b/pkgs/applications/misc/buku/default.nix
@@ -1,14 +1,14 @@
{ stdenv, python3, fetchFromGitHub }:
with python3.pkgs; buildPythonApplication rec {
- version = "3.6";
+ version = "3.7";
name = "buku-${version}";
src = fetchFromGitHub {
owner = "jarun";
repo = "buku";
rev = "v${version}";
- sha256 = "1639sf200n9rxgkvvhlhnrjsb7vn42p1fl1rx562axh3vpr6j4c4";
+ sha256 = "0qc6xkrhf2phaj9fhym19blr4rr2vllvnyljjz909xr4vsynvb41";
};
nativeBuildInputs = [
@@ -52,7 +52,7 @@ with python3.pkgs; buildPythonApplication rec {
homepage = https://github.com/jarun/Buku;
license = licenses.gpl3;
platforms = platforms.linux;
- maintainers = with maintainers; [ matthiasbeyer infinisil ];
+ maintainers = with maintainers; [ infinisil ];
};
}
diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix
index ae99bb772a6..50395c9c1d0 100644
--- a/pkgs/applications/misc/calibre/default.nix
+++ b/pkgs/applications/misc/calibre/default.nix
@@ -5,12 +5,12 @@
}:
stdenv.mkDerivation rec {
- version = "3.19.0";
+ version = "3.21.0";
name = "calibre-${version}";
src = fetchurl {
url = "https://download.calibre-ebook.com/${version}/${name}.tar.xz";
- sha256 = "0sann0aw6ngvmqp7049zg6hyqjrb5myq5ivr4r9x732c1cnjhhw9";
+ sha256 = "0nd9lv7armmkjwxjhs5mhsksvig5n435kww1dy9fq5hxg7nkq5ip";
};
patches = [
diff --git a/pkgs/applications/misc/cataract/build.nix b/pkgs/applications/misc/cataract/build.nix
index e48b32a783d..f2aac4326cb 100644
--- a/pkgs/applications/misc/cataract/build.nix
+++ b/pkgs/applications/misc/cataract/build.nix
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
homepage = http://cgg.bzatek.net/;
description = "a simple static web photo gallery, designed to be clean and easily usable";
license = stdenv.lib.licenses.gpl2;
- maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
+ maintainers = with stdenv.lib.maintainers; [ ];
platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}
diff --git a/pkgs/applications/misc/chirp/default.nix b/pkgs/applications/misc/chirp/default.nix
index 673ecdc8549..068d8e79454 100644
--- a/pkgs/applications/misc/chirp/default.nix
+++ b/pkgs/applications/misc/chirp/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "chirp-daily-${version}";
- version = "20170714";
+ version = "20180325";
src = fetchurl {
url = "http://trac.chirp.danplanet.com/chirp_daily/daily-${version}/${name}.tar.gz";
- sha256 = "1pglsmc0pf50w7df4vv30z5hmdxy4aqjl3qrv8kfiax7rld21gcy";
+ sha256 = "0z2m74hhkxvxchxv819wy947v3wl13kxrdq4kjjazzrlyaky921y";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/applications/misc/cli-visualizer/default.nix b/pkgs/applications/misc/cli-visualizer/default.nix
index 8b24df1bee9..fa9d3e2fdf4 100644
--- a/pkgs/applications/misc/cli-visualizer/default.nix
+++ b/pkgs/applications/misc/cli-visualizer/default.nix
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
homepage = https://github.com/dpayne/cli-visualizer;
description = "CLI based audio visualizer";
license = stdenv.lib.licenses.mit;
- maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
+ maintainers = with stdenv.lib.maintainers; [ ];
platforms = with stdenv.lib.platforms; linux;
};
}
diff --git a/pkgs/applications/misc/ctodo/default.nix b/pkgs/applications/misc/ctodo/default.nix
index 0123e0c38d7..f8927319a01 100644
--- a/pkgs/applications/misc/ctodo/default.nix
+++ b/pkgs/applications/misc/ctodo/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
homepage = http://ctodo.apakoh.dk/;
description = "A simple ncurses-based task list manager";
license = stdenv.lib.licenses.mit;
- maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
+ maintainers = with stdenv.lib.maintainers; [ ];
platforms = stdenv.lib.platforms.linux;
};
}
diff --git a/pkgs/applications/misc/curabydagoma/default.nix b/pkgs/applications/misc/curabydagoma/default.nix
new file mode 100644
index 00000000000..439b0fc2568
--- /dev/null
+++ b/pkgs/applications/misc/curabydagoma/default.nix
@@ -0,0 +1,76 @@
+{ stdenv, lib, fetchurl, python, pythonPackages, unzip }:
+
+# This package uses a precompiled "binary" distribution of CuraByDagoma,
+# distributed by the editor.
+#
+# To update the package, follow the links on https://dist.dagoma.fr/:
+# * Cura By Dagoma
+# * Linux
+# * 64 bits
+# * Genric archive
+#
+# I made the arbitrary choice to compile this package only for x86_64.
+# I guess people owning a 3D printer generally don't use i686.
+# If, however, someone needs it, we certainly can find a solution.
+
+stdenv.mkDerivation rec {
+ name = "curabydagoma-${version}";
+ # Version is the date, UNIX format
+ version = "1520506579";
+ # Hash of the user's choice: os, arch, package type...
+ hash = "58228cce5bbdcf764b7116850956f1e5";
+
+ src = fetchurl {
+ url = "https://dist.dagoma.fr/get/zip/CuraByDagoma/${version}/${hash}";
+ sha256 = "16wfipdyjkf6dq8awjzs4zgkmqk6230277mf3iz8swday9hns8pq";
+ };
+ unpackCmd = "unzip $curSrc && tar zxf CuraByDagoma_amd64.tar.gz";
+ nativeBuildInputs = [ unzip ];
+ buildInputs = [ python pythonPackages.pyopengl pythonPackages.wxPython pythonPackages.pyserial pythonPackages.numpy ];
+
+ # Compile all pyc files because the included pyc files may be older than the
+ # py files. However, Python doesn't realize that because the packages
+ # have all dates set to epoch.
+ buildPhase = ''
+ python -m compileall -f curabydago
+ '';
+
+ # * Simply copy the stuff there
+ # * Create an executable with the correct path etc
+ # * Create a .desktop file to have a launcher in the desktop environments
+ installPhase = ''
+ mkdir $out
+ cp -r * $out/
+
+ mkdir $out/bin
+ cat > $out/bin/curabydago < $out/share/applications/curabydago.desktop < libpulseaudio != null;
stdenv.mkDerivation rec {
name = "gqrx-${version}";
- version = "2.11.1";
+ version = "2.11.2";
src = fetchFromGitHub {
owner = "csete";
repo = "gqrx";
rev = "v${version}";
- sha256 = "06l90m3lx05290lvgghrgqrcg6732p69dvv3bsyw7cyxy3fvdhm6";
+ sha256 = "0sndhzz2gnhsz41cp0zrsw3z10rqm1j3mvkzs1g1lsndrk12bcgy";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/applications/misc/haxor-news/default.nix b/pkgs/applications/misc/haxor-news/default.nix
index b37a6ad732f..624c15e118a 100644
--- a/pkgs/applications/misc/haxor-news/default.nix
+++ b/pkgs/applications/misc/haxor-news/default.nix
@@ -32,7 +32,7 @@ buildPythonApplication rec {
homepage = https://github.com/donnemartin/haxor-news;
description = "Browse Hacker News like a haxor";
license = licenses.asl20;
- maintainers = with maintainers; [ matthiasbeyer ];
+ maintainers = with maintainers; [ ];
};
}
diff --git a/pkgs/applications/misc/hr/default.nix b/pkgs/applications/misc/hr/default.nix
index 2fd56e3c555..6b0926db047 100644
--- a/pkgs/applications/misc/hr/default.nix
+++ b/pkgs/applications/misc/hr/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
homepage = https://github.com/LuRsT/hr;
description = "A horizontal bar for your terminal";
license = licenses.mit;
- maintainers = [ maintainers.matthiasbeyer ];
+ maintainers = [ ];
platforms = platforms.unix;
};
}
diff --git a/pkgs/applications/misc/hstr/default.nix b/pkgs/applications/misc/hstr/default.nix
index 6b62b418d78..db50b0d2169 100644
--- a/pkgs/applications/misc/hstr/default.nix
+++ b/pkgs/applications/misc/hstr/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
homepage = https://github.com/dvorka/hstr;
description = "Shell history suggest box - easily view, navigate, search and use your command history";
license = stdenv.lib.licenses.asl20;
- maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
+ maintainers = with stdenv.lib.maintainers; [ ];
platforms = with stdenv.lib.platforms; linux; # Cannot test others
};
diff --git a/pkgs/applications/misc/jgmenu/default.nix b/pkgs/applications/misc/jgmenu/default.nix
index e87288d7128..ffb898b265c 100644
--- a/pkgs/applications/misc/jgmenu/default.nix
+++ b/pkgs/applications/misc/jgmenu/default.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
homepage = https://github.com/johanmalm/jgmenu;
description = "Small X11 menu intended to be used with openbox and tint2";
license = licenses.gpl2;
- platforms = platforms.unix;
+ platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
};
}
diff --git a/pkgs/applications/misc/josm/default.nix b/pkgs/applications/misc/josm/default.nix
index a73e4820e6c..6c14c93c83d 100644
--- a/pkgs/applications/misc/josm/default.nix
+++ b/pkgs/applications/misc/josm/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "josm-${version}";
- version = "13500";
+ version = "13576";
src = fetchurl {
url = "https://josm.openstreetmap.de/download/josm-snapshot-${version}.jar";
- sha256 = "1dyys4y859dazjqpn3f7vd0cpyglk82y3igrdca293y0n0hrmi7v";
+ sha256 = "0pw7srvds8zs53ibvj779vj505h2gfrn7xqx13hkbacdg441jkd4";
};
buildInputs = [ jre8 makeWrapper ];
diff --git a/pkgs/applications/misc/khal/default.nix b/pkgs/applications/misc/khal/default.nix
index 91e583e2af4..5351cd41b25 100644
--- a/pkgs/applications/misc/khal/default.nix
+++ b/pkgs/applications/misc/khal/default.nix
@@ -40,6 +40,6 @@ buildPythonApplication rec {
homepage = http://lostpackets.de/khal/;
description = "CLI calendar application";
license = licenses.mit;
- maintainers = with maintainers; [ matthiasbeyer jgeerds ];
+ maintainers = with maintainers; [ jgeerds ];
};
}
diff --git a/pkgs/applications/misc/khard/default.nix b/pkgs/applications/misc/khard/default.nix
index 5f3ac3d93c4..c626aaca66b 100644
--- a/pkgs/applications/misc/khard/default.nix
+++ b/pkgs/applications/misc/khard/default.nix
@@ -31,6 +31,6 @@ python3Packages.buildPythonApplication rec {
homepage = https://github.com/scheibler/khard;
description = "Console carddav client";
license = stdenv.lib.licenses.gpl3;
- maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
+ maintainers = with stdenv.lib.maintainers; [ ];
};
}
diff --git a/pkgs/applications/misc/lyx/default.nix b/pkgs/applications/misc/lyx/default.nix
index e3c4943cb2f..092ad6bf478 100644
--- a/pkgs/applications/misc/lyx/default.nix
+++ b/pkgs/applications/misc/lyx/default.nix
@@ -3,12 +3,12 @@
}:
stdenv.mkDerivation rec {
- version = "2.2.3";
+ version = "2.3.0";
name = "lyx-${version}";
src = fetchurl {
- url = "ftp://ftp.lyx.org/pub/lyx/stable/2.2.x/${name}.tar.xz";
- sha256 = "0mrbr24xbdg25gd7w8g76gpmy0a10nrnz0mz47mdjwi441yfpjjg";
+ url = "ftp://ftp.lyx.org/pub/lyx/stable/2.3.x/${name}.tar.xz";
+ sha256 = "0axri2h8xkna4mkfchfyyysbjl7s486vx80p5hzj9zgsvdm5a3ri";
};
# LaTeX is used from $PATH, as people often want to have it with extra pkgs
diff --git a/pkgs/applications/misc/mdp/default.nix b/pkgs/applications/misc/mdp/default.nix
index 9e584217c59..fd0a8ea1fe4 100644
--- a/pkgs/applications/misc/mdp/default.nix
+++ b/pkgs/applications/misc/mdp/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = https://github.com/visit1985/mdp;
description = "A command-line based markdown presentation tool";
- maintainers = with maintainers; [ matthiasbeyer vrthra ];
+ maintainers = with maintainers; [ vrthra ];
license = licenses.gpl3;
platforms = with platforms; unix;
};
diff --git a/pkgs/applications/misc/mwic/default.nix b/pkgs/applications/misc/mwic/default.nix
index e6ac35d19a0..02c18109abc 100644
--- a/pkgs/applications/misc/mwic/default.nix
+++ b/pkgs/applications/misc/mwic/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
homepage = http://jwilk.net/software/mwic;
description = "spell-checker that groups possible misspellings and shows them in their contexts";
license = licenses.mit;
- maintainers = with maintainers; [ matthiasbeyer ];
+ maintainers = with maintainers; [ ];
};
}
diff --git a/pkgs/applications/misc/orca/default.nix b/pkgs/applications/misc/orca/default.nix
index 9bc9218305c..109c0afa12d 100644
--- a/pkgs/applications/misc/orca/default.nix
+++ b/pkgs/applications/misc/orca/default.nix
@@ -10,7 +10,7 @@
with lib;
let
pname = "orca";
- version = "3.27.91";
+ version = "3.28.0";
in buildPythonApplication rec {
name = "${pname}-${version}";
@@ -18,7 +18,7 @@ in buildPythonApplication rec {
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
- sha256 = "0phlkn6ffqncvsg7ph3l4xw388baddav9s4pbkvqqa8myca9g4wg";
+ sha256 = "1jy2zxs50ah1rg4zgiaj2l2sm1zyyvs37phws0hwmy3xd90ljfc2";
};
patches = [
diff --git a/pkgs/applications/misc/posterazor/default.nix b/pkgs/applications/misc/posterazor/default.nix
index 1347840ee67..6cb00fb1525 100644
--- a/pkgs/applications/misc/posterazor/default.nix
+++ b/pkgs/applications/misc/posterazor/default.nix
@@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
homepage = http://posterazor.sourceforge.net/;
description = "Cuts a raster image into pieces which can afterwards be printed out and assembled to a poster";
maintainers = [ stdenv.lib.maintainers.madjar ];
- platforms = stdenv.lib.platforms.all;
+ platforms = stdenv.lib.platforms.linux;
};
}
diff --git a/pkgs/applications/misc/rofi/default.nix b/pkgs/applications/misc/rofi/default.nix
index 734adf3eb58..7da721e9f37 100644
--- a/pkgs/applications/misc/rofi/default.nix
+++ b/pkgs/applications/misc/rofi/default.nix
@@ -4,12 +4,12 @@
}:
stdenv.mkDerivation rec {
- version = "1.5.0";
- name = "rofi-${version}";
+ version = "1.5.1";
+ name = "rofi-unwrapped-${version}";
src = fetchurl {
- url = "https://github.com/DaveDavenport/rofi/releases/download/${version}/${name}.tar.gz";
- sha256 = "0h068wqf0n6gmil2g3lh263pm7spkp4k5rxbnfp52n8izqgyf7al";
+ url = "https://github.com/DaveDavenport/rofi/releases/download/${version}/rofi-${version}.tar.gz";
+ sha256 = "1dc33zf33z38jcxb0lxpyd31waalpf6d4cd9z5f9m5qphdk1g679";
};
# config.patch may be removed in the future - https://github.com/DaveDavenport/rofi/pull/781
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
description = "Window switcher, run dialog and dmenu replacement";
homepage = https://davedavenport.github.io/rofi;
license = licenses.mit;
- maintainers = with maintainers; [ mbakke garbas ];
+ maintainers = with maintainers; [ mbakke garbas ma27 ];
platforms = with platforms; unix;
};
}
diff --git a/pkgs/applications/misc/rofi/wrapper.nix b/pkgs/applications/misc/rofi/wrapper.nix
new file mode 100644
index 00000000000..44c6f892bf5
--- /dev/null
+++ b/pkgs/applications/misc/rofi/wrapper.nix
@@ -0,0 +1,17 @@
+{ stdenv, rofi-unwrapped, makeWrapper, theme ? null, lib }:
+
+stdenv.mkDerivation {
+ name = "rofi-${rofi-unwrapped.version}";
+ buildInputs = [ makeWrapper ];
+ preferLocalBuild = true;
+ passthru = { unwrapped = rofi-unwrapped; };
+ buildCommand = ''
+ mkdir -p $out/bin
+ ln -s ${rofi-unwrapped}/bin/rofi $out/bin/rofi
+ ${lib.optionalString (theme != null) ''wrapProgram $out/bin/rofi --add-flags "-theme ${theme}"''}
+ '';
+
+ meta = rofi-unwrapped.meta // {
+ priority = (rofi-unwrapped.meta.priority or 0) - 1;
+ };
+}
diff --git a/pkgs/applications/misc/rsibreak/default.nix b/pkgs/applications/misc/rsibreak/default.nix
new file mode 100644
index 00000000000..6ee9966401b
--- /dev/null
+++ b/pkgs/applications/misc/rsibreak/default.nix
@@ -0,0 +1,28 @@
+{
+ mkDerivation, fetchurl, lib,
+ extra-cmake-modules, kdoctools,
+ knotifyconfig, kidletime, kwindowsystem, ktextwidgets, kcrash
+}:
+
+let
+ pname = "rsibreak";
+ version = "0.12";
+ revision = ".8";
+in mkDerivation rec {
+ name = "rsibreak-${version}${revision}";
+
+ src = fetchurl {
+ url = "https://download.kde.org/stable/${pname}/${version}/${name}.tar.xz";
+ sha256 = "1qn9xdjx9zzw47jsj7f4nkqmrangfhdgafm2jxm7cm6z6kcvzr28";
+ };
+
+ nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+ propagatedBuildInputs = [ knotifyconfig kidletime kwindowsystem ktextwidgets kcrash ];
+
+ meta = with lib; {
+ description = "RSIBreak takes care of your health and regularly breaks your work to avoid repetitive strain injury (RSI)";
+ license = licenses.gpl2;
+ homepage = https://www.kde.org/applications/utilities/rsibreak/;
+ maintainers = with maintainers; [ vandenoever ];
+ };
+}
diff --git a/pkgs/applications/misc/rtv/default.nix b/pkgs/applications/misc/rtv/default.nix
index 5ca8bfcf5df..ed54e523c8f 100644
--- a/pkgs/applications/misc/rtv/default.nix
+++ b/pkgs/applications/misc/rtv/default.nix
@@ -48,6 +48,6 @@ buildPythonApplication rec {
homepage = https://github.com/michael-lazar/rtv;
description = "Browse Reddit from your Terminal";
license = licenses.mit;
- maintainers = with maintainers; [ matthiasbeyer jgeerds wedens ];
+ maintainers = with maintainers; [ jgeerds wedens ];
};
}
diff --git a/pkgs/applications/misc/sc-im/default.nix b/pkgs/applications/misc/sc-im/default.nix
index e664a5a7527..acd79859901 100644
--- a/pkgs/applications/misc/sc-im/default.nix
+++ b/pkgs/applications/misc/sc-im/default.nix
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
homepage = https://github.com/andmarti1424/sc-im;
description = "SC-IM - Spreadsheet Calculator Improvised - SC fork";
license = licenses.bsdOriginal;
- maintainers = [ maintainers.matthiasbeyer ];
+ maintainers = [ ];
platforms = platforms.linux; # Cannot test others
};
diff --git a/pkgs/applications/misc/sigal/default.nix b/pkgs/applications/misc/sigal/default.nix
index 622f6e14752..411fd756579 100644
--- a/pkgs/applications/misc/sigal/default.nix
+++ b/pkgs/applications/misc/sigal/default.nix
@@ -27,7 +27,7 @@ buildPythonApplication rec {
description = "Yet another simple static gallery generator";
homepage = http://sigal.saimon.org/en/latest/index.html;
license = licenses.mit;
- maintainers = with maintainers; [ domenkozar matthiasbeyer ];
+ maintainers = with maintainers; [ domenkozar ];
};
}
diff --git a/pkgs/applications/misc/slstatus/default.nix b/pkgs/applications/misc/slstatus/default.nix
new file mode 100644
index 00000000000..bc855db29ec
--- /dev/null
+++ b/pkgs/applications/misc/slstatus/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchgit, pkgconfig, writeText, libX11, conf ? null }:
+
+with stdenv.lib;
+
+stdenv.mkDerivation rec {
+ name = "slstatus-${version}";
+ version = "unstable-2018-03-28";
+
+ src = fetchgit {
+ url = https://git.suckless.org/slstatus;
+ rev = "faa52bdcc0221de2d8fae950e409a8ac5e05bfcd";
+ sha256 = "0i8k7gjvx51y0mwxjlqhyk2dpvkb2d3y8x4l6ckdnyiy5632pn76";
+ };
+
+ configFile = optionalString (conf!=null) (writeText "config.def.h" conf);
+ preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h";
+
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [ libX11 ];
+
+ installFlags = [ "PREFIX=$(out)" ];
+
+ meta = {
+ homepage = https://tools.suckless.org/slstatus/;
+ description = "status monitor for window managers that use WM_NAME like dwm";
+ license = licenses.isc;
+ maintainers = with maintainers; [ geistesk ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/stag/default.nix b/pkgs/applications/misc/stag/default.nix
index ebb50e685da..6d6382faccd 100644
--- a/pkgs/applications/misc/stag/default.nix
+++ b/pkgs/applications/misc/stag/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
homepage = https://github.com/seenaburns/stag;
description = "Terminal streaming bar graph passed through stdin";
license = stdenv.lib.licenses.bsdOriginal;
- maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
+ maintainers = with stdenv.lib.maintainers; [ ];
platforms = stdenv.lib.platforms.unix;
};
}
diff --git a/pkgs/applications/misc/tasknc/default.nix b/pkgs/applications/misc/tasknc/default.nix
index 0deda8ce35a..3f395696161 100644
--- a/pkgs/applications/misc/tasknc/default.nix
+++ b/pkgs/applications/misc/tasknc/default.nix
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = https://github.com/lharding/tasknc;
description = "A ncurses wrapper around taskwarrior";
- maintainers = with maintainers; [ matthiasbeyer infinisil ];
+ maintainers = with maintainers; [ infinisil ];
platforms = platforms.linux; # Cannot test others
};
}
diff --git a/pkgs/applications/misc/tasksh/default.nix b/pkgs/applications/misc/tasksh/default.nix
index 11bc7620368..f64d2547198 100644
--- a/pkgs/applications/misc/tasksh/default.nix
+++ b/pkgs/applications/misc/tasksh/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
description = "REPL for taskwarrior";
homepage = http://tasktools.org;
license = licenses.mit;
- maintainers = with maintainers; [ matthiasbeyer ];
+ maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/applications/misc/terminus/default.nix b/pkgs/applications/misc/terminus/default.nix
new file mode 100644
index 00000000000..67ca05fdb10
--- /dev/null
+++ b/pkgs/applications/misc/terminus/default.nix
@@ -0,0 +1,43 @@
+{ stdenv, lib, fetchurl, dpkg, gtk2, atk, glib, pango, gdk_pixbuf, cairo
+, freetype, fontconfig, dbus, libXi, libXcursor, libXdamage, libXrandr
+, libXcomposite, libXext, libXfixes, libXrender, libX11, libXtst, libXScrnSaver
+, libxcb, makeWrapper, nodejs
+, GConf, nss, nspr, alsaLib, cups, expat, libudev, libpulseaudio }:
+
+let
+ libPath = stdenv.lib.makeLibraryPath [
+ stdenv.cc.cc gtk2 atk glib pango gdk_pixbuf cairo freetype fontconfig dbus
+ libXi libXcursor libXdamage libXrandr libXcomposite libXext libXfixes libxcb
+ libXrender libX11 libXtst libXScrnSaver GConf nss nspr alsaLib cups expat libudev libpulseaudio
+ ];
+in
+stdenv.mkDerivation rec {
+ version = "1.0.0-alpha.42";
+ name = "terminus-${version}";
+ src = fetchurl {
+ url = "https://github.com/Eugeny/terminus/releases/download/v${version}/terminus_${version}_amd64.deb";
+ sha256 = "1r5n75n71zwahg4rxlnf9qzrb0651gxv0987m6bykqmfpnw91nmb";
+ };
+ buildInputs = [ dpkg makeWrapper ];
+ unpackPhase = ''
+ mkdir pkg
+ dpkg-deb -x $src pkg
+ sourceRoot=pkg
+ '';
+ installPhase = ''
+ mkdir -p "$out/bin"
+ mv opt "$out/"
+ ln -s "$out/opt/Terminus/terminus" "$out/bin/terminus"
+ patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath "${libPath}:\$ORIGIN" "$out/opt/Terminus/terminus"
+ mv usr/* "$out/"
+ wrapProgram $out/bin/terminus --prefix PATH : ${lib.makeBinPath [ nodejs ]}
+ '';
+ dontPatchELF = true;
+ meta = with lib; {
+ description = "A terminal for a more modern age";
+ homepage = https://eugeny.github.io/terminus/;
+ maintainers = with maintainers; [ jlesquembre ];
+ license = licenses.mit;
+ platforms = [ "x86_64-linux" ];
+ };
+}
diff --git a/pkgs/applications/misc/timewarrior/default.nix b/pkgs/applications/misc/timewarrior/default.nix
index 42f3d1646c5..9aca45264af 100644
--- a/pkgs/applications/misc/timewarrior/default.nix
+++ b/pkgs/applications/misc/timewarrior/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
description = "A command-line time tracker";
homepage = https://tasktools.org/projects/timewarrior.html;
license = licenses.mit;
- maintainers = with maintainers; [ matthiasbeyer mrVanDalo ];
+ maintainers = with maintainers; [ mrVanDalo ];
platforms = platforms.linux ++ platforms.darwin;
};
}
diff --git a/pkgs/applications/misc/toot/default.nix b/pkgs/applications/misc/toot/default.nix
index 1f8ab8b438d..e282e752b31 100644
--- a/pkgs/applications/misc/toot/default.nix
+++ b/pkgs/applications/misc/toot/default.nix
@@ -24,7 +24,7 @@ python3Packages.buildPythonApplication rec {
description = "Mastodon CLI interface";
homepage = "https://github.com/ihabunek/toot";
license = licenses.mit;
- maintainers = [ maintainers.matthiasbeyer ];
+ maintainers = [ ];
};
}
diff --git a/pkgs/applications/misc/urh/default.nix b/pkgs/applications/misc/urh/default.nix
index 5b5c5757989..d2463616d67 100644
--- a/pkgs/applications/misc/urh/default.nix
+++ b/pkgs/applications/misc/urh/default.nix
@@ -2,13 +2,13 @@
python3Packages.buildPythonApplication rec {
name = "urh-${version}";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchFromGitHub {
owner = "jopohl";
repo = "urh";
rev = "v${version}";
- sha256 = "0s8nbrkqcb4q3m8w17sqijbds5irk4xpzhjpwkkakzs0rm5g10sk";
+ sha256 = "0mnnrxm49s77s1qg7zbfciw0525ipsl010sciqdw8a22jg1rfjh8";
};
buildInputs = [ hackrf rtl-sdr ];
diff --git a/pkgs/applications/misc/veracrypt/default.nix b/pkgs/applications/misc/veracrypt/default.nix
index 201e2bcc6ac..1c5c4d1dcaa 100644
--- a/pkgs/applications/misc/veracrypt/default.nix
+++ b/pkgs/applications/misc/veracrypt/default.nix
@@ -6,11 +6,11 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "veracrypt-${version}";
- version = "1.21";
+ version = "1.22";
src = fetchurl {
url = "https://launchpad.net/veracrypt/trunk/${version}/+download/VeraCrypt_${version}_Source.tar.bz2";
- sha256 = "0n036znmwnv70wy8r2j3b55bx2z3cch5fr83vnwjvzyyp0j7swa4";
+ sha256 = "0w5qyxnx03vn93ach1kb995w2mdg43s82gf1isbk206sxp00qk4y";
};
unpackPhase =
diff --git a/pkgs/applications/misc/vit/default.nix b/pkgs/applications/misc/vit/default.nix
index d8dea641c3a..37d7aeb88e6 100644
--- a/pkgs/applications/misc/vit/default.nix
+++ b/pkgs/applications/misc/vit/default.nix
@@ -28,7 +28,7 @@ stdenv.mkDerivation {
meta = {
description = "Visual Interactive Taskwarrior";
- maintainers = with pkgs.lib.maintainers; [ matthiasbeyer ];
+ maintainers = with pkgs.lib.maintainers; [ ];
platforms = pkgs.lib.platforms.linux;
license = pkgs.lib.licenses.gpl3;
};
diff --git a/pkgs/applications/misc/weather/default.nix b/pkgs/applications/misc/weather/default.nix
index 90fa0166154..544c1252ff4 100644
--- a/pkgs/applications/misc/weather/default.nix
+++ b/pkgs/applications/misc/weather/default.nix
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
homepage = http://fungi.yuggoth.org/weather;
description = "Quick access to current weather conditions and forecasts";
license = stdenv.lib.licenses.isc;
- maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
+ maintainers = with stdenv.lib.maintainers; [ ];
platforms = with stdenv.lib.platforms; linux; # my only platform
};
}
diff --git a/pkgs/applications/misc/xmr-stak/default.nix b/pkgs/applications/misc/xmr-stak/default.nix
index c985f601447..98b3af52d6e 100644
--- a/pkgs/applications/misc/xmr-stak/default.nix
+++ b/pkgs/applications/misc/xmr-stak/default.nix
@@ -2,18 +2,18 @@
, opencl-headers, ocl-icd, hwloc, cudatoolkit
, devDonationLevel ? "0.0"
, cudaSupport ? false
-, openclSupport ? false
+, openclSupport ? true
}:
stdenv.mkDerivation rec {
name = "xmr-stak-${version}";
- version = "2.2.0";
+ version = "2.3.0";
src = fetchFromGitHub {
owner = "fireice-uk";
repo = "xmr-stak";
- rev = "v${version}";
- sha256 = "0n21y37d8khgfk9965mrhnh6y5ag7w0s6as1fmf76yx6vajvajsn";
+ rev = "${version}";
+ sha256 = "1iisy73pi4xx3vmqvy6whdzb566jqyjx4pdyx0g35qjj8giflpc8";
};
NIX_CFLAGS_COMPILE = "-O3";
diff --git a/pkgs/applications/misc/xmrig/default.nix b/pkgs/applications/misc/xmrig/default.nix
new file mode 100644
index 00000000000..42d9e448991
--- /dev/null
+++ b/pkgs/applications/misc/xmrig/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, lib, fetchFromGitHub, cmake, libuv, libmicrohttpd
+, donateLevel ? 0
+}:
+
+stdenv.mkDerivation rec {
+ name = "xmrig-${version}";
+ version = "2.5.2";
+
+ src = fetchFromGitHub {
+ owner = "xmrig";
+ repo = "xmrig";
+ rev = "v${version}";
+ sha256 = "1jc6vzqdl85pmiw5qv9b148kfw4k4wxn90ggylxfpfdv7czamh2c";
+ };
+
+ nativeBuildInputs = [ cmake ];
+ buildInputs = [ libuv libmicrohttpd ];
+
+ postPatch = ''
+ substituteInPlace src/donate.h --replace "kDonateLevel = 5;" "kDonateLevel = ${toString donateLevel};"
+ '';
+
+ installPhase = ''
+ install -vD xmrig $out/bin/xmrig
+ '';
+
+ meta = with lib; {
+ description = "Monero (XMR) CPU miner";
+ homepage = "https://github.com/xmrig/xmrig";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ fpletz ];
+ };
+}
diff --git a/pkgs/applications/misc/yaft/default.nix b/pkgs/applications/misc/yaft/default.nix
index d273d27944a..0794b2b6dbe 100644
--- a/pkgs/applications/misc/yaft/default.nix
+++ b/pkgs/applications/misc/yaft/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
homepage = https://github.com/uobikiemukot/yaft;
description = "Yet another framebuffer terminal";
license = stdenv.lib.licenses.mit;
- maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
+ maintainers = with stdenv.lib.maintainers; [ ];
platforms = with stdenv.lib.platforms; linux;
};
}
diff --git a/pkgs/applications/misc/yakuake/default.nix b/pkgs/applications/misc/yakuake/default.nix
index 0eb33c845c3..676cfc12eb0 100644
--- a/pkgs/applications/misc/yakuake/default.nix
+++ b/pkgs/applications/misc/yakuake/default.nix
@@ -20,12 +20,12 @@
mkDerivation rec {
pname = "yakuake";
- version = "3.0.4";
+ version = "3.0.5";
name = "${pname}-${version}";
src = fetchurl {
url = "http://download.kde.org/stable/${pname}/${version}/src/${name}.tar.xz";
- sha256 = "1q31p1cqhz8b2bikqjrr7fww86kaq723ib4ys2zwablfa1ybbqhh";
+ sha256 = "021a9mnghffv2mrdl987mn7wbg8bk6bnf6xz8kn2nwsqxp9kpqh8";
};
buildInputs = [
diff --git a/pkgs/applications/networking/browsers/dwb/default.nix b/pkgs/applications/networking/browsers/dwb/default.nix
deleted file mode 100644
index ec585e53fd2..00000000000
--- a/pkgs/applications/networking/browsers/dwb/default.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ stdenv, fetchgit, pkgconfig, makeWrapper, libsoup, webkitgtk24x-gtk2, gtk2, gnutls
-, json_c, m4, glib-networking, gsettings-desktop-schemas, dconf }:
-
-stdenv.mkDerivation {
- name = "dwb-2016-03-21";
-
- src = fetchgit {
- url = "https://bitbucket.org/portix/dwb";
- rev = "7fb82bc1db36a5d1d2436088c9b58054d2c51f96";
- sha256 = "1wg7pslcx7z4fw595a3nbnygxy2bwfj0h377i48mxhddvl3wzzbq";
- };
-
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ makeWrapper gsettings-desktop-schemas libsoup
- webkitgtk24x-gtk2 gtk2 gnutls json_c m4 ];
-
- # There are Xlib and gtk warnings therefore I have set Wno-error
- makeFlags = ''PREFIX=$(out) GTK=2 CPPFLAGS="-Wno-error"'';
-
- preFixup=''
- wrapProgram "$out/bin/dwb" \
- --prefix GIO_EXTRA_MODULES : "${glib-networking.out}/lib/gio/modules:${stdenv.lib.getLib dconf}/lib/gio/modules" \
- --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$out/share"
- wrapProgram "$out/bin/dwbem" \
- --prefix GIO_EXTRA_MODULES : "${glib-networking.out}/lib/gio/modules"
- '';
-
- meta = with stdenv.lib; {
- homepage = http://portix.bitbucket.org/dwb/;
- description = "A lightweight web browser based on the webkit web browser engine and the gtk toolkit";
- platforms = platforms.mesaPlatforms;
- maintainers = with maintainers; [ pSub ];
- license = licenses.gpl3;
- };
-}
diff --git a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
index f1fd748cf84..d8afbf9aa19 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
@@ -1,985 +1,985 @@
{
- version = "60.0b7";
+ version = "60.0b8";
sources = [
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ach/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ach/firefox-60.0b8.tar.bz2";
locale = "ach";
arch = "linux-x86_64";
- sha512 = "ffd25de3de0a1a7524e750136b9439ceb79afa8e5ded88d3a7bd42aac3276717de51b7740bab09ccd075deda148212124ddc1a6ae07146274d3c8177176ed247";
+ sha512 = "f45033523be148f3cf43d800ec7186791045104eba8c6eb10bb427a5048e826152c4d129bf97a4efda41281b5854643f239b9a124b488740c1cd2bc55acb2504";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/af/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/af/firefox-60.0b8.tar.bz2";
locale = "af";
arch = "linux-x86_64";
- sha512 = "039e4699bbbfd1c0bb655b158d671897e70b3d7b0c51069b0ff52a03a78d6b7cef4ea46164b7ad510a3e71c2df924569a6acffc66c77171950860ea8c08131b2";
+ sha512 = "8d4ca433ad148cd3ac62cb142009a64c8aa09e49d04a060040d42c9e5720ec3619f1896a7b2e91f9bc0f4a78be0dbfa30fef7f19c233b78228413335cbfc9a93";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/an/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/an/firefox-60.0b8.tar.bz2";
locale = "an";
arch = "linux-x86_64";
- sha512 = "fdfdfab6ae2247a746d4e62680917c9853ecbf9643bb07a86d61f797ac244401013427b0c2abe8f88a56ac3396b2c3e67e857e97a9c11a774067544b7c2458c1";
+ sha512 = "16d132420f991376b3dc15d43f118aa12d1d617cadb65d16d645b1a82a65cc7a17a4fa36a03a4280a6e6c3d05d5f4c6d97d5f1df24fbb4d6420a16d271dffcd1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ar/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ar/firefox-60.0b8.tar.bz2";
locale = "ar";
arch = "linux-x86_64";
- sha512 = "9ed3f5da2f9e40cd02efe435caa28a928bd1d8c87bc13f059e0e612cb9194a05d80b3daf502d10335b49f6c8c10d587ca328f7309cb351d54b49545378978f47";
+ sha512 = "2a362ddb4a263a228b93494b8b39071b85cdf05264ef1541df5dd75a84f7d7391b0d68c19e76ee68fb0a4cab7e4de6c1b39d2f97f8f16e6d7c06ad1b630562c8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/as/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/as/firefox-60.0b8.tar.bz2";
locale = "as";
arch = "linux-x86_64";
- sha512 = "9cc2cf3cebd2ba4fd3ce65bc6f38b916736cd2eb056e5f9114f51b0bc8e2bcf5dea507e056f21f4428314b20c1647854ba8b48862dda17f5aad07b35b3d863be";
+ sha512 = "b9172bb80eec38221065e89e0e244c1a93f52e2a5754c0b0d93e78b338783188460fdb4aad13eb69a205f7af1b831451f07b19a9633ab1737e1d48e88108647c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ast/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ast/firefox-60.0b8.tar.bz2";
locale = "ast";
arch = "linux-x86_64";
- sha512 = "ca3d5f2dc4eb850c2a907b095ba9f59b5a4d51f28bdcc5bb4f27b6e631e91beb0e374427c9fce74ee25f540907adc21d4d5933d512fb47cbc41eabe51ef2d58a";
+ sha512 = "c1b665bf08317624aec791a4cf97a240c8bd192f28b31a3a4283846628216bb98b60b50a44d7a14b37b0339fa7cf51af9f3a47cc1ced764f560567eb19c31d56";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/az/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/az/firefox-60.0b8.tar.bz2";
locale = "az";
arch = "linux-x86_64";
- sha512 = "8c02488c170d705923aa4022c32c75f405ab01a83c821b228d90d030c69235c19ab9c6ebeb4e5a926ac3ff2e06a639a549b98632ed167037e6447dfe5f977bd7";
+ sha512 = "fefa5958fd2bd47125b5a8601fbd0834b6498a4ef4b38c73246575b090b94981d39f086534fa5844432554134f590ef28fd9ba0a9e656a4be16c82e4dc368f75";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/be/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/be/firefox-60.0b8.tar.bz2";
locale = "be";
arch = "linux-x86_64";
- sha512 = "82c3fc46eb2a8b080632b183e250f5063422e55f0bddad16b42a436cbdc6567b3e0de7bedc280128a34838fa08aef875c29e0dd0358a31deea13d5e6f499a349";
+ sha512 = "3ad059b65ac9a5d6e8af9745df0ff35ecacdd0af756fc1d5a22a272fd94c49b163d62c7a59ba5cf485d860dfc096209ebd814673b909c047a5c0a8fe3b551701";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/bg/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/bg/firefox-60.0b8.tar.bz2";
locale = "bg";
arch = "linux-x86_64";
- sha512 = "8ce4697b290e9df4247879d75cd30c19a3e517268f25731ea59078df363bcda584b70b0e9602cb35999b7c127cb505a3c8ebfe6d117761a2fe74e7a93c82f499";
+ sha512 = "0eae9cbaba7eebe0fbbac423538afc7dbf439c55d1d29eea9f14468764febbb3f1141fde29642f485f5d7c690ac1ba3b91c9fa436f1cfa50fa87191f1b76d6d0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/bn-BD/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/bn-BD/firefox-60.0b8.tar.bz2";
locale = "bn-BD";
arch = "linux-x86_64";
- sha512 = "fdb54d86095c1ff2d6c2c7873552a5b7ab49c26a70c192f4b24ba1b1f31acb48280db6bb47e688f5bf625d5f01c40f115b5c4cdb2dc6d16f73038528aaae5e4b";
+ sha512 = "0c056092cac3a3660d8397a5f14f2ea0cfadf7253d23d97280d7ab3c6086ef1292bcd5cf42fcff3b1ac6bc55e98ba5aae707d5b205472bab9c37d4fc7869485d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/bn-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/bn-IN/firefox-60.0b8.tar.bz2";
locale = "bn-IN";
arch = "linux-x86_64";
- sha512 = "625dee91caecd225121c968b4dcf0d339cf44530217474f292602c779bd5c058c72630d1977de5517bcef5150049b91d37e87dc33ca77b986dd1d61fa975b11a";
+ sha512 = "f98a1efb8dc56319429a06e9b52d0431591ed70573c76e80a4b4c419c47a2d810ad9f3f9ea1c9a5457cd55e8f98155165b7922000d750033503eacab2e8b40bf";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/br/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/br/firefox-60.0b8.tar.bz2";
locale = "br";
arch = "linux-x86_64";
- sha512 = "0b38399bf8b1d577990a7e07a46d855c525ec638eb5040b2c4401a38f83822523cb51d97d007babb91916d764a585f7160d8ad627d6582f15451e851a2226f3f";
+ sha512 = "475d9a65a6041570a4bed8c96e63aba067a7eb659a1f303b0ebf27e55478dbe3597ec7d968329f352498a58a5256b2fb36505e09e35d1af9ac1219adaf0e607a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/bs/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/bs/firefox-60.0b8.tar.bz2";
locale = "bs";
arch = "linux-x86_64";
- sha512 = "75dd3380634145249c98cc7f4fe9a773827efa37f8dd5eaaa19da3373c143fe22d144189aaa0d1040193900eb1e36ad28d47f969cb0ac8356e494316ca107cca";
+ sha512 = "ceea5a1b8fd3f8ef3d719acb62c5653ee00a3fdf7ffb2e81cfc22936aed53e726d447564a7173e53f27946f55d37816a7bb01abde95e8a6c1718d0f7cea35437";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ca/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ca/firefox-60.0b8.tar.bz2";
locale = "ca";
arch = "linux-x86_64";
- sha512 = "3c51d9feaeacd1ad824f4acad7fca73b2e4afee28fc2ec8ffecc2f1ec442eb1ade1c37c429a97400314a5e76b6f3cbccc08d44cac9098252f481c3154ba422a1";
+ sha512 = "97b687e518ea024c510365b18a220ff22fa0f722645c927519778bb8ccbce55b1bc3a909d4d06b3cfb1ed20b3dfa3761593b7967f516623b4ddc8b26e97359aa";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/cak/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/cak/firefox-60.0b8.tar.bz2";
locale = "cak";
arch = "linux-x86_64";
- sha512 = "68883704fcc49795ee2260b8bc4e06b736adc73db4707ee43b7b539f59836ecfc217e391e73dbd3830f8bdd5fe169b03dff516af378609e65a626e91ea20849d";
+ sha512 = "6e846c894d67da44f5734f409b6822afc043bd02ac6bd3801daf47891fbb1b3bab10ded1f980f11c7f41a8ce4d59b6d99b20eecc33fb60d189cc15df9bfd63f4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/cs/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/cs/firefox-60.0b8.tar.bz2";
locale = "cs";
arch = "linux-x86_64";
- sha512 = "d02bcc433a88db175887454142b5017e5c6c8b47633d46f24b43397b938f8835daab1fa48c6b7531d275400590f2cbe391867ecb64130a449e9501e3cadd201a";
+ sha512 = "4c647b30775cd27e6955e8ebc4e9b375283ecf0b068fc7a49d3a3f99212a8f318a83879f975d85c6c83a88735e9851296869374edcb43dcaa167c2b954edf939";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/cy/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/cy/firefox-60.0b8.tar.bz2";
locale = "cy";
arch = "linux-x86_64";
- sha512 = "e47a519360cf397f09f2d04e1e4875863852a88b2cd3ec8b7ce16fc475114d0e0da041f63f91a1b51178b528ce791f3e4ba3c1fd37f6de55929a9002e4f7624b";
+ sha512 = "f1d742720553ce31bef0881fe5da8c20d5bb2ca99710a882c8805b26c35e2677653ad2d4ec91371dc724410d0edeb884813f8d88ceb0f9019963cc98121e6bb2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/da/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/da/firefox-60.0b8.tar.bz2";
locale = "da";
arch = "linux-x86_64";
- sha512 = "74dcd67de284b0b5f55c59292f3a53b0371960bb5dc134fdf79810e02c08f9a90547b29af5300e3f5f55ce7b8da788d52d492d6349a67999ac1e64c8f4059429";
+ sha512 = "ff07e1c11f23091084361ff20404cd154e89d483b98b3d960b2e72567adf66192debe1862c1dd461477469d8c6b07a02a6dfbb9f0ff644c6743380159df5fe30";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/de/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/de/firefox-60.0b8.tar.bz2";
locale = "de";
arch = "linux-x86_64";
- sha512 = "437ca724cfe872ec616e5c3be80e3ed2a56112aa324e2a5dfb31ce89295b2bdcfdbd57c017ddb54f12e8013b27d3cbef243c75da7b2230237632597203d9e6a1";
+ sha512 = "2338b344b5507478c36f900f76e264580ed7f62e46d042252ea90251c1c80a9262746dfe7d40c6bb593de89737c848527fe33d555dd7aa7fa3971fd0d4483e9a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/dsb/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/dsb/firefox-60.0b8.tar.bz2";
locale = "dsb";
arch = "linux-x86_64";
- sha512 = "029f38e891ac57791c5ef5946782c9d1b846d965fd2e2a5b12cf12ee4fa600c333ba8275d9d15c85ce259064944279a71f70aa9f5acf07f8c6d5a79ab0ae8a78";
+ sha512 = "72cbf626c69a54d18d8c63895e59c2464e7e2f9e0c6f78e58548a8f861e7b2033533c3569ddc2ec3a2e4fe54d0e064a855a23485a68c08e1ea672e2499183258";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/el/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/el/firefox-60.0b8.tar.bz2";
locale = "el";
arch = "linux-x86_64";
- sha512 = "c5baccd9d9a76744e12c1e3d25b3291a75f9b943bb3f6c02a3f2bed5e1d76d62362a8c53b1ee10328c1f0b43619d900e2f99bed977aca2dddf5116d37b1e4751";
+ sha512 = "ee3ba405eeb7ee4d0622af5ed377e39ee4049b33637d122b1395cb00a9db8558454d8d371ee16ced37e1a9f5df7c07b8df5c0db67822117287c58a7b08d45fc6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/en-GB/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/en-GB/firefox-60.0b8.tar.bz2";
locale = "en-GB";
arch = "linux-x86_64";
- sha512 = "24c07b08bb1184db2882164775abd356be6057a5afdaff3b80c43b0c6fe64ae478b0b75b2d473fc722381eb7c80fdc0f511a5d23d06dc181a1d11f811a5f9207";
+ sha512 = "203e6881ebfe4e1c238b83ceee8e59666856640417dfb27478027ba204823f78400b03e7e060c8e070207654f522893c321a9efe3671a212fc3d93519bf6c960";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/en-US/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/en-US/firefox-60.0b8.tar.bz2";
locale = "en-US";
arch = "linux-x86_64";
- sha512 = "412db155c7f6c0acca7ee5c0b34adae4be9693326b342d0fbcf8e72eb355fcc190262c56b3b29763a1fe0b849572d635d0614fdbe5e82531486a9217c9eafc7c";
+ sha512 = "51690eb72296dfe440216bcc85f31312da6c10feb251a94396944af3fcecefa9cc07a4a278775214df2841a3530575fd385ade2dacce18b33231ea7abbfadb75";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/en-ZA/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/en-ZA/firefox-60.0b8.tar.bz2";
locale = "en-ZA";
arch = "linux-x86_64";
- sha512 = "8bebd039ee647de940573fab6f31e56b42799ee0718ae7ce0c19250c7585c12dc8b0da71ac7990417c404656bbb00ddfc8e3d3f8b9f4d15bb804c1141d8f8e1b";
+ sha512 = "2c802cba2c2d9c6627136f83fa3bf31ac2a1da1a8803a0d816ebcb16ed36111ace5fd229617e88a9a6e25818dc350261650969f05f3b2c3e7bd252a0d29ee54f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/eo/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/eo/firefox-60.0b8.tar.bz2";
locale = "eo";
arch = "linux-x86_64";
- sha512 = "4cc05bf5872e5a92f7dcbc509b214a81aad18b0efe8a705e7611ad769dfe2768d4134dfd1ae07713e11649833377cf6b04034fffde0587d44fbe377ce44cf05a";
+ sha512 = "407f5e44710733635f1508ac205186a182891415615be886da185b856903fd3c5d4b61c55c89f4d9a5ddc5e275918dc9e2881a2d3c1b5f038e1d7f7d490334d2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/es-AR/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/es-AR/firefox-60.0b8.tar.bz2";
locale = "es-AR";
arch = "linux-x86_64";
- sha512 = "06d7a689fd0af0c87237cc7d8230c3adafd03447c5edfca1f1940c913bb6c6732c08b16f82147214bb9ba89f07c719fdf15ddb47e5fafbfcaafdeed87078012c";
+ sha512 = "f6d00c92c423e09c61f23ce9c743c91efbc4f24a140d136f0b567fae3ecb45168eaf3ad5d886a1f15bf269c63cf8d8ed4f35468fb887371610ef55ea71322a62";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/es-CL/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/es-CL/firefox-60.0b8.tar.bz2";
locale = "es-CL";
arch = "linux-x86_64";
- sha512 = "ba395b7917be98b51bccba8acd2744fb713a07684d6810fc023e0fbfe4b1a39c323d319f7f98a8297a9023a55e58c62ddf899aec926d467a9c3de7e2b4763783";
+ sha512 = "4f8fe24bbda036402225b42b27bb48b46166bd9fe1963f0c802ecba2f186bc72c300d59e10a0fae384448ee2374ae88f311606d69b939669441c33dbde352795";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/es-ES/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/es-ES/firefox-60.0b8.tar.bz2";
locale = "es-ES";
arch = "linux-x86_64";
- sha512 = "81e259af02d7523510f3e340f89218561fbe68b71fd52f2dde06856f3b0b9f10208e19393d1404043019a690d593c232d1b3c8c94c25b35d388444545296ff8f";
+ sha512 = "e3051d9beb78b3ff9fc2ea969ea9e8b672b03162f94a5cd290c8953c08f106d4bf141b749f3ea8c2d38a2d4711d3585fd0a358a45862b4968f6b1a1b38bccee9";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/es-MX/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/es-MX/firefox-60.0b8.tar.bz2";
locale = "es-MX";
arch = "linux-x86_64";
- sha512 = "1574939452f4c4bbb6817870979b56c2a2c0845c3c3b563ddcd7c622b9d6a1f68423b8e414e4202ad4980782b6030a7c5ac47c1f497bc25905a896d8a330e3dd";
+ sha512 = "a1b7c28fde683783d5e36ade55ae051bddfdb829f6568a0ede19d038ad9e5cf25fce0e5669d7fee50cecd8b476dc9f0d4d401c9d6b30f2c4589bb086731fc5b6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/et/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/et/firefox-60.0b8.tar.bz2";
locale = "et";
arch = "linux-x86_64";
- sha512 = "8e4e5ea879d76da839d32d33b3fb30bc29ce69ecbcd126a75cf5899c1a0671931918d54a9e98ed55b0327d5c3c5910ffedfe49c9a27980f757142726f09092ba";
+ sha512 = "70f839dca4b337a3161b71ae8e2007e8075a0b8fbb1b17ccc0e78c9e1f34e50b5711e5678f183cb3fb14fb6b961fad82fbe32393f15c1476e57ecdf58881d1d6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/eu/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/eu/firefox-60.0b8.tar.bz2";
locale = "eu";
arch = "linux-x86_64";
- sha512 = "6da7117e0831fc4b1a9423c5151159681b9666f3f565f014bd749b97bb30f715158444329b8ea06e408a530792324b6ecaba5b946a35ce410531c6ef482bd8bc";
+ sha512 = "e242ec15f4b6d136d9018df3edebc2eb94ab9e02f0ec1737e10ad3f17a2c24696a0cc2d0314e3b09e07d979a2f0fbaed5a8ac10b9954d5c54cac0dd0a2b01ae4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/fa/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/fa/firefox-60.0b8.tar.bz2";
locale = "fa";
arch = "linux-x86_64";
- sha512 = "a8dd7949e21712e384c3e9a40b35b37ec6e78de3043d3edce920cd09f43f69738e6d9c40b534a268066ffb652b5dfffb85aaac8b76716afed0e8d716bd406548";
+ sha512 = "4fb727e5d8b8c3519fba218a8d4bd49a58ea4d7c20f3143b183fb6ab5d1b17cb373933da645c5d3856906a97bfe6648964495ff7a85bb85e01938abf79139f45";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ff/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ff/firefox-60.0b8.tar.bz2";
locale = "ff";
arch = "linux-x86_64";
- sha512 = "3824f5cb19c75587e1c01c9196d3705f366f4399e0c043dd0e8f5fcd5a43f1b1f4a3c3a4e35364904514fc6df27d976cc663e0789a908c095c81fd8c3bba4997";
+ sha512 = "ee25d95b8f9a5db60fa5adb7c656e8f39a1420b380ddabb3b39fa2a50322fa104934380b6698cd4f6d941d9b63e77a98e5cb002ba9dd3548111c9e6d6741f7b8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/fi/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/fi/firefox-60.0b8.tar.bz2";
locale = "fi";
arch = "linux-x86_64";
- sha512 = "8afd3fdea42d099eaf06609354dd593168f510e799702b0cc3c934bbab6ccfd973dd564df196bdfa7182a58977cc2bee6528ab7e228aacdbb3f6062c37a4a1f7";
+ sha512 = "5344184aee16ccdd0b8de303c788134b8435364a760c1ea0a706c44f36d344ca6b25dc5dc6821c84cdff2c5f0a8a7da8427ef4234d94d649e951c901200c087e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/fr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/fr/firefox-60.0b8.tar.bz2";
locale = "fr";
arch = "linux-x86_64";
- sha512 = "e010b72cb25946634662921a46a930fc9e3f26ac3e350cd20ecaf50a61ae8d73a941383a411e450efbb2e786a71aeadf31cb268bb43f58689bc37e7a7786ab6a";
+ sha512 = "67f5f6d342262e8bd3eb9ac0561b7bbf170b3f8dbe861e8b9c0607b087410a24c1e4b453502f77eebb5a045d5980bc9e1680bb0c6585223d4aa809c872fb9d3c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/fy-NL/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/fy-NL/firefox-60.0b8.tar.bz2";
locale = "fy-NL";
arch = "linux-x86_64";
- sha512 = "4e529dcc52bb77c0d4c9bf9390862ad04c112af89a8864715ef2a9047a8bef431ddccad2798dc9aaacf5ca1ea47189873f348d5544854e903045a4456c095978";
+ sha512 = "b4a3d6a3be694d00809de9d78a1b36958f9150714b8ec068fdf9e79982bff82d3dc7c54f9857812b2ea9b2708aa0290d4fdf787993697f99ff719b213e50b0f0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ga-IE/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ga-IE/firefox-60.0b8.tar.bz2";
locale = "ga-IE";
arch = "linux-x86_64";
- sha512 = "ead2ae4612d418a25d162fc41de423f57245f83c5b79ae149582572f4301f468369c9325502a571d648a89a7d45dbb64be94e66248e1520a59b8afd57f5c651c";
+ sha512 = "14411beefc9729e07b80f1f036ac651312fa4d257479882841f82b0c5c10ccfaf83f31b2597c9076dedd3af4dcdcd62ee660a38d48a864c09519bb1c75728e34";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/gd/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/gd/firefox-60.0b8.tar.bz2";
locale = "gd";
arch = "linux-x86_64";
- sha512 = "1aa9a80b85e931e1812ef2e8afa10e9d0d198e756ebf4d4d1a49824e271637b9a5e9e629dbc641a98f65c9de033aeab41e1288ff8a0537deeb4ec730c5d29f1d";
+ sha512 = "a6e40bbcda17d41a9972e56794847fad10bdd14d3e09d9ceda82b09d0d8c65559667b69afa2807fb9ecd26b8daeebe29a8cef6975bfa9e769886bcb94526f14f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/gl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/gl/firefox-60.0b8.tar.bz2";
locale = "gl";
arch = "linux-x86_64";
- sha512 = "ac2a2b0b3bb3cfc60161ccacb5d5c28aae7706f1d3fb547dc3aabb2c4547172bb0302f37b63a878df73dfdb23afe5a50da80e9f5a25df6f9e767cf1435937c1e";
+ sha512 = "39d93aad369a22207d052611355b8868159b8fcef54fb86bd7bb1323ffad34d90ddf870d4cf21fcd3db0418b7e12335043d683c5f533454e19201ba6b9090c77";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/gn/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/gn/firefox-60.0b8.tar.bz2";
locale = "gn";
arch = "linux-x86_64";
- sha512 = "d59037aaafd743f7df2cd9b4c0d26ad862fb4e7fe78da103e4995f06c6abbacdd935ca7c340a157695062823c7d035ed166f26590904a9975f8ce7f4cde2294e";
+ sha512 = "83f4351f9c7217aae381b2ba3ff8cd00d1e60ac0a05e87598633ebcf70804d8aa235f0b6af0f5218b90292970a5f18ba923a1a20b6343b3a8a5fb67195034d58";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/gu-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/gu-IN/firefox-60.0b8.tar.bz2";
locale = "gu-IN";
arch = "linux-x86_64";
- sha512 = "7b4ac4f0d1502056d5201b6ecc95498bf181c7197c629a6d5b4d41fc61f96261d65657b25a57be42e78f0f87da56ac4b6342ba308d1067c16df8523c460dbc86";
+ sha512 = "82a3f443e757dfbe47cba8c6fd0099b55537eb290529a3d93569d7f044147e37518e6be82bfdf1b9bf13541615007c11d12ae7feea6c20c35e5cf74e00aac1d2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/he/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/he/firefox-60.0b8.tar.bz2";
locale = "he";
arch = "linux-x86_64";
- sha512 = "87122ae571aa64da2048f17813b2fc881c876952ffdefeb2d8417b251159a69b48be4e682ab269cf1b86270bcaed00e82df93f3cdd68aae5a130baec4961cf97";
+ sha512 = "71bea5afbb118e32e2e8c88f2eb88a044124068115301e1eccd892293fa59b2296d548cb662f6b67c6b52d8d9dcac6c7f395e70183c2881b72b7fd3fcf1fa759";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/hi-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/hi-IN/firefox-60.0b8.tar.bz2";
locale = "hi-IN";
arch = "linux-x86_64";
- sha512 = "b3c79cedaefac1f2321b06702b2da02765d096c357940516fdf36127f5177e09c543e94ad7d4010994c728688fadf83f989ead456cf74ce7386892a14e7a6f28";
+ sha512 = "3cd583e0bf4d646fcea81b4c20a25731b9b69dacc61384e8aca6bbb3e1cbd795e31ff980f4079a51ce76f71d84c5cc6a3e486ff23f1ef2447d249aba48af9434";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/hr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/hr/firefox-60.0b8.tar.bz2";
locale = "hr";
arch = "linux-x86_64";
- sha512 = "4f412acec51f8a3008dd0fb4d793baae3386b8f9af9917ce36b7d7e3b3174c18743792f6dc9e4815d164f0dbbfd888a556c9e284a0dc9247742e381c3675d541";
+ sha512 = "79393657fda529897b2f13e842f44f1bb76b2f90889bc86511a23238fe930eaa8abb55eb5541640fb214119ee2e0472b3688e75bd5f00c87f5b47b193bce8e70";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/hsb/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/hsb/firefox-60.0b8.tar.bz2";
locale = "hsb";
arch = "linux-x86_64";
- sha512 = "5cdcfb4aede50ace119ec97816144a90f8e0e8fcbed811297079ad321ceab968de8d546d816d896b7a59ebd509205953af86d0d205d04b4f1647b25e5823427f";
+ sha512 = "b391dd863b6d336cc6c9c60c287e9f85f73c91cdc8463f1b3ded0239953ff7e0bf04cd8daf12185277175a71b55ba002ec74cc1256882e453fede8034c9a9a34";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/hu/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/hu/firefox-60.0b8.tar.bz2";
locale = "hu";
arch = "linux-x86_64";
- sha512 = "5ba8e2a4167f1c93e771d1b37a90929f355acaaf78bfb3d372f04e2b84cdb003d77e1e70df1d71e2a21aaaadc3b28f2acafcc0cb354253e844bb4b2122f19852";
+ sha512 = "ecc51ff78e3343c72bd1337a025ffe81fbd62e98bf1028f892ef59591a3893bf99bc0f58dec5e183672c6ff9a7fe36ab140a8dbfd892bcb99206b7683b7f7189";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/hy-AM/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/hy-AM/firefox-60.0b8.tar.bz2";
locale = "hy-AM";
arch = "linux-x86_64";
- sha512 = "c1fd37d95207b3d4b77dd1f24802d052471d78a6ed9e93aef14f54f7521f1102e497ccdf46d9ccad78043fdf1652168990ca5c97b4149453841f24eab7bf07c2";
+ sha512 = "e0fe7721850ce3dc21aa5fb587e205d3833fcbf1b513df3fe67e9e3326ed57411920c6ba7d8872bd92a5df073362f67b101ae865e0954731549c7b25cc34400e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ia/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ia/firefox-60.0b8.tar.bz2";
locale = "ia";
arch = "linux-x86_64";
- sha512 = "c03c50475ab7454c7e485f5af2774338ac2f859b142a9b3f4ec51206b6c316cf8f931446f9f52b2241fd84f0082a7ebf4d396ec759aea798cdf954ccd0a5f50f";
+ sha512 = "fa1f58e589f1d5453e8b349f87bd798a0b7fbf396890b6531c433fd27043d3a599f218093398de09387b2bd1d98ab50e92bed3c211617cfea700bafa0c846f80";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/id/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/id/firefox-60.0b8.tar.bz2";
locale = "id";
arch = "linux-x86_64";
- sha512 = "41cc681434e485ada9157c1f7cb44692f2116127897f59ff8bccc9528710e461f98e548ede123b4678ba715e5b066ac765c5c0a120cc6a063256f7d42985dbcc";
+ sha512 = "73a0214561b02b4b30e495c5e62c1883409cc20b8f26c7aaa2bc32edbe197e8aed2e4165122ae84dd3035d36296d91a30c4460e9a5a319fb222f0d813601486b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/is/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/is/firefox-60.0b8.tar.bz2";
locale = "is";
arch = "linux-x86_64";
- sha512 = "7122d0db4656c267692d67129c930ccaec28829591f5ae29492b39c25b1267fea844e984a7815338c9528c323fb93631e0b26bf10a01c1696fe5f547f429a56c";
+ sha512 = "ff6d9319998a1c9d394fec7c484b96cda4a473e374b193b47de3c473ba91684000d5a909e5bc460b83fd92562e225476671d42781968051a9701a5e0f760a385";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/it/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/it/firefox-60.0b8.tar.bz2";
locale = "it";
arch = "linux-x86_64";
- sha512 = "8bf59af36730d9e94433ff901c56874452e3c201e8cdc08fcdd37ed82b3815c8326512f5e7548e264e8e79175cecda833675bbbeec179e37cd2e1c58438e3dad";
+ sha512 = "3b31ae6a9d84266007d7a61840782f3e1621a5d4b5dc05c7352e682132ede5225990712b4371edd59edd47004a87319e11c347b18a39e4477afc267186b2f1e7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ja/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ja/firefox-60.0b8.tar.bz2";
locale = "ja";
arch = "linux-x86_64";
- sha512 = "fc33eb79dbd44752a3a76b69c1aaafb8f576c3d56e76f11a121754c759b059d318b25a21ae665b8af7bcaf994e1d9be2846e311355296768a1715c5f7b8b8404";
+ sha512 = "d5342196a66b2feb19352b5792bea6579e1921b573d583ea8223a3ec1e7c59df375a3ebe83345330bf42e6a01c54a5947111d0951025f6c57e55bf374bec1c52";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ka/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ka/firefox-60.0b8.tar.bz2";
locale = "ka";
arch = "linux-x86_64";
- sha512 = "8db174868151dca6b63a769db1e10ba38b49dd5bdc4d8656fae2a3005d7fb7f57f6b8f324a6a1ba2f116b22b1d8413ac4df6e4e93bd1c335d6e6bd601dda429c";
+ sha512 = "ab045e67a005d31da572c30c6a90266e82a892c3c99af55ba97de6dba0f2be029d58d6ea259ee13d63e15b27f124dac528879109ae4342dcbfb46eb376021846";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/kab/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/kab/firefox-60.0b8.tar.bz2";
locale = "kab";
arch = "linux-x86_64";
- sha512 = "a21cc4aec4dfe03b8dd3fae776524a597e91068ffba7ec1ccb8670edabd59e7d193f4ec97c996c7e99973432d02184408e0508ffd155f45480053c81205eae5b";
+ sha512 = "aef5375d4d9ec0f34cc3417d68cfefd7f4ecb489a66bd668ce1bdad9ab804fea267557439bdab5d6685007a3d16cff85c9e92f7c1434e3a76bfcc94bea8353b7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/kk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/kk/firefox-60.0b8.tar.bz2";
locale = "kk";
arch = "linux-x86_64";
- sha512 = "e51c63e90a07b411cd8d4f0ee4374b980cd64b623138e1e58a679c59c23a30e5a232229208c3dad3659e8ded306935b6c88d0214dec7008f4a62a5645e1d6b0f";
+ sha512 = "d3c86d1afc103a1db53e1a03ae36f3c7da7a1dcddcb5ff9e2c8ec06ffe60a8e4f767a012e375191063f0c40a80bea08b66ab0a2db3ceccf796de15bcf232f04f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/km/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/km/firefox-60.0b8.tar.bz2";
locale = "km";
arch = "linux-x86_64";
- sha512 = "083bea1f3d92a85a1748cad54e67221733929fb1f799c0827b32c061d4e0c8d16a82633537d5efe2bdf06ca7ce5eb0af646586e822ec53a40db18b34c6159a0c";
+ sha512 = "0effdf51a9ecb2312f34e14edcaa7ef40d392f6f969c46b1dc204471da276ba5b73416ede2cf6ea69205f67ef44df815e6038137c2400df2e2581564cde5b1b3";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/kn/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/kn/firefox-60.0b8.tar.bz2";
locale = "kn";
arch = "linux-x86_64";
- sha512 = "f2a276353249e5e75e9ab9abb97d7245c1dc45f07ee4c77204e58b4b58560ad9d0145654faf32f18615b5f92442e82e3f4fb78d7158f83108e95e25a62d1054a";
+ sha512 = "f57499563c17f119472fcb48afd54d4df98c85c854814f872e12e5ef4d3dac3192905f43453849ca7f024b4ae9a96528c2f9a55866133e3ba0651d046fc4ee8f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ko/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ko/firefox-60.0b8.tar.bz2";
locale = "ko";
arch = "linux-x86_64";
- sha512 = "cbd247f8e531ddd9d134eb6b2dd2fc41bcf2ea161e46ce983a4e4705851fb600d18b0d4cfc1ddf6dd0a565a9218015c9008aef1334f0195690d0b03ef05784c1";
+ sha512 = "50defae5a904a2dccfe8cd34aa2ddffa05a18a8b8b7181029f7b5b2a6bf612445bee2c3a4cb4c4f272bb97dfaaa487f2ed31dabf200631c53d963bc5f66fec1e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/lij/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/lij/firefox-60.0b8.tar.bz2";
locale = "lij";
arch = "linux-x86_64";
- sha512 = "bd44ff3d64617ee639ff3f1a4153b0c71770b4f2c26c8eea5f99f2d7a589ddec6bb553aeab8b8931a39599ea897a22a42559e4c771195962110aa7f2cf1a2f5c";
+ sha512 = "9bee6742358a2c726b23e5c51d79fafa92ab8a3df7ac4acd2ebcf9b0d6a3661ee65d6335ec91b4e02a0f8cc3c3b452ff642ff2682788a647fc5d29c80b8a6d16";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/lt/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/lt/firefox-60.0b8.tar.bz2";
locale = "lt";
arch = "linux-x86_64";
- sha512 = "fe917779578a5f8ffe2f109d60b5b0bf8b2b88974a2e82f9b067ff88d9dd5e210878ddd2e1653c17a0f0e0bdb61bb1e5edc613bc72cc43165b287430808c0f10";
+ sha512 = "1c2d6e3f62ff24b4590163da626a92e461b9e7035346309bc7cbf1185f21ce318ef6e072902249da5c59d1f37724e4079b1d673492d2dd94ba0f50c38af818a7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/lv/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/lv/firefox-60.0b8.tar.bz2";
locale = "lv";
arch = "linux-x86_64";
- sha512 = "ace9275a6933abf4cc0288fbec2be91ab9ce8ba0e25ec6e9bcdcbc14a5a0fecae6ca489ff7c226496ec345c4c27af645f0694b51ad7703adb81db14be66bacaa";
+ sha512 = "be9704ccfae945863ddd60ac9a4cf4bd2642bfb11fe3adc20d396c9fb0a85189fdd31200e59f06aa4a1c50f46c799ab07864e7f677bec2133b9e2e60ebe3175f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/mai/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/mai/firefox-60.0b8.tar.bz2";
locale = "mai";
arch = "linux-x86_64";
- sha512 = "74d5263c8b231a61f4adf3fa710bd0fc281bad1ee97d52b10dac108c81e49f1d26a0a69a8331abaa6157cfe086499188b4729b3542ff093ed344674ea733ec84";
+ sha512 = "0bfb640ce98b3e16b01b12db7c28753d9d90d46beb7ca7f205fcfb9d90537eeeab6b29ee999108e549b257c26ec4e13d64e470ab79531f83895403ca7ebe7d0c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/mk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/mk/firefox-60.0b8.tar.bz2";
locale = "mk";
arch = "linux-x86_64";
- sha512 = "3ec07d59c4ddc7763a4a1a4981dc4cddf56be53e22e7cc679e7115bd29ed1584dc434704f26847cb2aaf02149c31379caca16b6fe2054fb26aae24562ddb4a01";
+ sha512 = "7f8ee664f3f4f91c3b13f2e9f0cfc8d575f9a0da263370b0575a16e6e9bc7ba9e449f62df6494ee9837fd8e4620c2d4848d0cb7d99a3cd675a87bd65c1ae96e4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ml/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ml/firefox-60.0b8.tar.bz2";
locale = "ml";
arch = "linux-x86_64";
- sha512 = "b9f4d4808a1b60e55d98ba49f49420708f90ab481e0d382f9d37a22039969553e976a4c7a36ec9971f35dd2fddb1a97f8524241ffca98e57aff991985310a2ff";
+ sha512 = "1161e096b7d01fa4de5ae618045cd0528715f961434eaa569f8492a7ef0c059c2369f2dca348ffe0f24376cf6ed529be9b7077bffada3b0812a4aaa6677a6c82";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/mr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/mr/firefox-60.0b8.tar.bz2";
locale = "mr";
arch = "linux-x86_64";
- sha512 = "9fe06c2b06a3cf07a9d3d081fa693efd8f445d5257ab4d7fb094822cb023962b69d7640ccf92e6cef6acc7d09114510f9a80224d7399dba3228cf66a08893021";
+ sha512 = "cefca3f2f8c94cafea0e473a44a1068ab7a26956b9bf2eb3cd0dbdef851288df0bfc05ec0cfd6cd804963d1fbed7b5226cd1171d2fbe86372c977c22b162df4e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ms/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ms/firefox-60.0b8.tar.bz2";
locale = "ms";
arch = "linux-x86_64";
- sha512 = "ce15f5e51e3e74b18a3fac89408cd15ba37486e108d98760e0e902f0f3151d837dc1d85e028bac707c95c86e3c38ed2498a9de6051917c5dbe0cc4fb13ee2425";
+ sha512 = "7b6801cde7734c77318de91dfbfcb3e039012d048fd83014e66079d797a9d4b4c7394b7a39f330a24c82c0761436bfe6d7d5915e26e4ca18f4095fc68c728caa";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/my/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/my/firefox-60.0b8.tar.bz2";
locale = "my";
arch = "linux-x86_64";
- sha512 = "2b4611153876f77ecb42029844e5b85285ad7700fa3abf7d61ab27bdd60fbda8357e951edec43ac20ec62cb29eeb12cfaa7edede9757f35673003b9edf3b2070";
+ sha512 = "c4257963ea60c4d932326dc5fd468b96bfb6a35b35ef3c7950981ba92f6ba07dda586177ebfe20c386fb8b61d0ad406e102163f43a2f96e9710a4b0e7c241245";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/nb-NO/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/nb-NO/firefox-60.0b8.tar.bz2";
locale = "nb-NO";
arch = "linux-x86_64";
- sha512 = "faf89b596a239ddd18ca65b8679a54f7ef6615504935789f397bf804eea86f2f852925e260c78bd123f7de811f2cf619d6366caee5e55fec52cb1beef338f931";
+ sha512 = "6061bc7c8c0fea22bcaadebd2a264f0726b43c71b9f4b8c4b33ded9dea7ce9765e88fd1e4dd47935ceb5791a43785db5f4381fd2bd0181a281e62b6de025ef13";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ne-NP/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ne-NP/firefox-60.0b8.tar.bz2";
locale = "ne-NP";
arch = "linux-x86_64";
- sha512 = "b653bfe0b5f89363508ac9a5835655b39ccaf8a95d9c4be3337f8e2180873e194e0b1d8fbb35a8332b33bfe1090fb430f66ae2fd66518c1f3c342eba578afcc2";
+ sha512 = "ad4b705bcf4ce2b819f92b45e4fcdaa2003b37dd6823e75caa153ecf5afb1940ef79984c8602c94e96ee2be025d46a52956a78de57e3261bdacfdbde605f568c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/nl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/nl/firefox-60.0b8.tar.bz2";
locale = "nl";
arch = "linux-x86_64";
- sha512 = "deb8665f03b730cf36fe5307cbb5e5f9ef532c756df7e442d35deabd1e72f960f5a90b39efd6e306572d8601ea5a2c56ed1dd5c3a8d4236fccd0ca15ebfe600c";
+ sha512 = "d74352e12bd6f7a948f9ef8cc383811f361c8b68eaa060ed9859d3680674c07a4ff922c818bc502fda85dd94ffefea679e6f9ddc927fd193ead7685f40beba75";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/nn-NO/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/nn-NO/firefox-60.0b8.tar.bz2";
locale = "nn-NO";
arch = "linux-x86_64";
- sha512 = "0d26ef79bef420664e5b34628258e50dca8b203aa7f92e6a3a3231cf40dcff4d027cb575689964021954d21f5db348e1140b4c4e4f080da9a56a12087708c416";
+ sha512 = "7fdfb976b9c586cc5cafda4cae0e6d379eed5ab0524bfe5cd5384612667a2949e5cf1e741786828b30e8ba67a4150bf34c4f10f2cd2c7aa89caede413501adc4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/oc/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/oc/firefox-60.0b8.tar.bz2";
locale = "oc";
arch = "linux-x86_64";
- sha512 = "eafa596c235859b2f64f5b07e24ef5b4c2920beecd4bab4ec9537bec3c452db1fc42719f20afb00fb6fccea495ed4981e6bbfec4ac29a56ade0785a41cc04160";
+ sha512 = "3a967f09b09bdb3b0009dee7896cfe787b65ae15095e88be6acacbe79f69411afc6d90638f0cd82171a4f8f858e366821d3b3f3cbe0fd50b03172768ad2525d6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/or/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/or/firefox-60.0b8.tar.bz2";
locale = "or";
arch = "linux-x86_64";
- sha512 = "c6059f8a0624e39dd3a3ea6fdc6cca028a5bdbc0b75a971f2160aacc4f3eea1bed566941d7c01a82a4233942f1c56dbdab41d5c403cff6fcc5b6a7aad6fc8365";
+ sha512 = "2f9d078b65e479427c1a91714aa7290a2aec04cf3a6414df82ddeb5e830210575656d7e3cb35304c2d1fbbad264d85ccbea2e2408a477a396c368fcd4aab95ff";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/pa-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/pa-IN/firefox-60.0b8.tar.bz2";
locale = "pa-IN";
arch = "linux-x86_64";
- sha512 = "0ca496e789bdfca3276127f2fa3cf2ee8a257fc383d66ab10553165de3413db46b99b4a6c3f049d429cb7a35a03252de6164e63563a066bc15f5a26bfe8d7a40";
+ sha512 = "bc3b65a2db74bd04e31082b9dbf3aad9434c9db2021d28f6a058ce78ade53b6ead38b9a7f123bf58e8a25f25d76a0e5fdff6372b04e34c88f4cf7e58ef80daea";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/pl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/pl/firefox-60.0b8.tar.bz2";
locale = "pl";
arch = "linux-x86_64";
- sha512 = "9bcc8395623a1d5600698b357bbe95861cba29b8484ac7db1432597fa205ee972c6005c16ba2c44ba8487b4800b6bb697c79f06d0d1df0858915e42d9fd044e1";
+ sha512 = "e1910f17681e058fca270e37939e5b6003195499080d747f3bc5a4ee9dbb960919a440a7f627050dbd0b66988067f32e41599d72fd6bf38f07e23ad317f83938";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/pt-BR/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/pt-BR/firefox-60.0b8.tar.bz2";
locale = "pt-BR";
arch = "linux-x86_64";
- sha512 = "92972a32c35969ae21407c188dc107e6d436347a87f2de5233a242f2b9ab6d46681f2f44a601aebb0c52fc1084bc58b64875bf165e047e7ae9dd88cc5b5a95aa";
+ sha512 = "a5993b73b475483deab792e4f657a27994aea194c716246707a0612a7b5c4f6b8b7a23befafd7c6fe50855a11fef8513b5bf16cfc6125a786b7fc0d50b102687";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/pt-PT/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/pt-PT/firefox-60.0b8.tar.bz2";
locale = "pt-PT";
arch = "linux-x86_64";
- sha512 = "9bd7fd4e84b1151729756b8caafe5521557dc0747c467db95f822a59fb4e9aca02f781751126ad49291eba428691c262c1b2cf8f47b61daf860172de6b493f8a";
+ sha512 = "306c7f964d09d8d73b7c35161e28dc856917e7798c1a6a57bae7ccead2abce5a6a6a151f8e5a66473d3ffac43e0d0e2e4dd9d1bfcf66b23818e6bec246bd547f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/rm/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/rm/firefox-60.0b8.tar.bz2";
locale = "rm";
arch = "linux-x86_64";
- sha512 = "e6c3adaed2881cbb0004a2851d7c499a53e7c4fd928047c2be861c45277350dc0474c198f8335e0eafdb624d7fa3d4752814ea33d6f8c857abcfef409552686a";
+ sha512 = "fb29e90b0728b2a0b23e2d87c8baeb6140301cd0d6d89fcaa3e047da25c8333f5eda67a5a1582f98c6711f894cc08542a6e8ab0a326726e02c08195cd88131c3";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ro/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ro/firefox-60.0b8.tar.bz2";
locale = "ro";
arch = "linux-x86_64";
- sha512 = "6354405bec7ae13716c9d784ce8cea4d5e5ba950c6ca985785501bf6704305c00c3758f1a304790cbf1fc8a6203c0df2b72dce70cd3d4d3002eb8260519d7e1b";
+ sha512 = "8cc66ac0b88632bc40d92764f0efdb71a69949d29a14a2ea06907356fecac5faf472399fa2c55dd515579ed8c3501925286db600f9239a82a4963aafba2b56b5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ru/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ru/firefox-60.0b8.tar.bz2";
locale = "ru";
arch = "linux-x86_64";
- sha512 = "fd4b499f8d7fb635692a71549668fa1f7608c452073caa18b826f6fd063d39cc11c6149435c8c467c157d16a51bb2389e828f8b856df70c60721f0617b169f81";
+ sha512 = "d346b5e10da51dd30b1b404f567673fec759ba0f8e44f0f0dcad1375df212aee58d34147599beef8eb78d12ff6911ba703ecbc3daf8edf206d19a3566a83cd49";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/si/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/si/firefox-60.0b8.tar.bz2";
locale = "si";
arch = "linux-x86_64";
- sha512 = "224a15e6426a2f770d489b2afe061b2ad9f92b2f9c01bd117a6f0b074a759f1e77a4333b9e84558121a5784970cc470392eeceba4c07c1d51861b85525d2e443";
+ sha512 = "ec97cbfb74a86d96e05c70f73ac2e45448720c25845cf24e9c45d8d3174fe540911b691fa12fa96ed4b82cbf291a539311247d2b2c8073f790e1a3054997f50c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/sk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/sk/firefox-60.0b8.tar.bz2";
locale = "sk";
arch = "linux-x86_64";
- sha512 = "b91cc032fc9362e23d6339efdc0dfbc1397ef3e4b067f2cdef1d69972867b331f29ba2b1d21d7c1f7986d928efcb4713b439528dc23c0a7d2228a55ffe49ed24";
+ sha512 = "86676135408c0d9c268f93a271d959dc250d6cbd9e47273abafef0e5d8ba86a03e560539008034b5895ee0e9c415748c10586be538adfaeb5c7fac5f3f54a4f2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/sl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/sl/firefox-60.0b8.tar.bz2";
locale = "sl";
arch = "linux-x86_64";
- sha512 = "0c6ecd3364fd47485eb3ff139c0e46200eb2fc6ceb50c3ba203c67348f7e46cf1968e7e225b48da5f65cb63ebfae4371dded2de89a40a629e86b21352c6fa309";
+ sha512 = "7fd5bbc7c046a09ab05f8751015d9c04f01d8cea0cd5252ad49f7dae612ac87d65d5992e840bc7701b3d99c90869143c721e690e51f45ac0311e27c45471b23f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/son/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/son/firefox-60.0b8.tar.bz2";
locale = "son";
arch = "linux-x86_64";
- sha512 = "84109b6b1a27a470f3edf67bcdefa1e0341f97889344049f125889b379f55621ad8a8eec4390ab5cd0f070e105c956da11abf7ee18fba18fef9a068164bfabdc";
+ sha512 = "b1fb2a67f132d420cf47707e0f8c4cac748b2c010ae5df7720921e742c13af851b7962c6808316db3eddb31520fdc84367f9dcd4cd0549bfc5a0aafc02cd9b4c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/sq/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/sq/firefox-60.0b8.tar.bz2";
locale = "sq";
arch = "linux-x86_64";
- sha512 = "2d1700364e00a36196b65a1b223aff3de48f2873196a9d70e1f99a9b9b570ea0b7182a722bcb18d3fc3085ece48b0f87fcde56849877fc677a51195f14623665";
+ sha512 = "979ba11bdc4a19cd0ff71c6626ec9bacd18738758b1748218206590c29474532ecf28aa9284e94e57db72b24330632913df89128a6e4297582ee64ed47e63065";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/sr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/sr/firefox-60.0b8.tar.bz2";
locale = "sr";
arch = "linux-x86_64";
- sha512 = "9e2c0da8cd220cce4c6180d37a954375ad3ad4ca93144c61f0ea20da82b74025ba06637602a864bfc56f53c65ff5cc470f6da41ab094611a78b1ca15064ec16f";
+ sha512 = "65fc8854f5dbe87f0f548eb755b08f9dde3141c765eb6e891fc85cb91814a72edfd09d0aeeec2d98949a788a11a775e49a8ab16829358d8499b5ee27565da4bd";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/sv-SE/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/sv-SE/firefox-60.0b8.tar.bz2";
locale = "sv-SE";
arch = "linux-x86_64";
- sha512 = "d75958cfb3c72f0622dde818345b408350cc48e407dcd83376807659ef687340879e7da99bbea1ef2dc9440897ceb0618161e1986ac3607a86a1386629b9752c";
+ sha512 = "2ed2dc8618c8864497174245c50f6e4c64cb00225c7ce77c04a81619bf56fc5e93bbdaf7c215576e521a7951aae5d22ef606f8b93fb5d5a302bde3e92d2bfda8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ta/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ta/firefox-60.0b8.tar.bz2";
locale = "ta";
arch = "linux-x86_64";
- sha512 = "5f277be4f4196b4cbee8ced0ddf861818120672f1ffb7733a7b0be22eb1c9069a59818fb8e193a274db2fe5a8cc648eecbc254d7e49e9e15a77a91f80c86f36d";
+ sha512 = "f8bacb758829611b730ae584107964b4fdb3e202e45ce5ddceae9d6697c655377242a1550884051c7d6c18126fa24f8859ec9a8527368bb28348d16e69ab656f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/te/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/te/firefox-60.0b8.tar.bz2";
locale = "te";
arch = "linux-x86_64";
- sha512 = "945af4c0fa363170b45268290274b73765959212033ada481b1e7143ccf0440cda981f5f009cdc84c2d145d109c275430b769a6c96bbfa736ca6885633eeb8de";
+ sha512 = "b20773a0ee3be91af9635e4bc92b148c91f1cc62597294f5b37608368b1c5fccda1fc203938a8ad7f2f59274dd6dd74e98d1436e74b6e4cd8ea21a6cf2263cbf";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/th/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/th/firefox-60.0b8.tar.bz2";
locale = "th";
arch = "linux-x86_64";
- sha512 = "fc793fd7d840f71991a4c2721739d1747baed2175fdae113d93123f302346ee28c6f6d1b4999a066fab9eb9eff2be848bc2ae8c92d2cb98376110e442e0b4f61";
+ sha512 = "ea05713f6f615280317d3deb14a5f8c3ab6895333333da165aac253c7cd9d62e6b913b56a850e82c0713abd1fa92c9f447771755b557d0056e10f39e54b5c663";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/tr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/tr/firefox-60.0b8.tar.bz2";
locale = "tr";
arch = "linux-x86_64";
- sha512 = "de65d81fc55c67be74f5da3ba5edd89f40929943b16aff7c8b311f9667004a00de873fd17e03a684517a8504f90e0b06700703b0484af6072aefda0640ccacb7";
+ sha512 = "73a8207478a59a2cf2291ae848dd1e8edc7274b4de4feaff4703279750406bfb9f74a3928f717d0d2274f0475b449c8327cdbbfe367a31f35499fe3401029f26";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/uk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/uk/firefox-60.0b8.tar.bz2";
locale = "uk";
arch = "linux-x86_64";
- sha512 = "a6fb5246b50962816ea30d84f9508771662442add3368bfe1020d691adb8e467baba89bd260ab27e506c6fa9201156bca9b59f97b878f5b10007b1a9f856544d";
+ sha512 = "7a6f6ab7e282150b7020bdcc4d025883709088206df00f1eb47979a937f5b7f1b1f7984c3e9148e14ea669bcb4b9022c885816e52aeaf695098f55d9c00739e5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/ur/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/ur/firefox-60.0b8.tar.bz2";
locale = "ur";
arch = "linux-x86_64";
- sha512 = "816aaf7b63f95b0cb14b58022b708105ae2d4487354579860d25a2e264a0cbe1aab3a2d7d310fc7b2b5e9daf9c7c6cd11ff61113da36dbc2b552e26dae542e51";
+ sha512 = "b8f7af681ee9f83d6f0ef76f860a399612a4431447f77b16750cc09c03e2b78b98f2b2ccd9b661221a17a2a45a3e383a12346215fc3970d6105c44ba4e655e62";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/uz/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/uz/firefox-60.0b8.tar.bz2";
locale = "uz";
arch = "linux-x86_64";
- sha512 = "023aa98c7881691ae4cce0d63477452bfe01483a35a40b2bbf63c33c13fa9382548c66f8f43d2da57f96410c78fb48dc96c06671182aac97fa8aefb175118f4f";
+ sha512 = "85978c209c7519862d72adc61065c52a2f7e2d3f37fa5fbc10190fc896506737a42bb33fca3f7532805617932e7f824bef010c43f51510b8c9e0609560c1918d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/vi/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/vi/firefox-60.0b8.tar.bz2";
locale = "vi";
arch = "linux-x86_64";
- sha512 = "21662f8627c3f08e7070b9e62acdb9864dbb8d6530ed2b92ac62f51621a92feb5232eb96f1ac6df2c2aad2c4901a8eccbd2fe0ac3a1d32450cf48dfe6c5c8a52";
+ sha512 = "c7dce64af32f44b09811fd42c2edbc58556c931d9e4d11e763b27d969e74d860a682108b5011335fc75f1ceb09107dc27ef1e4c0b196f0048fe8b3541bad8f59";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/xh/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/xh/firefox-60.0b8.tar.bz2";
locale = "xh";
arch = "linux-x86_64";
- sha512 = "3f84903bf9b3ab64c93364d0d555474c8929fa1ea15f345fe0515f0e82a660ea1bb5594c3e879ff4b0d32d9602c01e4983c5d45e966234d478d6592951300e25";
+ sha512 = "b63e73be6f0f7667fea700592407adf7599935c5a25ed93d140565d17f563fdc5c7e0cb688733916312287952b95f16e82496905c187d92832e0da296d925164";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/zh-CN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/zh-CN/firefox-60.0b8.tar.bz2";
locale = "zh-CN";
arch = "linux-x86_64";
- sha512 = "df0568896c58af9237025f212c5e7efe3e788f9d97ffec602a66dd0680b0c1b7e7207b0fd46e39fc69ca2f91a117353f92b7b05f9e61c42e54f6987389f87f2e";
+ sha512 = "8b1de2e32b3450c84184d20df16991ad0a84cefc745ef110c93697841fa5cb3f4bbd9d3f21c8df6807d6cacf97dea1b856cf651567858b4c7403738e7c8445bf";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-x86_64/zh-TW/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-x86_64/zh-TW/firefox-60.0b8.tar.bz2";
locale = "zh-TW";
arch = "linux-x86_64";
- sha512 = "b880e3f3eff3ef3ba36402be569c36f8c438d49e54b378f0a4bb725bca0122cd327fffd25d672c3eebcab7eebd6840f0154b72c4b17dc32e8711af0bf9b9770e";
+ sha512 = "4dacea538fe5885bc5030512ade78787be53db7625ca4a006c48787e6d62c4ac82b0c7d40976767ac483a6b88e4f44abe5339e7909b211cf1f720d584105de89";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ach/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ach/firefox-60.0b8.tar.bz2";
locale = "ach";
arch = "linux-i686";
- sha512 = "9fe7497dde682766bc18893f343e5e40250a9f88514b9ab6c5f6b4341d840b1a71849a66022f6e312fb53d87daac61885e0ed7fe353da9741fb8da443d6b637c";
+ sha512 = "6a2681ba41f8449503b9a55d551ca72a94c51903865062baf0f80e29a4cd98953ebfb239c72706e42795dc1a49d087822e4f13790298a78b0d12a0a08468691d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/af/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/af/firefox-60.0b8.tar.bz2";
locale = "af";
arch = "linux-i686";
- sha512 = "e9c7263be2b8e18a5f48d79e9601d74b5ecba6c1d04b2d0973209891dc9451a1d81601a92534202daac773562dc02e6c03cab1f5b4af221e41a778395573c59f";
+ sha512 = "7835ee1925c7e097cd16c92a9455e331573baa0a7c5150df27698199b423cfe0e511400955be5fecfe342d537b8a0d66e10042bfbe1f411b5b9563dfcd2f4875";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/an/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/an/firefox-60.0b8.tar.bz2";
locale = "an";
arch = "linux-i686";
- sha512 = "697398491023ad0695f4f14fcab4d7cc62a1adba61de374eb0f35938d179d00693372964a3c64f286f48b8a73a5f460500dc307fec03c4641d2171cf3a8bf84e";
+ sha512 = "bcad9e4ce854ae1a36ffcf82690cd8f2240aa04f0a525c1c0d9149e5ebed1e78813488a4eb8330b39e61399907fd421542f1b10c616819b2567215e5ff5f972b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ar/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ar/firefox-60.0b8.tar.bz2";
locale = "ar";
arch = "linux-i686";
- sha512 = "15204710b24d93a343dc9cac242b816beceacf207006ec6e8d08949aa9f880d015ec69b2328c3cc9961d33d6c3c817eb5971214f1b9b160e3bd1f6ba6f74c5d9";
+ sha512 = "205217f6214d77d0d8a9c33f5d09abc7c32488bdbb7f5e5221968ed490c10f634dc2ae561700f63408ac38d020f6d17937af2b711f2451585ff34affd52dd25f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/as/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/as/firefox-60.0b8.tar.bz2";
locale = "as";
arch = "linux-i686";
- sha512 = "9ecfa49068162b750fcc9c0e7ddd5df5c6acb5df0e02c93a52d7520af0768bb6469a340659b6289fd383ea3195d0b54523bcdd2bd1366103ded73369e3d87244";
+ sha512 = "7fff85971ce1150b1ba030b11b637c51f166ddc038acd78297aea2251b3b2383fec376fce58610bfa3579825ba66d9859a8f3e7d2e33939c82d4e692d9df5b24";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ast/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ast/firefox-60.0b8.tar.bz2";
locale = "ast";
arch = "linux-i686";
- sha512 = "093cb81f51345f5862715ec4fcf4d573a7cfc4d5105a3957bdc16731c620f85cf7541e9995919689f48dd42636a45c4390f6fdd294d119998f9ed1f05a228ce2";
+ sha512 = "f3bc3e70cbc691ff611b6bac2900d7e547d80ac84b3e1caad250c11e3b3776d9ab4db7fca8db0c6888378a540f966aa57e100becb810b1a3fa5b0e8944ae81a6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/az/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/az/firefox-60.0b8.tar.bz2";
locale = "az";
arch = "linux-i686";
- sha512 = "8d5a3a57cbaff56cae50dfbf73fecb5f7ab7fd78d4c3ed6e2e26b4e4271eb065bb104f0ab36b1c8e45f4ec255595167089200448267029a1831ea072926d70bf";
+ sha512 = "e9c25cedcc9684b88f442918e0a5606c1bc8986edb8c1ac8e885b00241a792c115f118799d425a876c462aa25abb36708b819ac712ed0c854e114a835998e30c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/be/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/be/firefox-60.0b8.tar.bz2";
locale = "be";
arch = "linux-i686";
- sha512 = "0e761be550dce2f7b92c5066c7978db3de51deac09909f4908f07fea9bcdd4061362d96f96b0df9d2414b64c700d5389f1ef50b211250c7f19dc31dfb8d39135";
+ sha512 = "0e27ac6e9ef47d8e54ed5da4e88b02468596869613dd214066bee13c11c5a3f614fce3dc92f6e4b49250a175195a14fa4e11e0a576e24a550c02fc64187a7da1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/bg/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/bg/firefox-60.0b8.tar.bz2";
locale = "bg";
arch = "linux-i686";
- sha512 = "e633dac1f889a53f6a5653012889f802bdcb6ef78fd16563d1b1db5d37718f7bd49da4978ea6e5868b216e175ddf45908b4fdb7fbb7c56e9f949071c4f08d140";
+ sha512 = "06a1a97d89230b344d72544e7d16cf9249b608d5a8957efbd5fc72eeea09ca791cf17d040d3a8adb64493d2eb10dc9cc1c334a0236aa41b087b9dade15345f6e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/bn-BD/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/bn-BD/firefox-60.0b8.tar.bz2";
locale = "bn-BD";
arch = "linux-i686";
- sha512 = "d5d77ee359d5c89264477d4ae70194e3187b3f44f413de4e10ed81add87bc8fc77e39aacc95f9192fadbbc6c81b5666c4952bc7d3778040ce6315b83f5effeb0";
+ sha512 = "6acec4d29d2a40e0d946fcd72ff1f623d54daf9d9c5c00099560fbb286dc91f1e2ba341153e97bdcf62f54fe616bfcf38ff1e6c0b774a7917653a7e422e26320";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/bn-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/bn-IN/firefox-60.0b8.tar.bz2";
locale = "bn-IN";
arch = "linux-i686";
- sha512 = "6d5c4c1d1a245f58750ecea5bcdd592d76f013ff34c9f4812a24559077a04a38cfef011530ad17d1a9b2d030186099eceb891f1b468ee1a0c9504da5ec311ff7";
+ sha512 = "b492f32f37ed40ab42fd628cd01d063a4705c8fd14ea599327f417231951a610b307cf1035cc81edaae2e784e38c55dda17275f77921e1a63936872d48944ae6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/br/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/br/firefox-60.0b8.tar.bz2";
locale = "br";
arch = "linux-i686";
- sha512 = "354d0e64c85b6e56aa2bb0d4188c9dd20abb180b99dab6d9d1c13bc8bcf8b3ce5c9f136d099e0357579d60673ac52a35facc3351eba2465edf67a5dda2b8be78";
+ sha512 = "e4a2432e279ee0046606ebbe84f0249afc225fc1276cd28bbe989049ac59b8c2fd09ef787fbf269367b45ff9c8092c6779cbafa45a05382976dfde3479527148";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/bs/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/bs/firefox-60.0b8.tar.bz2";
locale = "bs";
arch = "linux-i686";
- sha512 = "b748c6d1b146d99fe3dcde6f1eb0047d58f6950227d63811e9813c11578e8dfa59839c70062ef12e7a9ccfcdbe97bd3bf589d398dba75ca9544550463ed72da1";
+ sha512 = "c8172442b52b48396b57b36a9099c3dbfac36020769101c6c2fbe0a1e857700817dadea56a775d62f127fe8f86b714be0d1be63c9dbd8a2aff15b6698fca84eb";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ca/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ca/firefox-60.0b8.tar.bz2";
locale = "ca";
arch = "linux-i686";
- sha512 = "835607109dc7de538df2de97526244eed96f4e09f5f177f0a9c161cf69024a9c90c8ea00694909d1a1ce8be1a18f43854b57746856120898e8da458436cd5e35";
+ sha512 = "e199d2b24e0a1f559a551bef9f0658d23dd69b0a6f9e1c2b02885eaeade95144bea2a29bbdbdb0cf7e34cf9f7c6ceb49c407c34ef61f855e260b2b84436e38e1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/cak/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/cak/firefox-60.0b8.tar.bz2";
locale = "cak";
arch = "linux-i686";
- sha512 = "f29e43945b2c3c8430b807b07eb64e2128e532780959739c2ec03c41adac0fcff208efbd47b68359efa29384a205f192cecd23c3f4d7ccf0b7e4c6406d88c60f";
+ sha512 = "32552d0a4ec557950d64b0e67c572a7696ea7e58a99960b192e5b383ee30a39382c5b80e0fdb1b14f3643ec8c48a422098dbee1d99ad6b2c9eef1bdc3d0dba91";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/cs/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/cs/firefox-60.0b8.tar.bz2";
locale = "cs";
arch = "linux-i686";
- sha512 = "ba42ea29971bb9510cbae8b6c4bf7e105b18aaed5db7fbb375b4edcce800fe7d3c5fff6a4d9d08b57682d42f1eb177e20d59c832561348ce4fe5bb9f9193f399";
+ sha512 = "07f772b65b234ecdac971fd0a4c0ba049d17e148701b286223e972cfc77fbfb28c357e60e2311519459806b48ee8f10f5df96686a360b5148ad88c6e9de3d545";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/cy/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/cy/firefox-60.0b8.tar.bz2";
locale = "cy";
arch = "linux-i686";
- sha512 = "58d30c2995d3f3b7d27e4e519fb0fd6629e3187722382c2a0d89d7a4206e8b1d9a1f5d67349d335c30d5160cefc42080563a0725d3873faa7b2619628e2435e0";
+ sha512 = "1ae9d11b2911997ecbdf06c66072ba5584c70b33024a18aa348a50ce91019c62c862ad201d6cb7b427397eeaf0c7133136047241cc61fcba4cc761d9665bce00";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/da/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/da/firefox-60.0b8.tar.bz2";
locale = "da";
arch = "linux-i686";
- sha512 = "78ece52df0d26e588f3d446892c4cbbaac4f5269c423b73ee820908dcebe7be465ecfcfb83bf926fb2f3f8e428b479b3bc36f3380ba8cdb8116700ba034f4d32";
+ sha512 = "71786ab9acb16d3d2bb102863efb79e716a67ab0b32c6a6475bdcf93211d9517b862939576d258b98b543be9301c26e210c9f420ae084233e56d497ab49b8763";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/de/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/de/firefox-60.0b8.tar.bz2";
locale = "de";
arch = "linux-i686";
- sha512 = "c2452881f0d58779f0269608d548e7630861ffc99e91e6520d04b5644714cae8cb75995b3e5f6aade4aa0e85fa636d5bea81415e9c541a67a81237ea37450951";
+ sha512 = "36067646d3459c6893f3504d5e9a7ae3fffa7291fc32969e98d4ce3223b09ccdf7e0b04a6b73fa2584f9aa45e9b38a8135fa243a88a50fa2cf745b17e7c17de7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/dsb/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/dsb/firefox-60.0b8.tar.bz2";
locale = "dsb";
arch = "linux-i686";
- sha512 = "8cb6ba55405a481386d0085fe51ff7bdc401fea280dd7f30f8a9a1644f75d404eade352547e2d74887c236f4ec4f1d8644c029dc786115bcca6dc8c359c2a0ca";
+ sha512 = "e6fbb31e7db958d00a937a8565e691c4a65b975c0cd3f852c9eb13e97ed195dff660bf36c40764d3f9169059884e384fdea25ec55e49226a02b693b9e2fc3c0f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/el/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/el/firefox-60.0b8.tar.bz2";
locale = "el";
arch = "linux-i686";
- sha512 = "11460b2f813f06fb8c5e142e0d586559e4cbd852a5226fd4d505265136d79667dbf52a6ce26b33adbff3558dd40529af2b5386bed21c5060146d76e8c5eeaf1e";
+ sha512 = "15d300f31ce324e89f7927e66e39c25a0437609817f321185b385ad4026eb2646f065f81a1cdd0ae1f7b120582603c83e8c2b845530a6d44871741a23f219261";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/en-GB/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/en-GB/firefox-60.0b8.tar.bz2";
locale = "en-GB";
arch = "linux-i686";
- sha512 = "957649ac1888b086509ad006da7b4502cd72172d0bf47da173232043378025bfba7fc5a5ce5ace30a852958a73a426611e33abd119e11b9e8136fd4828ec79b3";
+ sha512 = "7ee1708cea3282fb0de47147bc54d5738ec4420c3d8e41af445e138fe88b453572d6848de2edb7e48258bf3ac25e03fdcf22d768b220af6998e97fd16d4588d2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/en-US/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/en-US/firefox-60.0b8.tar.bz2";
locale = "en-US";
arch = "linux-i686";
- sha512 = "72c69909ea8cd9999effa62b8fa42b5c10760e03100a4d6ba2c40322935edeb986f02b43bc2520acf1b7a89a55bb1edc0618df97e5d46e3fef1bea3c81ef3456";
+ sha512 = "2dd63530379b00312b310ddf63f7796b6eec97edfe6638dcc82dbc2648c42e9e96932c73f16518687f922cb1d45212b82b04abd39b2e6e7aed54fa4924a5da34";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/en-ZA/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/en-ZA/firefox-60.0b8.tar.bz2";
locale = "en-ZA";
arch = "linux-i686";
- sha512 = "7bef71a8f24e9878509c74ba54afcebd8a18bbc79a4508b5168d943b6c021d3055a5f2e92cb26382c678c389c44eaa592305489fa9d7d82cadcf2fee83aeee6b";
+ sha512 = "a04e3c3202e12f7f53b11107e0db92282bb5d8fc6627f3bc8729c520481d9a3566d39c68c283a97959020fc62ce1095c5b19d8dd85577bd5b0b171f7b67abec9";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/eo/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/eo/firefox-60.0b8.tar.bz2";
locale = "eo";
arch = "linux-i686";
- sha512 = "6f46633155624cf94b44131e03912f708045783bfd2a69a14767f1c0a78136ec9ebb8056cab7a5c6eb674c0db93d4446858a744479b54c05d9367bedf5440a64";
+ sha512 = "87afb472bc3cf46a4af7d7bef7b063a09208927fce7060824575ddf7197e6f58810e5e36631402deed1cfd5d921323ba9326547a57792e0c8f4166c061214018";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/es-AR/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/es-AR/firefox-60.0b8.tar.bz2";
locale = "es-AR";
arch = "linux-i686";
- sha512 = "14134389090a1ec88ee91160c5c888df8a8799cd2a146341585c2080591a0fb69bf2a0c2c6c753bf38d29c6457eda7b3b862de406ea0a46f511ec1ba26a8aa17";
+ sha512 = "c963b697c4ecbde0432170a068143d03486156622294ab46e1426e3a3535031ce4c8e2b49d5a5b0de721cf1dde2abd60b6619fd4f8dfea90b12ce64ad4744ef6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/es-CL/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/es-CL/firefox-60.0b8.tar.bz2";
locale = "es-CL";
arch = "linux-i686";
- sha512 = "afcf3141907a289d47d2460df6689bbc38b0715ec75df57b0b874e1c9f2591921cf268490340d754db7f2666d8eff94650a4f2f291e4308b61f64d4935d42bab";
+ sha512 = "f88736bd06a98e2a03550b7134ed4b6dfd06ea0506f83f0974d1c4b3226a3a37c1fbc5ffb085c5cb044dd282c594ec8899ddd3aa1ab153f9a5214432ffafdf4b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/es-ES/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/es-ES/firefox-60.0b8.tar.bz2";
locale = "es-ES";
arch = "linux-i686";
- sha512 = "37ba6326fd0f572ab0bfc6667f026f5f5787500bdd62ed0123da31884304b18926759f92b8352c445e6ca04bcbd30dc6ec2859071c30786f97a218ac211c4dc6";
+ sha512 = "ae0368b758e8a19c96a4344a0519b2b5c645e6bb19a3babc0b0fce9c7b43df83a5586406144d08df049fa984ace65f86282bbd14307364d99139549e0873be4e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/es-MX/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/es-MX/firefox-60.0b8.tar.bz2";
locale = "es-MX";
arch = "linux-i686";
- sha512 = "f0855d26bdcaea247db6b3649a7d93d0d96dc75119ee9bdba84412829a67b8f4c853a16eedcb9a550d53183f54098515cb2b09531053923d57ed7d0efa4d80a1";
+ sha512 = "a003622d0b5b048087e80baaee0776ef0f41189bbab81441bd31f430947521149ef8671aeef02308049192d4184d2fa0dabea8c4b29eeff6abb005992278da7d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/et/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/et/firefox-60.0b8.tar.bz2";
locale = "et";
arch = "linux-i686";
- sha512 = "912da96f4101232c59d64641c093a5bbed63af9b2424232f7e71c1a37156e34ea59ddc0945dcee8d7706d0f70e0246c9c8ec8eb5dba1b205c901c438c544d660";
+ sha512 = "71a81507a18ee16d947441f76daaff9c35a7d1f509ec4699143a7018534524f5d0c64340541efebacdbc7a163955ae06a143a165ac178a5d26c1b87b2479d669";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/eu/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/eu/firefox-60.0b8.tar.bz2";
locale = "eu";
arch = "linux-i686";
- sha512 = "ec7c5658848fb5350a08a48c5d8886cb17799bacb4ad521544a2a720c0dd6a5f78c09f93a066c081d09c6e52ef943aabfdfe8c33a17e628ea8b77de49b2f6d2b";
+ sha512 = "d9fbed6bd402b3d21eb2ba032c4776888629e68f9dca68421418e1d293e4eac154bc26b0d8297e814dca2cc754e69b33e307e9a896bfa8edc0f2da7a75a8cef2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/fa/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/fa/firefox-60.0b8.tar.bz2";
locale = "fa";
arch = "linux-i686";
- sha512 = "328417ba8209fdb1a48aeebd7f90fdbeea2f3ca409a7300e8097a020cfa83cf468289f709f62633039d841504bc4bccde5de5acc68dde6c625033aa16bc3c1fe";
+ sha512 = "bb024088948f3be6d37418eaa0e987ddf4d9854e7d06513e1691c4944e1d8ad8fff1e65118e9f45557601a238f0adf07a1596e82293728f2b011d0f1784a8afa";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ff/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ff/firefox-60.0b8.tar.bz2";
locale = "ff";
arch = "linux-i686";
- sha512 = "961005b2b0cf5c16cbbbf63d7d1b4d191aaa90263556328ad0da3076859ac3e6daf522828315da4d0d052b9698c310d46b8859f1ef4faf0929e3b7095a39f052";
+ sha512 = "e3f21493b6dff7cea9564ee067445076b2a9967b752530a0f922a70794fd5dd120982833574240d0ef854734a397651eb77a8edd0715da6c8e1710c3515e40e5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/fi/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/fi/firefox-60.0b8.tar.bz2";
locale = "fi";
arch = "linux-i686";
- sha512 = "deb6a8044a816f6f4bd2464c570f3679fed5248f0868712136b0eac67728dcd2a5dfc894642369af1edd503d6b882235d2fec0c5878256126263eb7715bf146a";
+ sha512 = "9ad7444691a95c1b21fe149ab4468031a6886a42738f31d5aa81e2321c737d2c53a6d817523de2722394a47eeecf514d218d7e41158f42a80b9bf2ac3515a0b4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/fr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/fr/firefox-60.0b8.tar.bz2";
locale = "fr";
arch = "linux-i686";
- sha512 = "bb165fc18e0e1913745a6c20230c2c8af495b8ae5453f689230d78a1401c66e05ef124f22c6f302cafe6247d21eaa20fe9802891d7eb99b5492a2b9a153d04e2";
+ sha512 = "d3eade70bde9bae372fa275912f3c1970c10978ac9e83f84c018b02443d341c21441b100f723c6856a5b61b742285606c5049328838444e7813e7427e1a0feb6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/fy-NL/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/fy-NL/firefox-60.0b8.tar.bz2";
locale = "fy-NL";
arch = "linux-i686";
- sha512 = "fc5d5b08f230bda12033e737843f9df099514fb3a86e937b08308755f996db1bd639b55db659b7fd14fd21ffb46d45abbf92ae7b9c909d94eb4b9d31a5a4730c";
+ sha512 = "412a873708341e94fefcbb5fd72661559a83b4c897f5bea8a17051759afc0ba214dbb9732f65d5f4d9dfdff98498106a3cce73cb4c6314ec7f7bebafd8e63113";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ga-IE/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ga-IE/firefox-60.0b8.tar.bz2";
locale = "ga-IE";
arch = "linux-i686";
- sha512 = "f006a764693de3200e8925f03da886b59def39fdcdf412375900e2206606d91a1a972d74be3dd186005205e1b400a95a4b9259b82a2fc167df94fd9cded2b959";
+ sha512 = "59f0b8e533575841f768cd80390d8237c2db3fc2f2e99bd87011a8868fdc76ee8e5a87401c029f55c990fb0775fabc163ad4d9ad1531dfdb7bf9fbb9b601e08b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/gd/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/gd/firefox-60.0b8.tar.bz2";
locale = "gd";
arch = "linux-i686";
- sha512 = "401967304b43bf57d6013c972edded392f6dd696ef6d633cf24253d407eb731ed9547d3ba7023114e25e3cf4546dd2136e79ae0a0df8378d5fb069fcd84fb623";
+ sha512 = "29cfb3bb6bffe5960968cae3096c63d92e50c514fcde9a26940e8304b688a869d6b03ce7479df514281fc609ea767c69fa66fc1f42e9b0f3cfe3be9ea0efad7b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/gl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/gl/firefox-60.0b8.tar.bz2";
locale = "gl";
arch = "linux-i686";
- sha512 = "8a639cd9fd5cd5de3eb82341e9ecf04833f79b3efde86843918e793e6c26118b9b2f51f26400d0714bf2e6f2a795e4d5af7219d4529d7ff6a413a51b74b98aee";
+ sha512 = "f7b425e76607833cf4ed8e4381da101667c94d2942fa06a9be94193da350d03e8bd0f1f6d500ed0c231bddc3db5e458e9e94bd8ff77580ceb321ffdbd8a5e320";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/gn/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/gn/firefox-60.0b8.tar.bz2";
locale = "gn";
arch = "linux-i686";
- sha512 = "5293d81dbf117183f5316429486b8cd192e3468a139e530e53197d34199409b62089df7021ee8937fc3c3ec89112762ac0a996455f47c08598d1c7f9cef79f80";
+ sha512 = "4f4a07552616989448bf5eb12d0a0ddbfb12b10b8f876d8a08f86bf58f113436b364f99ec26a20fc29eeef1030eb81546e0db1e92a8c86f46f6db1e60e784698";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/gu-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/gu-IN/firefox-60.0b8.tar.bz2";
locale = "gu-IN";
arch = "linux-i686";
- sha512 = "34d896688ebe205c37785b9274bfeeef5afdad4ed33a3da23e6164db4ad46618abbc915eb57de23b9b0357e0db9988377b12c956df165468d387cfc861c94ebb";
+ sha512 = "5510e8a069b7444c20af0c95258e21d5d7e35baea46b83ed7fa3546af41e76299191fb8e14beb459c79a4a2aa5f195f6c99240f5f54a54291e2bd7256e8a9979";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/he/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/he/firefox-60.0b8.tar.bz2";
locale = "he";
arch = "linux-i686";
- sha512 = "37f10b8b932b218ad17d302859f8b67b2438673b4dac6651d1a5844fd659b0fc639caeb99d07f46afbbb1b99c194afbf62088b50df5ab3ed0a902ee469eeb1c4";
+ sha512 = "c3b140194ef9fefe85f2aff0cfb44c49ddbfa3bef89b9b53d4fd92eea4532753d19617a57809c7d5413833e8055547daa1296e4cdc8f6d2a1cc792adfff65a79";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/hi-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/hi-IN/firefox-60.0b8.tar.bz2";
locale = "hi-IN";
arch = "linux-i686";
- sha512 = "848419a3528beac1d0035a90c1b1a5067251a52fffed3492a8211101dd2d23581edad844f803c7fbe0e5142d7f5e9bb463f0cfe5a048b2632e7529beb06c7eb8";
+ sha512 = "34e457813bdb5201b862dac75309ed6e0f4d7915111e9956517de12a809cf7cdf8f18238dea9e480434334d61f0e02cb1d3b7b63ee1e83f4854bc76507093838";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/hr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/hr/firefox-60.0b8.tar.bz2";
locale = "hr";
arch = "linux-i686";
- sha512 = "8fdac24f76ed898c8885f38b630e725e73602d9559c56afee4d171586591fcdd40419114a46c8ddd8028ef0a129d47e50bdacdbcf14f8f3fcfd42656f74f8763";
+ sha512 = "b65b6560c82225baed727e8831c549512d0d900f41c337a759d941b6d78462221649f6ccf2a3cbf889a838518c773cadc034d70cc34ae1253afe74af8e173220";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/hsb/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/hsb/firefox-60.0b8.tar.bz2";
locale = "hsb";
arch = "linux-i686";
- sha512 = "5416420355d3dcd44186eeb3c2d32ef88f557de1a59568d2fac33696998cc87aeb84ef0f1669e677451361f38088d93a4655f007b5e5cf3e7f5553671ab93c59";
+ sha512 = "c0966d7b799648a279dc1e53729bb1eb740eda31cbe008623e617085ebd2c6e76fcba68ad038b6b25e9f22032ca6075a66dd3fc068de7edcc9a297ced0353793";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/hu/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/hu/firefox-60.0b8.tar.bz2";
locale = "hu";
arch = "linux-i686";
- sha512 = "af6d83073b99e33be15ce32fe1269a0c447b503b7898f3a115ddbd22f8eb27475742c8a3ba083d83c9780aad989096f9b6e89129173c30f66cf2fdf3395c199a";
+ sha512 = "d324a1a87dd4ce1d39691e1f5bce35b0576abdcff72786703f9a1c336706faae885b7cf3578fd5436d3a6c5e30aea2f80276cbde72c38bfc546fbfda60ba29e6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/hy-AM/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/hy-AM/firefox-60.0b8.tar.bz2";
locale = "hy-AM";
arch = "linux-i686";
- sha512 = "4d052f2333b28681fc141b104729fe74e7750b6e6eb6e359e7eb721b17e7fd93163eb9fca860311a0b2f183a3bae107d4fcbb39e3208495b4cb343953c17e29f";
+ sha512 = "7aea87a05327f9d322931c79f39635d4b395a648af26177cbf2b4bf261d2fce0c756668f0de5ea6d3bbeb1fd51f7d4673882573a5f67ebb4406434ab42dae86a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ia/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ia/firefox-60.0b8.tar.bz2";
locale = "ia";
arch = "linux-i686";
- sha512 = "23381ecbb86926f88b4e7e98db0bb3633193979688f30d2828cd676206e155d9c3ed7c9a0bd5de25d1b065e7fcdb2df97205863a1444151151a8e0fa622df557";
+ sha512 = "cb0a81af96aa96923a49ce75c5dd6ece2597c1c7741127b9727df9f403437e41da674958dc3680d60ff599bdcfe7320d3c18fabb7cf28ea1db27a321e25506b9";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/id/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/id/firefox-60.0b8.tar.bz2";
locale = "id";
arch = "linux-i686";
- sha512 = "f38dfbc8db02c16be7e111a1dcf53f0fe5e6ff1f52f84562ddfa07a994bb89179d78b43cafb4de07a9a2872edf0a5f7b27c5a1445e0603197daf6d2b4ff83bd2";
+ sha512 = "546a0f63b7221de9bbba1d055d9d27a220d61527957b236031a062a092d73a55dbc8699154c6cae7d24cdee4715080fc99c4d15d592a7dd6af8a1f05811199d4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/is/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/is/firefox-60.0b8.tar.bz2";
locale = "is";
arch = "linux-i686";
- sha512 = "b92ad03428560f30b3fdba23d9ae979ab96d26ffbefd45f392169d5743dc50d04faba5e9607b0740df94366458d9870cb83661558e760f6ad89fd97f363abb7b";
+ sha512 = "8ad727a32508f339880f10cfb059c7f3efdd2a195490586d59566e622f99d58a9f0e72d2975453e795a51c6087b0e400c7deac34fcd250510eb85094df08128d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/it/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/it/firefox-60.0b8.tar.bz2";
locale = "it";
arch = "linux-i686";
- sha512 = "3c47fb41d7dbcd9b14b6b294a6e807c76b9973476fd8ff8c4d5e4da14db40bb15aade489155cac8e33584f15d841fd9caecc338556879063c3d0124b6eef70b4";
+ sha512 = "21d1b28d39098f9580f8573a85e50c2ad9aceee4c9183dd4a6c9ec673cdfb1411c743c44a26737a662fcf9b4acd9193ffba69016a8ad1ad8a2e85eb1723aa55a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ja/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ja/firefox-60.0b8.tar.bz2";
locale = "ja";
arch = "linux-i686";
- sha512 = "30736ccd9684e851ddd5ed7ee227c36a8248c1d400fe123a1866d2f090c8536fff494e168f17014f4f6df651b8215e30c31badfb4457c5b70f238ecd42a7738d";
+ sha512 = "71bc02ba091f38f0cbeb76c14e0009152a37a6f0adbac5886918fd2b6e75d04f3be3fcfb85230cc88664199422c15041d44991d476b8d5e827e502b145751fd0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ka/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ka/firefox-60.0b8.tar.bz2";
locale = "ka";
arch = "linux-i686";
- sha512 = "28a686b3e721f60284154bf21f0919841db7240764b23a77ad5bdff4b6ea0ab1ab0a8195b8f347e7caf17c43ef3f87401d896e9cc3f176033def1c81be76a61b";
+ sha512 = "dde038391cacfa4acdb25b3c703cc16a98c1a6115f82907d5dc40dc9512c904772f73e8f27651ea0dccdaf703bbe1dc4fa8f8249937933ae7ddbb51d0787d9cb";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/kab/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/kab/firefox-60.0b8.tar.bz2";
locale = "kab";
arch = "linux-i686";
- sha512 = "0c174ab063858acb4cb70a2d97b0359266d334d80a4cf0fb1d0a31cfe0bed03bd72e8cb8a80a8736193d494fffc84427b8780e633715dcdea50c4ed86c4ab6bc";
+ sha512 = "5879b59629f09cc265a1ab6a477899538f1ddaafefe6357fbe655698096d084df9e0f0cb7c7b4387e3ba14d3997cb36744c7e9f92e8967a44124df59cf1d00d9";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/kk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/kk/firefox-60.0b8.tar.bz2";
locale = "kk";
arch = "linux-i686";
- sha512 = "7ca54b7240de10b0c91fefdee717b472a7b583021e1ba072a44b4d9b5dce35a931e91c983f21ff346cd4b8330640b7fd8a9034bd2806578f7e0e6aea809c7cf1";
+ sha512 = "fe41667306010fd00ad3611b4c426373617c5eb64345ca3b08d86f0a28fa2055f61c1ce3320fc5b26223b851eef19168a2f43ed2e4e00167ab937d1a1f3133fe";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/km/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/km/firefox-60.0b8.tar.bz2";
locale = "km";
arch = "linux-i686";
- sha512 = "e785b2403fa2627fe75c94a3d5af2d639a7b7c9c213f4a58fc15b80085279b7ca39ff1e31e4abdc6427dc9b99955e51f44ccd027075244795383d6777d4ce79c";
+ sha512 = "5520a9cbabd270113dedda63162a21af2d284e0df6a9eb9b5b9a55d11989eb1ab72e6b0cde32245716de15e7d89ff54f26ea67b56871c4ab94de690a015c80c4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/kn/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/kn/firefox-60.0b8.tar.bz2";
locale = "kn";
arch = "linux-i686";
- sha512 = "cda35867160bd4ef2d1f96e2588a8bb3ee44c2c3f8b15daad16da56e637cec97336dd023204349ad36a4b11fb5c6dfee3fbcf85434ac321a2b55bc4b34b88b71";
+ sha512 = "e9f33a0476c90be99f3e66da6f4c244496a5b20a45dd81b8294446cab71e423e8a6a77442b2af268b87b62b329525690200b54996856039cdd857e5ba4e07f84";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ko/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ko/firefox-60.0b8.tar.bz2";
locale = "ko";
arch = "linux-i686";
- sha512 = "3291c2789d0d34346c8a5e8b6cdb324d96a89883dc5c5c68bf7ec6419da99b0ecab1039e09e70a38bb64ed7721e518d21c380fa117fc7d22f612c440e2d7361e";
+ sha512 = "e021722d534ab811c632fd472ac1b3cc24a49865fc625476db9e142b8210dad7d9eca87aac1537b1447f38f2264b7f61ac7a780edca4929637f78587378fb66c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/lij/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/lij/firefox-60.0b8.tar.bz2";
locale = "lij";
arch = "linux-i686";
- sha512 = "d911a6053241a42ba092cfaa64b4b52c60d10fea33bb3e1d5c9826a3f0b8ed0070ab6905b8f801c34d537cf110a8b33abba7e251039ec82fdc6dcf1fe44ebf47";
+ sha512 = "c7e8e77b2a71e57d8114ea0f4aa3f9653bf5fa695091211534ec1eae3185b68c557550e8cf7a506b361310b95274e4a5f21073957af25ea4d19c8fee33b07c50";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/lt/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/lt/firefox-60.0b8.tar.bz2";
locale = "lt";
arch = "linux-i686";
- sha512 = "0589d36886d66cb5f29a9f17f4f2fb2249d6d88fe1a2c98c7e70ca60d8ec0cf2a5d93d9beb0bd25af91b20fd4d34a292a80b91c619c1b08ea07a143ef8874271";
+ sha512 = "c82b411a66b0385ec8e9708ecb9e68a3c6cccb4088d299727b639adcdc41edb740b79721025c6ff17b8e3b3f9783ad7405ffe1da3c3e844f82e640ccf076dae6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/lv/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/lv/firefox-60.0b8.tar.bz2";
locale = "lv";
arch = "linux-i686";
- sha512 = "98f12874a37d09f05635f70589d410c59c5719e9dbc6cded8b673d28558f79566a94975a596e121497a9352bc96d3f646b74244a0fa36c48690fc60945bc462d";
+ sha512 = "a45966d7dd15c325588705d209409730ec21f828c5dd690e705a8540b58f278f4ec67d3ea17c4fa0c94f2de9765de7fff71c2fa2d3dac851f01bc5df856f6c8f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/mai/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/mai/firefox-60.0b8.tar.bz2";
locale = "mai";
arch = "linux-i686";
- sha512 = "f8316f566941ebadb77d11c365249cbf16cde1856b97753f057ab67d1bf5fb2a13aa18e2d5a3f0be1e5a856cf37feac91b4f629b1ef210a97040f15bcf2316ac";
+ sha512 = "bd205990181115edb1b9134c5a7ddc7725699ade854737b8d27018b80c4d6d5d0774ae92e6d64c5bb160f85bbe8a3cff7033893dbb698adcd4bca0a189b6dd20";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/mk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/mk/firefox-60.0b8.tar.bz2";
locale = "mk";
arch = "linux-i686";
- sha512 = "1744b771f83ef60159dd073c73f2fec6b3213fc3e9cdea8ba1367e50f2a8555ecd4cedea1c8813f8a9196528339928fef60b94c67d7fca9f118348165bc49213";
+ sha512 = "0cf7a3617c4cc9e8fe6753b1a6eb2199b3ddc8739efac499c45f41b79f319c4cedbf8c9e522c13150a7afd622c569c66057f934ff03176ca33cd35cf51a792c4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ml/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ml/firefox-60.0b8.tar.bz2";
locale = "ml";
arch = "linux-i686";
- sha512 = "6e25ba8aca1add8829e6b3982f2b3d394b8342b74ded519dd86b877e8e9405bfa2133894044bba9071b734046e03e87e649f94dfdc50af5310fd236c39429aa0";
+ sha512 = "a65f9f11ad6dbd82b64576a1dae5b76d30a353478932b5f8afd046764f9fb438c10d631935ede3743155ecc05612247766a1b3b603e3a9206538e68e015b6eb6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/mr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/mr/firefox-60.0b8.tar.bz2";
locale = "mr";
arch = "linux-i686";
- sha512 = "48a818e9e6f71381cfdc2f330dee0fbbdf7d8f403f2fef3dbe8ea5aed8f51f07fd18943cb94a6aacb032a02cc3eaea9c45e09ea383945765ed14f355661b21e4";
+ sha512 = "3385e2cbee86b9fbb44a1cf719a3fc6dcfebcb67f8adc884bf207e887651befa00f55aad6c74e009bbd4b1e07fcf39bd299abd3ff9d1c9f44f9ab33a1f4bd129";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ms/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ms/firefox-60.0b8.tar.bz2";
locale = "ms";
arch = "linux-i686";
- sha512 = "7b96ae68a111f133343ae4b56864e86edce3c50a88a18cd9d7e7406b1ee49645ceac89c870687a18020e9e382d707b26f5a34d3141c69459c599396605d74d68";
+ sha512 = "0c3a323e1e72cc8fcfa153def5ce4b2fb90d69e16ca4e4b6472561b72d7cfddc28e8ee3f90f5b9909837330f6521cee5b1ee86329ff0db245c0ba94cbc87da9a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/my/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/my/firefox-60.0b8.tar.bz2";
locale = "my";
arch = "linux-i686";
- sha512 = "a58596fcaf9cdcac330c2559d5e2225a47187fce8cb3d4d633e263a1370b0ef99ac214d8ccb3993da22c895333d511e8ae60ae88b92d59f3c137345531bf2762";
+ sha512 = "18e7e4fabb8a42491bf083863b2979ddab9a3a914ae476b2cbb8a290179d3685164543e637bfdf905655c482634b1914903253d7ac120bb18d122d0e60ae1f85";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/nb-NO/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/nb-NO/firefox-60.0b8.tar.bz2";
locale = "nb-NO";
arch = "linux-i686";
- sha512 = "e139fd7712e7ad97ab14d75e7764618bb8af2590085322dd6309191e4e9dcfeb383c2ecab4664b682ee07c1fdb60280ab6a58d683e6a809664221534dd2b555e";
+ sha512 = "2f7a98b86c52b35ec5cac1b866b844474020eb0076cb5a2fab4abf6bd12ab3882a54b7b324ee3491ea173c206655aec3f854a9f0a29d934405359c56a34bc9b0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ne-NP/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ne-NP/firefox-60.0b8.tar.bz2";
locale = "ne-NP";
arch = "linux-i686";
- sha512 = "af50e838b7f0c9c85bd19d0ad0f40852e5260fd7c757a346a7fe2345713a6a12f679c5b9aa8a5fb430521c72aba84a9b61cd131c61d13ee5abea2f3cf3227cc5";
+ sha512 = "18b8472b4af585b65995b3d25e6fe290d5758a06b1cc1dfea4ed3a6512a8c250c2d3e0157a274a35677183b2e4a89d1b0970d310e8dc319ec8aa8f1c02a6b70b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/nl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/nl/firefox-60.0b8.tar.bz2";
locale = "nl";
arch = "linux-i686";
- sha512 = "deaa920c77e9cbf73637451f4539a0e68f87e05997cad3501a34a7a864aef5e71fcf4cbaac1dc262fbe30ac3785583ac12baf5983449c9afebfb39fa6d372d16";
+ sha512 = "f62dd81c30ae0201d1f7f98804c10e8e431bf19ea3249b4a4edc71ad2103ecb63efdddd5153059837dcf4d70499bcef5b874aa69a15a391255af0d7c37a65b5c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/nn-NO/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/nn-NO/firefox-60.0b8.tar.bz2";
locale = "nn-NO";
arch = "linux-i686";
- sha512 = "7ae0b550ae2bc3f1100eaf9e7de0afa15a61bc2e50936ec0b93d6da9c53768e2c73c1a31854dab9d564344abaf22155c62b3b430b07367b47b61a79a8a58a662";
+ sha512 = "955b9faf5f17f598c13d51d9845c4c520b5cc93c0c0433da189cfc43d177665f47f2894f77d2dcc195da7ebb16870200d49703e45eec6769624d6f4c52d85879";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/oc/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/oc/firefox-60.0b8.tar.bz2";
locale = "oc";
arch = "linux-i686";
- sha512 = "b97664f85fdbc301496d77efc95ab17892104a72558909399f7ceeee5427dc643aaed0e1ed48c392f2c3da47b221557f9f99522779c2a21cbc5baf08af66749b";
+ sha512 = "6a400ceada231224f3e38d4583ab064fb6a2aaaa89b886f21eb51435ecca32c5cc0bf4c67041a3e04ff2006b1d12899679e0cd6e425e39b005ddb5ca80e4aaaf";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/or/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/or/firefox-60.0b8.tar.bz2";
locale = "or";
arch = "linux-i686";
- sha512 = "52fcfb51c723085a6d24c2a8993aaa7d2146071689dae71f8dd6a7fd561741fe8e4a23e5ea2f6525ee0a4b970d63cf7751bd8fa5a771dc0b1463039bb17828fd";
+ sha512 = "ef19a79b8ccf2c5418009abb06131a46b7205899a71b48baac0958062f73c54fe000ccee3984c42cc2fec2ceb2aff3644ee260754af5ff40317c375e22edd9c3";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/pa-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/pa-IN/firefox-60.0b8.tar.bz2";
locale = "pa-IN";
arch = "linux-i686";
- sha512 = "feb2a04fc6dbe4efb0e1937173bf7d06670e04f7dee56fbfe6983a81ee1862b89dd9eaec9bf7efec29e388efeb17a30c24bc276caa4e430fc2eeb87c84882ef9";
+ sha512 = "590785f0a3cfca1f8f7518cd6cf93398d71f1bd01e5bb6add5c79e3acb7fe8322d37b77994ac33d4ca33e19a81dce016dd0dd479fc38a7ba611d7a4d8fc30955";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/pl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/pl/firefox-60.0b8.tar.bz2";
locale = "pl";
arch = "linux-i686";
- sha512 = "41722381775abb0ff845cb8b38bf7fa2782f7af0cd8c12b5a86bdaec797d4aa6a2ee2ce35c234a1a17b9e4f69aefb244e3e8531c1d151a002a81b562ee24179f";
+ sha512 = "77d6741dc35da55b92cd3eb5ebd3a32a96cde805e53314cdd64ac0ecca6a74bbb042af6cb778d344cfe01e88ef5005c067f964609404e55d4076f1427479d629";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/pt-BR/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/pt-BR/firefox-60.0b8.tar.bz2";
locale = "pt-BR";
arch = "linux-i686";
- sha512 = "63b9385ccba72f5c2ba3bc735685d6d35363b0d523e508cdb603f59209b750fdff050fad791a0c01abeb7385c1c94fd24d4df00b2177ab47d3da53a7d0f74175";
+ sha512 = "1aac86496779b9b6b570a7e7b0b4c8b443c4ac13e5dc548290d33dfc64ad940d6058afb7cf062d8e89baabbba5d55f285d1724322006c15476005cb0a04c163e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/pt-PT/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/pt-PT/firefox-60.0b8.tar.bz2";
locale = "pt-PT";
arch = "linux-i686";
- sha512 = "b39a4bf8465e4690b06c1372ca2a3e6355e00e466865a4a764cf6fa75965c94b6b887259c3020c8423cfc0b1eb7c5cda8aa3574e5eead4d9363f6f048cfc1e19";
+ sha512 = "3ae95a9255c6dccc8551d59b5428345a672b9c39fc08dd6e5b509ddb64ae0af197e6f1823e1bee08a2393c54c17077529a474757aa0a4bb70de3d868ca934023";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/rm/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/rm/firefox-60.0b8.tar.bz2";
locale = "rm";
arch = "linux-i686";
- sha512 = "0b943f1da58ff29cd95dd18db809d660ef452dc18ca047d1d7cfcac388cae09a123d52e096676cd0dd3be3bda12fee2df69337064acf7994ba6672664684fc24";
+ sha512 = "41d5e3a61b7d8ede3c040720fd6be629f948a8fb55617a9cc6333c275c00304e990e6a0924d2eb4fc16544d855208cb2bbfa633ff829fdc37385b51492e49416";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ro/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ro/firefox-60.0b8.tar.bz2";
locale = "ro";
arch = "linux-i686";
- sha512 = "d2eea20f4d10198f3cf0969478e19b2ae6b4b359c67afb850d56a9d23c6affd3550848074f72bb79063aee1678a5ac0a0e176f41553dad1eb59eb7f8cf3fa4cf";
+ sha512 = "bc409d8cb772d57ac8729ec61d5fb71b7df32d20ec9836cb1c2870bda85ac8f1d6263f607ab0be0e2818795969bdd4fe41b48c9fac5827b363868505867dcf87";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ru/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ru/firefox-60.0b8.tar.bz2";
locale = "ru";
arch = "linux-i686";
- sha512 = "485df58d959663023689c4bac2866b8b67e935570b04cfa8dedf52d104555a5da18faf0e3567e699d677ed1456daf144d1b3baa943b5b8c8c056c46a6a403299";
+ sha512 = "4c2c6342a08da3991c4b6a436cc638be0f600b34e7fe02d75fbb6c10d297e693d2aee44624e6ef8543164f36b11a466f4f7c7bec709682aeb870e591523d72b8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/si/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/si/firefox-60.0b8.tar.bz2";
locale = "si";
arch = "linux-i686";
- sha512 = "23bfaab1a790092acb452939ca4523a23d70315c163ef85e2b902c5aff8128a237a9458f1cd44a5a40f8f9c3d432ec0f61af92e9bdea5069876026b9868e9651";
+ sha512 = "6708d0ad517b3551302f0b3533b8e365a8c27489b781f375fb469e45b8e9c84df11e0ff4299154ff7e3132e233b5b64f9e41432f61a399ade7ee0409fb1c5654";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/sk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/sk/firefox-60.0b8.tar.bz2";
locale = "sk";
arch = "linux-i686";
- sha512 = "3e2688847c4088a08bf5c1e2b14508edd0206ded8ccb0316fe9fa21851f27628389e0f332906c2293b5122e38baa31701ffce830e763959d330fac43a4d8a2da";
+ sha512 = "cfcb6141b3bc780f2bd27f9226f5b0f82d86ef9f22a15066ce57f8f156727f437b67b3f165c2b450fbf0c0492a2c9d246f2fcef417a511164ca29a4a7fbef6ff";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/sl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/sl/firefox-60.0b8.tar.bz2";
locale = "sl";
arch = "linux-i686";
- sha512 = "370f10422839661f17b762ed88b9b4edec93c324393a9abd0e757ba047c49b246c04dec2872eca4bd23af8578ebbaee07d2ec2d2a11e3c4f12998d2de0f21b97";
+ sha512 = "2df73ada8ee40a4a6f01143c4dcef7fc5b5efd486a20057e86c1036d68018651c2451e02c10ba127a110fcf8bf88f43928ed8b65958b1c7598b81973b79ef9f1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/son/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/son/firefox-60.0b8.tar.bz2";
locale = "son";
arch = "linux-i686";
- sha512 = "4d5903bff1a3aec38246037ce21dd0f14e69e11b9a39befc76b9298e1f3ee4ff1e686d186b9e3d2a80d39619ab6eaf65c9cefe3f3c0efd3064aa092485a2940c";
+ sha512 = "75f0025e6d7f6d63fd4e017ec68dab3de9cda824944d73319580861bc3be599d5ed6e4e81b7b4b4fb8bc8be7d530ccc52dfcfa920ca160682ea20e499a863b20";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/sq/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/sq/firefox-60.0b8.tar.bz2";
locale = "sq";
arch = "linux-i686";
- sha512 = "a4507b52028c4ff4d79734ae8b5e93d79d1c70b89e91fd6aff13df4587be94b35e0c4cce2670d1c709c86bc80bbda14f976095aa8445ba8c59c5fbd5a23955d9";
+ sha512 = "763bb5692bbb818688ce3ec8ea78a9734b4de8ee29ec9ca8516c33e406913907affe211cf7146428b176c230353f0468824bef69c4f5ccff69b75ef7c302a1b1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/sr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/sr/firefox-60.0b8.tar.bz2";
locale = "sr";
arch = "linux-i686";
- sha512 = "b3b633360df42b85a6f2b7ab34ee69c572d0be444ce32e03b76ad799933a1b2fe1afff5de62c9040bb0fbbaec74db47837d0d813f73ce248f82dd6418d171795";
+ sha512 = "eb0eeb897688fc2f2c29ddf31b76e8e67a40e620f7892bcf2379f2d28dd033070fad749d58770709f73610dbfa512331bc090ef5f4a8c561b196485e30dd27da";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/sv-SE/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/sv-SE/firefox-60.0b8.tar.bz2";
locale = "sv-SE";
arch = "linux-i686";
- sha512 = "8ec8b7299eb0e147f5a53b59cb4c3ce3098d94c81e73e3aa4ab60047dd7aa7de2d430598fcf319d8e85b7247d1631172f4bd52a7817d61f7a1cb6e6667993bca";
+ sha512 = "6860fa25a9b2a1933784f0d4bf2cce6066049586a7968fcf3dcf1078f1964027fddd28c4c18842073befdfa34ef5b9a470d6ad06f014d86677e548e1b4b6de98";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ta/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ta/firefox-60.0b8.tar.bz2";
locale = "ta";
arch = "linux-i686";
- sha512 = "0f25570fbc9647ec04f7ec6a9447d0e70757c42355293e8ec5130e2a84f92db7178ac319dd8a871e03c3e0780cee8d33df1b1e99ddce515d20cc1833cec02183";
+ sha512 = "b060723474d8075a3b0dcc32387983a4fd159f7399de7a4dc606a11dadacf2b6b8af059238045fda70597c1530ba6007b7a07e065ce153a5b992965d1889a964";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/te/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/te/firefox-60.0b8.tar.bz2";
locale = "te";
arch = "linux-i686";
- sha512 = "2c7e18368e33296b70a2be416b47b8cf96dfccdfc24286b7a7bf9ea13607b10f05a615a7509d40853613161bb17949a3051b98bc1e92a85d5117250a9c448f53";
+ sha512 = "ddb772b303412b1275dbe563b991038fb5b860a7cafe3c79ca4a85070cfd1eec1394850c6478e3e2c89353c1d90e7d99ada1b2adeb35d5b55c7b190881c1a920";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/th/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/th/firefox-60.0b8.tar.bz2";
locale = "th";
arch = "linux-i686";
- sha512 = "27b1f9768659c884eb612cae804466d7b3d589f5dc21b1edf11fb30354755854cffa337e05cc27edf22c9e393462c7a0a7d47f7fcc2d25a166112aab9b6817da";
+ sha512 = "91e4108240ee7e2573935c5db84ecc3a6d1ffce5f508f6a725e66d7d633c23f48d20797bb664a6e079e0ba6f4ad6a12abbf80a43cd51cfbc925a2b10e0ac0473";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/tr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/tr/firefox-60.0b8.tar.bz2";
locale = "tr";
arch = "linux-i686";
- sha512 = "19afb81413abb2f9cb1d3d6680a5e541ca9104574e019560933c43769839e7c72062e8ad3a60717ff9d198de239cfa8a5a5aea05bb09ae3f3de027798f00cfca";
+ sha512 = "e4ca27faf36e60fd8db2d338d6cd2bc57c27d0c446e7e434279c8c663235b69b16dc2a957ddd0f025ec71650647459152dcc289a72b90f8b94b9e50d69ef2989";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/uk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/uk/firefox-60.0b8.tar.bz2";
locale = "uk";
arch = "linux-i686";
- sha512 = "50139c75f33b56cdaa21c42356e2021a06ad584238635044ead82b614d5f41d5d07c3733d506b35039b6ad06d1f4075d64d34ebe454a8d16a041fdc69d1857cc";
+ sha512 = "bfac00d8b23fe24da516c22e2e200f68ac8057b09fb3d93969622d4c703d2a74e64f86d6a0d942c32eee4cd6fb50f1324035a6d9be9e6f8d98781eba28d582e5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/ur/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/ur/firefox-60.0b8.tar.bz2";
locale = "ur";
arch = "linux-i686";
- sha512 = "0a22c2ee0a64603d70bfcb4b88d3784ca24a832548702861874c46e84ea343af02b0d38920fb08b9c4e97ad7b7316d302804044bf11919ed0466b310798d4bb3";
+ sha512 = "3548acbf07cd5012fb75f739f78d2b4c63f01253a06f094d0433f7b631f8e3ab33f887459afeae7f855193c5c9802ed96f862d41e937f517c6f84edead88a624";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/uz/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/uz/firefox-60.0b8.tar.bz2";
locale = "uz";
arch = "linux-i686";
- sha512 = "00fd8f528becb07d26e1af065797704f2611967e95e01dccaa62862eb21f86f448a0768157257de529c7323541ea3373cd3169e3907a2c7afd8da0fc26b1dd87";
+ sha512 = "ff30ce6eae9d2e78aba595a5a8c3a6579243ec585f705f949402cbf930f7f375b2dbaa36df40e888151831d2a2feefcfd91eb698330df0c8ae67bf469e782ed2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/vi/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/vi/firefox-60.0b8.tar.bz2";
locale = "vi";
arch = "linux-i686";
- sha512 = "3f17f4df5c9237b2d3bb649063b88eea597c5aadf04f376cb903f4da0a0afa9b0a60c46387222091dee3be53993fd7b2ff0153946d4baae1e65288f7564e0fe0";
+ sha512 = "1d052d53ebae70c01c9aff7295d20323403a067275b59e6f66980718654a3858d55271d31fb0812a22a5dbd7cc8a1db8737aab1e696f4fcc99cd9bba42cbc812";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/xh/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/xh/firefox-60.0b8.tar.bz2";
locale = "xh";
arch = "linux-i686";
- sha512 = "828535de7fd12a8066354049383d6ab6cedc2bd442a6b4d4b878e04de6b182dda28d79765f523bdb691914c807f805cad5796273f470f8a55a461adac8776cee";
+ sha512 = "fe0c271d4af2236ce8d2b489eedbeebe185da434d0b4080bae2ecd222bf95b4b3828860c3186cb79434ee60ffd379399b15045c8231ddd56aa5c210b8c52c856";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/zh-CN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/zh-CN/firefox-60.0b8.tar.bz2";
locale = "zh-CN";
arch = "linux-i686";
- sha512 = "5f810768fd9a138634763119eb1000f4a68e9cf0202afd3ef0511efc23864f34f3c168a81cd8b22333f16c7a613cd0c0125c49c14320a4755c9bf156f26a593c";
+ sha512 = "4ef2464fd35bb71ebe6d86d0e213e9e5d33a756ba139d38ccf903ae852dc025e5bc34727cf4a8c3a8a851634c975044b9c9f91ce64adec8cace79ae1d3e67093";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b7/linux-i686/zh-TW/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/60.0b8/linux-i686/zh-TW/firefox-60.0b8.tar.bz2";
locale = "zh-TW";
arch = "linux-i686";
- sha512 = "ccfd807a6033d00e2c9781b40d14ebb075c66f333338e4f167992923ffe564d2939a459515a36435e1c882c1dfe9c523ed225b1672756bd83d5b4db183a7c985";
+ sha512 = "da7d14a85785ec5ff6fc01bf6c18b7468aee74d5cae30f11515588ad403a3cd571890843f4a11beab08577eaf78ae3af6bfd757cdfa628c36aa95feaea6e5a5e";
}
];
}
diff --git a/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix
index 257b871a845..bf7e7cfe9d3 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix
@@ -1,985 +1,985 @@
{
- version = "60.0b7";
+ version = "60.0b8";
sources = [
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ach/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ach/firefox-60.0b8.tar.bz2";
locale = "ach";
arch = "linux-x86_64";
- sha512 = "b296f17578b97bcb14c5d3c24dd0587318ad49d6ab4d1c9f1632e6ac16cd217e069ca4dfe26c5da0b5ba599f1ec300c9e47dad3a12fbc36b13300c18b657bc5f";
+ sha512 = "3cfc027c422936911f669825d03be090788fb94a33e0e67b2b7d58aed52b719eab4ff1a7e19ac368543a4b662766a41062971b9a5fb5588b76029fd8a78dcb1b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/af/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/af/firefox-60.0b8.tar.bz2";
locale = "af";
arch = "linux-x86_64";
- sha512 = "e00cb5e5fd8360604b1ce5bfa5900bf4872d3aa3efad108bd5f17997e6ce6f1cef2925d3f90544cc003a029c155697c9a3da68a6b330b5ca23f3b8a20143b19e";
+ sha512 = "a8d96e9d9529b4c068371cda82219bb334d54e069b3e63caa6de4054cf917eea2aec9e8767d64999ce72323ced179477e07791ec8bb23d8231fe268f92c72042";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/an/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/an/firefox-60.0b8.tar.bz2";
locale = "an";
arch = "linux-x86_64";
- sha512 = "dcc97c738e8a24214abcb034b061ce92ae084252125d7a8230bf93fd79f37180358fddbc97fb724935752954b14258f6f8844ac05ac3d5a5e0f998e852ea9b9d";
+ sha512 = "18b5d0188d6ddd22c2de16c02a3b3f8eeffc25cee1c1afcb2bc9f80c722bca7c15f9561c9215e65a5390b45989c235f5720cfdf01005d7ef7e1ab1119a7ee294";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ar/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ar/firefox-60.0b8.tar.bz2";
locale = "ar";
arch = "linux-x86_64";
- sha512 = "48f5a1775d115458515e8f6338d4f74e4134de9b114ac3a7a3cad688f121c3611524574d480cc8bc9f9d98ec991ca159ffb0c150fba65ad6ccbdf343495e07c6";
+ sha512 = "8f8c83b0f4f0031dad8d3fef2db67ed7ee19e794a7c20525dd91f5024cbc1b7d1b0c9c847173b2aa187050b8bbf68f537b7ef91ad7bdf557759a3ecb4ae7a98f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/as/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/as/firefox-60.0b8.tar.bz2";
locale = "as";
arch = "linux-x86_64";
- sha512 = "b97490a5bd434bd4fdaf3d2922b0d2c603916e545d094af08a47ee45c6cdb53f0eb248bb570d5a2bf1a532e8583e63f8d54535cdae6111c8b114eaaac247d723";
+ sha512 = "866bc322de99f428e09ce5cafa26dadf77117ead452a527fcaa536da749e9eeda0a82f4d1c5e1aceb202fe931a79fc99d2512acc643a88638c5f37c48e19454f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ast/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ast/firefox-60.0b8.tar.bz2";
locale = "ast";
arch = "linux-x86_64";
- sha512 = "0939bf8224a804962b6fb509ea9af63dbd5044bf585b43def172870b99bc8fb9e3bfa7a218142a80c7bab67ae9fecb7d274630c35cbf938f294d3db53fd3ad31";
+ sha512 = "e91d908997d5924be2f5f7e7afd30a1e5d16d2227ea066a3136a12976fca7fcc89989160a3249ba47145518b53c4285cc7a9d39440cf8953c1729179efc1c690";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/az/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/az/firefox-60.0b8.tar.bz2";
locale = "az";
arch = "linux-x86_64";
- sha512 = "89a171b9be48f61b7c821e675a00b51e8eb6a259c69ab9f3051603c6e3fecec03c42de915f01d07c0c81803689a61ab9788ae4f6f14877076fa7a2dfe187a10e";
+ sha512 = "2dbb8d8df8177b4f4f7c69d321817b3ffb4f4430fd8e8250c2cc3678d758c01d9568873270b7aef2368145b6f5ffb0e358ed6c74864c9b883b6c04e11709fff5";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/be/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/be/firefox-60.0b8.tar.bz2";
locale = "be";
arch = "linux-x86_64";
- sha512 = "fc6026947802e40494a4f05291be61c780cc70b0a572451b7fd11d45589718a40df2c89767ffb9aa1db63dcdb2ce660261222d85efd067262e6eaff6e6b33dec";
+ sha512 = "6728628f6b71a6d495b49dd32472a64ddb3c41e2d9e2923cd033a37f19d1149ba5d3594598209ff5b59f0aaf6b0c2fcfd4313fcf34c9ddf3d5b6bda034dcb6c8";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/bg/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/bg/firefox-60.0b8.tar.bz2";
locale = "bg";
arch = "linux-x86_64";
- sha512 = "8b5e359aaaa20a9f62b897543d31c569eb880483eadead008ead3038ae44fe01cc2dcfbf0d856970bae5553176d79b5408867b8a4d652c2da12bb4bbd61db29d";
+ sha512 = "1b71d585449f3da51da9c9934c9f5bf15b618bfd6a80e5054137c15c16b245eddcd50458cff69fb70ba2ac050b7fb6f316825bbb49e2ed640d63055a4b80f145";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/bn-BD/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/bn-BD/firefox-60.0b8.tar.bz2";
locale = "bn-BD";
arch = "linux-x86_64";
- sha512 = "514297f576bb475425a41a47cf2f42792dd8cb3ddce218c9d52ef421281a34cc14a04e9621a31573a0e5b19f90246c0309b8a4b68d70b835868bf8c1dc80bea3";
+ sha512 = "a84a384debb371c3cd7b4c4a30cd66f69cccd658c089c10339c0fc7c0b0badbe8600f18451bec4352cde253ba7c4cc9566def047d7df9551214dfe88d0965ef0";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/bn-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/bn-IN/firefox-60.0b8.tar.bz2";
locale = "bn-IN";
arch = "linux-x86_64";
- sha512 = "8067067e8d5a869a043359dabf095de32a874291b7c70ad332e62deb7ff18e85f7c60d58a880ed466a26424ef01d16858fc0542516661a39e6303133eb3b3d6a";
+ sha512 = "b2f2c879b067d752c69a841c40b319db0d36a2805d441ee832246da199a0099cd359c0e925996c152d67e7d5f733ddcc776a393d86090c455f4c5cdfe79752da";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/br/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/br/firefox-60.0b8.tar.bz2";
locale = "br";
arch = "linux-x86_64";
- sha512 = "8e2264934d7499c55b465befbaa2b00607d4e6ae2a63aa034c5470a1086ae09db747aba9996452499e567d7698aebe3294e86e5649507d4b2ab589997e12e1ea";
+ sha512 = "db7d9c6e991b3be123f80e62f5b1f9107ae537f3a298d65f910c71397183129a4527e324f75273605a5b945516ac5d2bcde05a3fa3de9748fb880bf0582d4e74";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/bs/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/bs/firefox-60.0b8.tar.bz2";
locale = "bs";
arch = "linux-x86_64";
- sha512 = "df10773c792da6f2ad8adacd032ff516820532dfefc77f1f5bbd7c92d355f7ae2694b63153fc8b06ea6bb0966025afb1d834d20da14dee7e55309927253105d0";
+ sha512 = "df4dbb35c37726af2d5fa1dbcabd8d926f171896b5dda453a07989cede18f58705617e67f9b0702623ee4cbfe570cb81fd5cd9b93a050d2b75e28843fa5a81ae";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ca/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ca/firefox-60.0b8.tar.bz2";
locale = "ca";
arch = "linux-x86_64";
- sha512 = "d0865076a81e293b7c4ca0ed29903dd0b6bc93d516fda6330afbd06995359353692385c0ce43399a07c1c8027c164277c6941e80c7f1b0b793b346ed9ff1860d";
+ sha512 = "2386672d892863c4d1ad4a063270125703aeeb2f2afa8bc09cd6d813088c9c80f5837096207c8a662d28025f9c457903f036f79aca3fc3b7ba97660ae861f1b9";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/cak/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/cak/firefox-60.0b8.tar.bz2";
locale = "cak";
arch = "linux-x86_64";
- sha512 = "63e5e19c17df4589640b4c11cdce7d19991336da61f7ad484600ded979974995d8eb22fc97b759bd5c8c1d251ba7fe6b222f4faec7f5eae564466ee5003a30c2";
+ sha512 = "6f6d1604cd1060a5efa633cb09ef8525369245ef753fa7894f17299d0df2b3bd62c7d2ac8cacb93cf93961dbbf9b240a43d47a0c73cbcc7ea09a2cea2b86755a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/cs/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/cs/firefox-60.0b8.tar.bz2";
locale = "cs";
arch = "linux-x86_64";
- sha512 = "a0206ac251b033cfef6a669729f5d46ed4c3b80fd3f4bb979ff304d1c479a713dd19f2b1217695a1a61540c9e4af5c9ef96a20eabe97c13617674cbce587e9fc";
+ sha512 = "5b8dd67086cfa08fb76b066e2c10be109e0a4eddeb5e4579aa9366dff50642f5e56f6aec37f9aa21299fab0ae7005ae0e6ab4db05e079870e2f4620a4d96c54b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/cy/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/cy/firefox-60.0b8.tar.bz2";
locale = "cy";
arch = "linux-x86_64";
- sha512 = "88c53b3220f68aa626a5e08c00fec4f99174e2dc7cc40aad30f4e56d7fd555dab0ed564ae4f831f9fe0ad844e0a0c5019dd8afeadd8a7203b460cba15ccd0a0c";
+ sha512 = "31347a1cb6fa703ccbf444830fa88f8535a2717da85fee09f6a544ee8aba1aaea093f4ab1368f0dc4fd7b0dcc3570bbd60bf8855de06a8725d2ee1b345242bad";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/da/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/da/firefox-60.0b8.tar.bz2";
locale = "da";
arch = "linux-x86_64";
- sha512 = "f67f2af138a426b005662a99ad5991a3ddbc2b1629561e542c49b9bc1c669bae64e0f7f2ccb91b229442ac8e24a4ddcf395c986cd63922791007cb8e50da3f4d";
+ sha512 = "20785e095d45c22ebab25f4a2fc224aa6e4a4b7c86db1e94a304c41598cba74ce1d1200effd78bd185e5bc90a11bb66f223e28c0cc65d6663229bb724ad1c791";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/de/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/de/firefox-60.0b8.tar.bz2";
locale = "de";
arch = "linux-x86_64";
- sha512 = "2a13c058eb565a993c07031d586eb8131ea5ab6eb2963ecbcfd3bac7ba1a73f4cf6b03f7b6d8bdf7895630da9ea59e1dad185695293eceb3a36ef1f9a6dca8f0";
+ sha512 = "e070625687172f84d1d5d82ec2ef385291a60c2bf011a4a075892413ded629ac16b7688d2ccc698ace07cde309e782a1b7b16707bc42d2b47ef9394a0deb6872";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/dsb/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/dsb/firefox-60.0b8.tar.bz2";
locale = "dsb";
arch = "linux-x86_64";
- sha512 = "129857f8609e7bc2aab8bc6ef4ff3fc2bdce9c9ddb5c5ae2c9db811980e04773964d4b6cb28276435995f887d0ab4affb574006a3d924dec893fcb379125cbee";
+ sha512 = "38df16c7aa84fe2cfbff1e19e702b2c1ea4e2c5f1523cd3094144685fa1d5d561e00270881d0a113b14e926f540b25ceeb1562ecf4876cc35cd93fb794de448c";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/el/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/el/firefox-60.0b8.tar.bz2";
locale = "el";
arch = "linux-x86_64";
- sha512 = "637e6ae40a3ebf9e07db45df4c8719c34f3f924fb65973013c55fbad8c88057911034085cd83bbdbfaa7c5fe553245b3fd14eeed66ebe131b7c640f9503f9036";
+ sha512 = "e9846b81293eef5d593eb5175d9d73b7a42de7316c23251d94015da0554ec15981932fcbade6a5fcd726f6a89c6db461564f7ab9351342b9c4d8d915eb768219";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/en-GB/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/en-GB/firefox-60.0b8.tar.bz2";
locale = "en-GB";
arch = "linux-x86_64";
- sha512 = "b874e873cfba69bf8f5c9f6deb02b5d2c958ecfba186b3f888a29095620f36c51993dcbe6f860b190405cb5924cc8c46a687ff61c746e3558568e4f77a0e80be";
+ sha512 = "53cc5276c35d94f263cdb4ee4a92dbbd356eeff382c2a69dba006f6b5a3ce022c528b4e6102374b97c618e70ef7ad692b1799f6ee3987b26378b742c18145cac";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/en-US/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/en-US/firefox-60.0b8.tar.bz2";
locale = "en-US";
arch = "linux-x86_64";
- sha512 = "2735d0b00e9cd24b96816deda48be1dee3499a3aaf2638f9e2d69bd741c50d4559c29279acc6b535183956cd383d96f3fc1d97af42734dc662896db6f39b4d3c";
+ sha512 = "2b0e15a85f5d9a7fe6e8ac198c86d3746d880f96ec13f8e78d69d4618d86e73f76e64bc8dca214a73f2ed95a12ba674f57c697e54f0b869760129176dfae14fa";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/en-ZA/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/en-ZA/firefox-60.0b8.tar.bz2";
locale = "en-ZA";
arch = "linux-x86_64";
- sha512 = "d202d77f12eb2d525ff0fa692c3f4c2cee721ffed8cd76edecb5e05b91a714d50aefdfccff9c2c00886f937ca701d5832ef757700fdcc33ecabecf7cfee9989d";
+ sha512 = "c751b4ec0567c5fdcf3b8660ab7bf100366b9c819f78c957c79f217a0e7658d1a7c4bd141baced6e7ba36596a8c07c89b825ade20becf380249d90e0517e1096";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/eo/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/eo/firefox-60.0b8.tar.bz2";
locale = "eo";
arch = "linux-x86_64";
- sha512 = "5dbf297fb4fa3deb06e40e9babe4113ec745a0d75b189dfce1426428cfd0601822f99bf14c1b3179fbf1781d21f005ce35eb48bdef75354754e3d19182f89705";
+ sha512 = "d556386436ad4c226f0986500de244a2efc5cf57ac8d792f328616deabb5884cbd3127d0530add7f7a9dc5c2ac61512456abecd6b1cb8c84c74b2d2bf18d9113";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/es-AR/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/es-AR/firefox-60.0b8.tar.bz2";
locale = "es-AR";
arch = "linux-x86_64";
- sha512 = "baea9cce74688548cece12939d21cda6c144041af233692cff73f7c65b1a7ea8e8da2567e7708792d5fbcaffb60942f6a7e0168634d1e99272540bcbebd94e7f";
+ sha512 = "1fdfea27dd45fbec3727804c49c8db28e624e8240a8589d28621b4f03ca12d184395632db2f629032eebbcd6f0d0f514eb3944d60c2b54bef3c187e06b9add92";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/es-CL/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/es-CL/firefox-60.0b8.tar.bz2";
locale = "es-CL";
arch = "linux-x86_64";
- sha512 = "9938be04ced6d938a8775484ac4a2a6bb26d3983669a8d655f020d13002281ad10fb78aeff12fa83cd0aaec76111c7db19556a72c98c6be8cd0ef1f27e33610a";
+ sha512 = "fc171dc5fad703344d0ec1a9d1800650d0469b1d4f10533e102031c776aaf14d5df7b9375a73583112b9bbd1d1e7df267873da0cb3e7937f5473b2d4652f19d5";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/es-ES/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/es-ES/firefox-60.0b8.tar.bz2";
locale = "es-ES";
arch = "linux-x86_64";
- sha512 = "abb228a45b18cfde9006f0a8bce48d16df4a2b5bf378e5f22c25accee1e5e50ce5a27ad9700651f6e06dba366449c72142c5f12d8147f3ed1daaadc9ad873291";
+ sha512 = "7d8f9c31417bb03d02278c5567eff23d07cc2d9de93a5874938db0108c8c0eca0c0e3f924eb8d9887b14d7c058bf4b4fbe1aee1925f0a150212e76e11a0b587c";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/es-MX/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/es-MX/firefox-60.0b8.tar.bz2";
locale = "es-MX";
arch = "linux-x86_64";
- sha512 = "73078fdd72f4a4e1049d3e586315671d769395beac8d2c942c145075f64c6c559670f9256086a61d1eb0e7b017e6ccc96697837341878d5284fd36ed83d34b90";
+ sha512 = "95b43192a707943cda58d98fba2bbb96b745d6997932113c1807f12de7fe3fe165c9dff7c000dafdf21192b24eaa42c874f068e3cef6a2e7c6cabb8f0e1fcc32";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/et/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/et/firefox-60.0b8.tar.bz2";
locale = "et";
arch = "linux-x86_64";
- sha512 = "1292ee821d166f3cd854a3eddda9af6f1dc51e0c6a96be3ddab253d73993081172890ec0009f5c17254a810447a54e0977848f91c358edf0fab409c4c14a3518";
+ sha512 = "3e379c3389fe3a1a97dd3d6ad39abca49273e6e36bfcc9b5b6b2eda948529bf6e744fb9550b89edce2d9ea9145a2c7a0a5d9466f2975d4c2193696871b32ec58";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/eu/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/eu/firefox-60.0b8.tar.bz2";
locale = "eu";
arch = "linux-x86_64";
- sha512 = "c086de065985c639c2536cd1d68d5fcca2c45f8bdebe320d59a38090d4207ca7fe19ddfe4c8aa3fc9237fd7338b5d6e1c9a78f3ab4776a080a1079287c46dc5f";
+ sha512 = "a1b6197535661193818b0ece5d28112073fa03824aa4bf4de999b554acf751da7117b073c875c7b2265b05af0bbbba7307b59c0f4ea02258e7ed438bc6e0bfaa";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/fa/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/fa/firefox-60.0b8.tar.bz2";
locale = "fa";
arch = "linux-x86_64";
- sha512 = "79bd164b30b4fc7cb71a9dd79c8c55c8cb5a4a3ecf3e1e50760726dd740a22cf467f08827bb5bf11e5268d13db52b47a3d21950aed5dd60c9cb6bdd6aad0abf7";
+ sha512 = "28927abe6b2e33868c37473378b5915ca325ab26e87b6c83566cf9a6974eef28a1ff1a800c164d2d79d613ab1482c0e563597aba20de2179b8645e8dfc5b40d0";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ff/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ff/firefox-60.0b8.tar.bz2";
locale = "ff";
arch = "linux-x86_64";
- sha512 = "53a4b5266a68b08bf94ee4911cfbf61ff942b91ef1d908be280bc3dd425849fbe3b1cd406aadbf0f2bcbe7e2ba704ade48afee690663f305912676f6830e3fbc";
+ sha512 = "07e3f102f8324d3b613c972651b80f83575129a3d23fddea3d02d3880bb66d3697c1d7c9cb47fb2b8dfb24acb4bf9029080675a5295d3ea1d2f7b31114ce4d13";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/fi/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/fi/firefox-60.0b8.tar.bz2";
locale = "fi";
arch = "linux-x86_64";
- sha512 = "008b5f8f65192c4839d0a6b09137b44bec50cced603c2280a93dc76a16a1b4893fb5d9aaff50e97eafd843a2cac632e80150aebd05074810a23f767605c53ee7";
+ sha512 = "90bfbe9cd103b981413d57f74d416098ee1bb284e871bc40676fd8f8240a7fea891b4d68a079c1d23d2c62e6f84dbeddc884b4ba31e446dc59fcc4d1b3422469";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/fr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/fr/firefox-60.0b8.tar.bz2";
locale = "fr";
arch = "linux-x86_64";
- sha512 = "f593320a45d1a8b1312cfba188f527dc5847be1bd91df0e9175bc29aa83d4435f3f508e2b80566fea86019b1157c7fdc24a4e639727eddcd9e121d34973190a3";
+ sha512 = "a71571118b26ffb823da9723a6c84a2f10c04c4f52b0a5aa9dc6832ca008071bca761adc71b67959fad643711f1ff859b7e1093b5df8a6f26fb03b01de8c234c";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/fy-NL/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/fy-NL/firefox-60.0b8.tar.bz2";
locale = "fy-NL";
arch = "linux-x86_64";
- sha512 = "400e28842ce0aef5f813e74c3450681a100a26afd5aa7d9f53cdcb23463e75513c63c3ecc60a3a134e43d194234088f6403ebb74616eac2539efbaa02931d671";
+ sha512 = "371d1292c4b9fb561bddfbda150eafe227f9c0c6525f5b9bc4ecb178c2768c2e837ae6f213cbf0dd4f64e16d51e56fbb0775d4df1b019587d5bb51428f21fe22";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ga-IE/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ga-IE/firefox-60.0b8.tar.bz2";
locale = "ga-IE";
arch = "linux-x86_64";
- sha512 = "89da8aa715cea7e1399ab315f8805744f6ed45cfc5afcda99bb3fcaa46f7c0f35c9d2d06bc708d9461616bebbe926561d292346555a8c2470cb6b2ff88589c3e";
+ sha512 = "2477da8f55c599acfd8091a420885f795841f55bb7a0b399c2dfa51db860d9ef03626cf62c6ed99c7c89d7549d1d0b5053c44580894d0c896169fc23dd2568e0";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/gd/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/gd/firefox-60.0b8.tar.bz2";
locale = "gd";
arch = "linux-x86_64";
- sha512 = "e9ef581defc3e8e161f6a8601f2ffe8fefb6fed876dba88b13c54b30a719b07c406db0d40c9b80f99735943985ebcec7802fe450f8ba5c32ee956dc5fcd46963";
+ sha512 = "b9849c5d545c40bdcb7bae8d5e3447894a7637d59b1b413f7a42f9fbfe3509a45afb03b20bbee3ce1a625a08404f903a1b79bde183f51b043326d560794e501b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/gl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/gl/firefox-60.0b8.tar.bz2";
locale = "gl";
arch = "linux-x86_64";
- sha512 = "c224bc20c1e8daa860189e710060d57ae7da1b7a2db1db5bfb096014af3a0d24d66ff9ca0c0eb226fcab1cf2ed512329a98b27b8d9647e2a2a681ec57acd9025";
+ sha512 = "f5c014f18422c09f96d63efbd1dd3cd5e880ee5f4c1cb6a2a0eaf939a755a952ace065237b74ed8c4e70508062f69ec545d24aa55b21416cbdc449e840e8bdb9";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/gn/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/gn/firefox-60.0b8.tar.bz2";
locale = "gn";
arch = "linux-x86_64";
- sha512 = "1d09ad8de34eab1483405793334bbda5b7c2be3a539e020d34f262f39515404efac8686e1583c04363e13f3a6abf725d3973f8603686293572673d79bd943fe2";
+ sha512 = "e35e1d007c0f1371fa4e95ea6498a87949f9f0fde93dbc960f44ad14fb8f2d4587a08fd456bd6898ba864153344a2ac8093f45264d7305a5db88fc920a8e79db";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/gu-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/gu-IN/firefox-60.0b8.tar.bz2";
locale = "gu-IN";
arch = "linux-x86_64";
- sha512 = "d143c07b03d36c62d816064f417da9d0910ace7b0ca295c571931e5e827f77ccda6a7fe48a73c048971630742dae38c7bbcdd0f076c26ab39d649a73b237b356";
+ sha512 = "cc8740fd82ca6cb4aff2a5bb2bcc02d6d3457cf7f10c619b087c94d278f79a80da26a7f5f5a995fd77915c95789e1d263feec9bf1b52a9e511835565861e0bdd";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/he/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/he/firefox-60.0b8.tar.bz2";
locale = "he";
arch = "linux-x86_64";
- sha512 = "cc05b4a6921d505e027a7f071505d1047d7a5deb464d76b07fcee192a38942716fb700574a41eac7f4ab77e94270f61cee78242be59ec649e73e93721341cbd8";
+ sha512 = "7547c1099276b4683012cf286482f37af3d8e3c0afa6f95aff2e2030b7ef81c5accb4116ea178134c916f9ff09cf9aebee30c0a698c8f88cdac6f91af64ee66c";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/hi-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/hi-IN/firefox-60.0b8.tar.bz2";
locale = "hi-IN";
arch = "linux-x86_64";
- sha512 = "70e3c2f35f8fd3415e28e84a12f7cd657c7850ce8a6d9deb33fcfca90798dfe98271ce18d3833ca5c5825747a73cc76138cc1fd372acdd0b85f155a50c1f4633";
+ sha512 = "ff3db0fa7c76764d836b94b7a8e7028a2c3f39c6a3340e90cd1396564bcbf9540b9adb9b235206146c3fde2b8845968817e5eb34095aa5d27cf5ce7cff885504";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/hr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/hr/firefox-60.0b8.tar.bz2";
locale = "hr";
arch = "linux-x86_64";
- sha512 = "b85bd926fd24ad9f07f35bd831cc6cbf0a228a89150b0387ed4ebe8e3f6052cc47f85f5627fb33b0b8f58ecd90d6987412e183f0f4be9925e30cb8fb62116ae7";
+ sha512 = "c13fde2cc3d39d87203239e442feeeb9caa7a0fa03fa1b98f7c49eddf79ed60b88fcd4ceaf5a3d70fd48b64270ee770bc03bf0bc4fbda15fa72090d0e0b3ce03";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/hsb/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/hsb/firefox-60.0b8.tar.bz2";
locale = "hsb";
arch = "linux-x86_64";
- sha512 = "a3c142310fcf970cd4bc85be065794b25d85c7356aee241f14214feb17a5585094b730931209c1533eb5e2d8890bb0ac3f252e70942397530dc001b1d3eb43c7";
+ sha512 = "e688ecdbcbdab4a821ca17aaae031874c454b8e78cda40ab8d2ac8258a71730c656c6ea5e8542fe3bba975f8203c63bbc82a45f47a4af4da606a446a5a9c0d75";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/hu/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/hu/firefox-60.0b8.tar.bz2";
locale = "hu";
arch = "linux-x86_64";
- sha512 = "36d14585e06659b879cbd319770042d3652d2e7cc2db05da64358c7c1cd17fc123764c0dc9e1da9d242c5e8deccc840d80738207b255f39c94a209572dbf437b";
+ sha512 = "72d6977d4709f04b282301b6f1b803e924f1b1f1b6488b871206cb323457c9cfc01d0a683dc24b3cb16b26d160271d4f234e5f8308f01cb7c8183059e3036415";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/hy-AM/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/hy-AM/firefox-60.0b8.tar.bz2";
locale = "hy-AM";
arch = "linux-x86_64";
- sha512 = "cf0c9b369e3557f130fa83e2e6c603945d9ef257f1060e6910a5ba1431c9d41839ea1d9ab51388ac91c646252386ae7eff5f6612748b00a25489f399ef447bcd";
+ sha512 = "380bb6c5e7dba01547fc64e10e20234e571ea1aab0dff8ef8fba971a25038ea99694e235269321b38b346872314d64bc31529aae8623cd21c934dfdf82f2f87f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ia/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ia/firefox-60.0b8.tar.bz2";
locale = "ia";
arch = "linux-x86_64";
- sha512 = "91d7ef34465a184646b51750953e114ba326413117678187b4c3770859323715edae2ce1ea5a755b9610197ceb65ce3ce6a1f9077e45c3db1b89a3ad11d18367";
+ sha512 = "12cbea767896b7e20b0c717666b87d7de9f6f818c4f35920d5a0eaf847fc6fd29911d1e8f3cd8bced453e38493359f4e3e644d9c1d92e91285caf9e9b8e75cdd";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/id/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/id/firefox-60.0b8.tar.bz2";
locale = "id";
arch = "linux-x86_64";
- sha512 = "01dbafdbd7c48ba8f3da536e5d25fd9c7656125cb508d9c52d413625a77fb0fbff2baabbfc2d8a636a29a35e767d9f055dad90d3adf4f6224961d1de7866eabb";
+ sha512 = "3be7d341d036d4899dccaa6a92fdf117a46a441b4eb481b65f8a94e32b15f5d98662a4bd5ac0c45985142027af811cfa0bed9ea1d7d1ec45439df5b9b6210be2";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/is/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/is/firefox-60.0b8.tar.bz2";
locale = "is";
arch = "linux-x86_64";
- sha512 = "09f6e0effe61d0b24ae3e02937a1408c08a8c9601451c632e61856277ac72a3c39d7153b768eb7a7cf3af744c919f3dad969d11f6b84b584b2817a2a518e9db0";
+ sha512 = "67f9ae05aef3eb743559401bfe1abe662f748ac11f788fe1407b9d77f6fc2974e8e4ca9e107d2b9500e01283f07a06d35dcd7a1a7223c92e09aa38022e077b88";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/it/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/it/firefox-60.0b8.tar.bz2";
locale = "it";
arch = "linux-x86_64";
- sha512 = "f536df8eb68868ec0174531804bf91d552fbb41afb74bf52ea7c559431a194163a628da65d5218238ea91dc19f65f0bd44afb8f1d95aeb0d072120d6fc7f1f13";
+ sha512 = "e529d48adce27340bafa07dfd7da2b6eef3559ba2caf2be59fc953028b48c3ead9974632ceaa1ae1a3c6983d2bd7a0b3beb094e8aa0cb5bb28a9e4166a8c50b4";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ja/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ja/firefox-60.0b8.tar.bz2";
locale = "ja";
arch = "linux-x86_64";
- sha512 = "17150e6f79cd485477a00bed5f720c82683a45bcb94e6269a84068adccf06f17c4610e0e16d0b208e1ca864349fff0f44ae3f6c287a20249631469f783e44d1e";
+ sha512 = "35fbee4fe54f18627a647a610b178a5387428375ce743c8c91caf24ebcd37062183dd8d64b090925343e77530a0dd3a384ed5e4b2f8bccf9eba2815213721a46";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ka/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ka/firefox-60.0b8.tar.bz2";
locale = "ka";
arch = "linux-x86_64";
- sha512 = "582dabb84d58aaf61ed3d204cf5973d320b447c2eaa41d246f523a10061179fa73d8327bdd0c4ab8def7106677211caf424476674370731dabcc641d88f8b735";
+ sha512 = "5298adaa040804ae5311da123475f746beb2890406c47d0a15d530ad1754f78fd695c0355b3709e7416537dc1965ea8d714feb12865d183788f0962104a169e7";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/kab/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/kab/firefox-60.0b8.tar.bz2";
locale = "kab";
arch = "linux-x86_64";
- sha512 = "dfa017fb5ab7140cf27d2c0cb305d4f5b93d8220995d50f401af25eec6235dd482f64083bee4dc72264094a9231f866ec99cc8f0de271dbdfbf9ebbaefd7af9b";
+ sha512 = "0729b8a96b8cb56b2e57fe29355792b70ba253aa1bcc34e13aa6f8c1e63358c9b315c2193c3f72ed40f47544c14f2f05768a293270bd07a2b735af9bb000ab5e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/kk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/kk/firefox-60.0b8.tar.bz2";
locale = "kk";
arch = "linux-x86_64";
- sha512 = "3c5ee916d8f01ecdc0132aaaf6506df41a603eb4e373fe9c8a8fc21f3015dc1643e3153984b8b86f6cb230ac3dd55296913684c03c0b0e6a11315291458b5c60";
+ sha512 = "4df76c0efd75cb75da4756add7a95dfba2a8a2834c90639687e4a963072e30d22dfeb4e9f5cfd4ea471bf97926844e561a2043423957baa1d60a64b9f1d152ec";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/km/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/km/firefox-60.0b8.tar.bz2";
locale = "km";
arch = "linux-x86_64";
- sha512 = "19f0fa885b869ef5fedacd46a24621e9132d23d042220e19a10ac8d5d2170a7eb9a39b4c13c0448528247da9c61bb580dae05a1cb80e7cc4775b101a1fe307a9";
+ sha512 = "7d44c52fd2b384a6212e3a5ad11ab1523d0689a61562b05fcbfd7578e47fa39368bc1fd605bc6f4a27a382f4a62bb5301a103a5cdee7e5f8353596e80edf3723";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/kn/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/kn/firefox-60.0b8.tar.bz2";
locale = "kn";
arch = "linux-x86_64";
- sha512 = "32107b6e62961d30e9b7d17cd96104d6ebc761ff6d9448850222ee2909958cb7ef0fd51ccd883280051926dcb346b32043713cc5f872fc99a22ecfb46f031b2d";
+ sha512 = "953f22af390aeb1f13a10a47003f0f97051e83d3cd0a8f30fc9e3f7e99b82519da6ce0afdfae5f89e88b6bd017af858010aab624e1de8ab39ff9787b9d804dc3";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ko/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ko/firefox-60.0b8.tar.bz2";
locale = "ko";
arch = "linux-x86_64";
- sha512 = "3b798d8f415d35f260566ecefa1808f547bf0dd43330895f0129d9388755b3169da8fed80079da1c090f4707acccddaff05dfd2d37a4be562d07276ec2672318";
+ sha512 = "4cde6ff0a032c6c222e2f36e33398d6acf72b0e944d9d9b6c75c34893082fe3847ac87e837848b3866e55819fed1f41c0a1807ea2c2dcd264f793df9548a5ec0";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/lij/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/lij/firefox-60.0b8.tar.bz2";
locale = "lij";
arch = "linux-x86_64";
- sha512 = "6fa1f9e9b82ce40231e88b8439f4dbfb15ab40e2583fde9c1129fc8a668d13e3338bdaf37deab90e2c87ac0a8452c90eedd11c8adab1356a9d9d5035b644f522";
+ sha512 = "d6ffcad6fdfdaadef0b8225f30d9d0a80e7f918d6b2ff6468f4e460643034286cd561dd63391f79c3b32222d783c09842fe4979c6d94dfce4ebab41fcc6580be";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/lt/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/lt/firefox-60.0b8.tar.bz2";
locale = "lt";
arch = "linux-x86_64";
- sha512 = "d330c66e31ec9fbecdc5fe56d50ad2aa6a6afb49c098a6546a093a777fe415a1429b233cb29405993914836314cef2335b0d5723a1fa67070f294d3d5e1bc467";
+ sha512 = "8814f08d6d26a05e7f003280a0272886a44fcf3b88da93d0088f0d2a9e517c34c264229ad8ccea8efdf15247631e3cd28f82b589afc4d2d3973127e1227c6c67";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/lv/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/lv/firefox-60.0b8.tar.bz2";
locale = "lv";
arch = "linux-x86_64";
- sha512 = "041fd534ca158c3e073a98391d903f2d8a738aa71354b30655a4e96c7490922208d7534f7008d6ddedf91434476346f810441ec56dd76201b81672b51faf08e8";
+ sha512 = "b80fdf0b0ac0f8decc7e4329a23f8ee1005aecc70f7d0d8a000eade3d406221ffff8015beb99c77403f903487ec71870dafa92003aca86f5b0cfdd8ee1f297eb";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/mai/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/mai/firefox-60.0b8.tar.bz2";
locale = "mai";
arch = "linux-x86_64";
- sha512 = "f95b4e9f08e9d89272f50b7841660cfb9db01f3f5971ceae239219c7b01a16f0bb5484f6e7fc5907e194555774d4e57a8664f9fb026c35adfb74dfa0b246a769";
+ sha512 = "63b69aae0a219ad993e557d7125cf91ccbe8a19310a17a09536d5c2a80e7f3292e3aace28342a4b8eb73042ac2ce5d728af5a745416b4b6401d29fae95c7f9ed";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/mk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/mk/firefox-60.0b8.tar.bz2";
locale = "mk";
arch = "linux-x86_64";
- sha512 = "6a093c9c19e2ec27b1c1ebac0626a644789b15963d04cbb8cf6e1ba584913b9d886c73b1d60c1ce90a2524d243ea52460decbee433e67a88c1735643927a04de";
+ sha512 = "18ddb3ff53baf7efd11ccb432d87dcb7a89260c080f29691785bd44999a43e8f9fed99b636b26bd21e557921b82ad9e69d729c498bfcb45077adcfedcc3208fa";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ml/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ml/firefox-60.0b8.tar.bz2";
locale = "ml";
arch = "linux-x86_64";
- sha512 = "934fa8c9a17b61472d324629b397108ed746e7f7586868734e01ea9ac6e23c75cf1237b5f930a11802fb89d3c97b3a52ff44f9b18a796758edf623929f61cbde";
+ sha512 = "2164dc4beed74c24bd3015d9d294ff0361bd5912728fb64854ce5146188414d4e8402d4ba88ac20944e499e24be103853b4820433a99d6aa8e4e48bed5b3abcc";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/mr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/mr/firefox-60.0b8.tar.bz2";
locale = "mr";
arch = "linux-x86_64";
- sha512 = "05531b6333b123cc9f2f677043a4b7e5e7101ccbdec684603ffd9998433f09989bdfabcc65d57378823d0e9631bf44b29aa78938339619c0f34ac883086cd50c";
+ sha512 = "476e3031b7a850cd52f2f20ec712b1fd0f4f55dc74ac10985c5957ab74b303b1eb4cb00ed1303a820ad4a6cea1729d282794e9b8f6b425280a05b413d86f8975";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ms/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ms/firefox-60.0b8.tar.bz2";
locale = "ms";
arch = "linux-x86_64";
- sha512 = "9353da96ca92385ec156606e2f4cc18cf4c04ffc3459f8cef79778bf8a3440d47767d7ec67477f4ef535818e9d4faa19e656289598a50f0b0300df7b81738a32";
+ sha512 = "25d07f7f5013a1bd7de9bf977a1b16d193446e0003000362073d26f982139ff8bf0d17990173e77b40a808f845fd590543b7ef1de5a41d3bacc9491438d4aa36";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/my/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/my/firefox-60.0b8.tar.bz2";
locale = "my";
arch = "linux-x86_64";
- sha512 = "65b0d02e215523d7a859f8ada01fe78f5468bbbaf6b2d4988587383d3c008bd7595887804ba91a284fddbc613ca8dbd07058e9403c7bba808b57f7589886cb23";
+ sha512 = "131dc61a6c8a07c593e304cb5c1c887794a597a3ed98ccee1188081da0002bb2ea29a946b12fce1ac7287c5df74864bd881e9f99c2c485b2fbf7684196489248";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/nb-NO/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/nb-NO/firefox-60.0b8.tar.bz2";
locale = "nb-NO";
arch = "linux-x86_64";
- sha512 = "d31ed2cf15eca0aeca8267257823a3d294a96e1bb64c4e56d7a3a1098a865406c3ea2c741cfcd2f6624f00eb5fd61430eb2d5bb841c9c8c2f1b7ec4dea2178dd";
+ sha512 = "115698e54318f4107c565337c266109925310d79cfd2f1908fd5a6114128ffe827e8e81db630665907a942300664af2ece8cb6888be80f009d6fc2d8d065cdd3";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ne-NP/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ne-NP/firefox-60.0b8.tar.bz2";
locale = "ne-NP";
arch = "linux-x86_64";
- sha512 = "cafce03f660421ec23d76bfc52575c8dc1cb82542d205f3b9c1e9217c636a07e86facdb2c6a43808ad299e45aaa85f0a44a41f9f67ac1bf2feef0c81eb582f64";
+ sha512 = "b89572ed1e0620ec29a762e49394ebaebc98ec964a9d98e8896927eda35155403883e734880ffed51d13405641c569085824ec36356cb2c3e8d57090b5f0301a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/nl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/nl/firefox-60.0b8.tar.bz2";
locale = "nl";
arch = "linux-x86_64";
- sha512 = "49290b484575b2de9fdf06973c14be9640f5ffd8c7e54a2462911234670b3e6ed554e92c5dcfd40ecd7100c50b9427873d9105835877661c8a92a6e181d588c7";
+ sha512 = "4a62b79d27361b324269488d1dceb4405f469d8e9a5f4764cf46a2ca31561d759e3f63ba5c23b21b45a43e07181aabd06f01aa699b04b9d1b75f0ca338e161c1";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/nn-NO/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/nn-NO/firefox-60.0b8.tar.bz2";
locale = "nn-NO";
arch = "linux-x86_64";
- sha512 = "c9b5ee5942fa3064bdcc629ef672253cf87f627024d97158a1b2a4fa8f1e6fee46e0dcf68e163cfd21f63b7867fbeaf27faf9893f182eb8d0c2f37566009700d";
+ sha512 = "d8407d6930a11e73e1338e13f980f7575df5233dccd633625175c21387c5c697c5ad3fca95db99d52b50248b257586145fac8d57ddcab8d4bb7dc97dd7dc6dbb";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/oc/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/oc/firefox-60.0b8.tar.bz2";
locale = "oc";
arch = "linux-x86_64";
- sha512 = "18f4af488f0286414e03b38aa9a03563ab8768e161b874ef8bd8e5b35d9605866bff4a24684180509c0a4bfce168c2379e02d9b3bbc22e25e914fb035fad8ba7";
+ sha512 = "1e963bf3f340dba469ae928d87fae73c112be3d8df0bd5b0667c5d7ba3a140d919b96bee2cb1a40a235bc1b80a174ba8a8615dc4ffcfad156fe87e1da2ab0fed";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/or/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/or/firefox-60.0b8.tar.bz2";
locale = "or";
arch = "linux-x86_64";
- sha512 = "625e9497b9a4546ffc9c28cbe5c63fa8a3cd6412b16e18123de5f4062dab8b37dac381661ad5d9aeb91c6ab65dfb956cae3148fcf087e342bb52df6472c3add3";
+ sha512 = "60c29bd2eb3a4abb984d495ac7e1679a66e951022b975b57ce1f5c23db3f2c43363f22626842d0a2750b7275ddb711f7ff868ddb209d37f3d790460169c5ac29";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/pa-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/pa-IN/firefox-60.0b8.tar.bz2";
locale = "pa-IN";
arch = "linux-x86_64";
- sha512 = "0dc3a1d0cb54b9798ca42906a97982bdde4ab7fd7daec5d424867107c502fe742536b7bcef0ba00d366ea2941358fa2260e32ed491926ab58060a19e0518af88";
+ sha512 = "de2c7b09e0973a6b2c86bda0f5fe2a5e29b4a18fdb53cd73301a135fef2212c0fc792c532dda5131cc9a1ee2b097e9a40d5ff4fa4e07f8b640422f9bd2e14490";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/pl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/pl/firefox-60.0b8.tar.bz2";
locale = "pl";
arch = "linux-x86_64";
- sha512 = "3355f47c8e8d0b2e5c7323baa356d60a47863b808323740a766494e7ae8c149b064b5d34cef38a5202d6e1ae0353fba6cde14365e785996ebf884a0c828634a7";
+ sha512 = "2a999ee49e7152227bcc18fcb0c17047df73b27c6330eba701ce12c4283dcd7643d824310cde1bf7571da403e3d3e9db8c34ec04ece7a3e72aa55a8e21da483a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/pt-BR/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/pt-BR/firefox-60.0b8.tar.bz2";
locale = "pt-BR";
arch = "linux-x86_64";
- sha512 = "86bd1d27ed36ebf84a72bcf5c0ff0dcd800dfcf53c5e34f2f7000dba8894c864b985d85e410e8bdbb35fde8bdbae2198c5f4661d20a84af87bff25fadb46f49d";
+ sha512 = "c62b8aefcd8b5fe59d0e2e643a73b0f6e4c8e6334ba5c223d44e14bead88e81f3622b717afb5af24b7f3d668852572942d555e5a38a577c242534d4328269b68";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/pt-PT/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/pt-PT/firefox-60.0b8.tar.bz2";
locale = "pt-PT";
arch = "linux-x86_64";
- sha512 = "b06fdfd947ea58cb8ccfc137cb488c1cbe3c643d494acfdb6c94419f1dfad03866ef3d1d14ef7edb45aaf00e73405dbd1bc594ae195ea91dc480a4015226e1c1";
+ sha512 = "c0738d209d9686dbd28e8219fbb40d497ee418450210613749355c57a64578b5591a78f38b78bd3dc2d838e65738ae91d6c69a13d9eeff5e2721be46e7ebd66f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/rm/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/rm/firefox-60.0b8.tar.bz2";
locale = "rm";
arch = "linux-x86_64";
- sha512 = "6a668a793b6bba79c476f58c05d1354b7598ac424e119d514e04e0da26cc4610f162a6af26e169013670ae97acc4c67f799daa06615ec3461e41d10a82202657";
+ sha512 = "925db7b71d25a8e1c5485c92a4c0ba420d541a5c8c919bfd55a7a40357e83ee9728488bfc38eab789ff205513110f6c8f5894ec02d9fc5f47f9ae829a34a71d9";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ro/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ro/firefox-60.0b8.tar.bz2";
locale = "ro";
arch = "linux-x86_64";
- sha512 = "20f3a15732e4bb0911d3546e63a61a175c49c496294851aee86a25508c9a42321f1620546175db4a5387ac2dacae0e4baffba6b46b6cbaff5d0932c26cff68c7";
+ sha512 = "c718cee842c5bd456282b1daa7b697a7a1bd5eb63108a5ff63dc4dc8f4ce67fcf0b433e65b6128877636f8a2bcfb469d7340052a9347d3b43ab5d87c03b82b38";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ru/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ru/firefox-60.0b8.tar.bz2";
locale = "ru";
arch = "linux-x86_64";
- sha512 = "e0229a82be96e88cc3169ef9bfe2df4e4c909be1332bea72a9caf32235146594526fb9351c7a787a1d1e95fefca955c962ea58d3ae3e978d921da8a1096d3e8a";
+ sha512 = "fb650b4ad152cf230c23a4c849671e2fc96982d01785261ac643375e51eda259a9ac725d668b6d7fb50d3db14e7a2dc26babe208774a37444ee25eedaeb8b414";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/si/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/si/firefox-60.0b8.tar.bz2";
locale = "si";
arch = "linux-x86_64";
- sha512 = "4e1acc4b2a624e2bd14449f6f40369c57780197d01e7afd5ca9f568e091711e92bd99c9029d540adf5abb10479816646add2094f5e7321e3aa17b457b03b07d2";
+ sha512 = "f2fb270f51fe996b829e1d49bfed793ab6ef61bccedcc6f3cedf02b2a50aa214e2942c9f90676f3339de8aac977b561879376513c0815e1157c510ecad29f2d9";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/sk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/sk/firefox-60.0b8.tar.bz2";
locale = "sk";
arch = "linux-x86_64";
- sha512 = "2b42f4573ab90c0a99a2b37dfdfc0a6454ffb856dfa3e3c31a74322056ad2f3460a58b3d21140bc2068e7fbec0d5a329ccb0f670643f0700474ed65009c0d429";
+ sha512 = "533bcb8ce4d54fec85f0c74e04c6ab6635ccdc462bbd80771919700220e2fa48a12e1d5afa684a2cf4d00bd892fb3ccf219dd288926a16c13eb79dd64b9c7bcf";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/sl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/sl/firefox-60.0b8.tar.bz2";
locale = "sl";
arch = "linux-x86_64";
- sha512 = "f8025fca340f791b15f0d9d5f9a298d8b2540ad440be9bcfd811c0ba45a839fa76486d4191a0d4a743af629e85edb9c38f602d918a5727c4e756002628b508d3";
+ sha512 = "d0e3d28147a6ef4e33b25790c9c205016d7495c0342221dbe3e3c56cc7de34c8fb4f319fcc8ca39fe14365c2ebc44bef4571e42b9254b6f093ec3eaf4e28b3aa";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/son/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/son/firefox-60.0b8.tar.bz2";
locale = "son";
arch = "linux-x86_64";
- sha512 = "ca3f7f90ff76670406600c3c55ff77ac456720c89ab9a03376d7b3772dd9a279dc07fec19666b424ef328a24692323970e9552bee44eed6795d9e4d4b6e7e989";
+ sha512 = "a883303cf4805a251344be37563ceb16197fe41c5120f549449e507383b0737bf8a7ffab58cce6c13e57432e4c452a8cea8abfe4e776cf962436621f16ab1692";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/sq/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/sq/firefox-60.0b8.tar.bz2";
locale = "sq";
arch = "linux-x86_64";
- sha512 = "47869c846d5eda3f208d3485db3d7329c291147fdb66c9aa05e23a0c9fb94aecf578709eb9b4ac58945bb3d8243abc6c4faad968e77b6151674cad8aee4abb13";
+ sha512 = "9b2cefd313e9bed5d21dd937c6427313cb186f268449521af18bb48077f241f2c7fcc2a62145287dbcc9ad3e6532beb46a58fe3a05c195ece2eb5c2b9be9a76c";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/sr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/sr/firefox-60.0b8.tar.bz2";
locale = "sr";
arch = "linux-x86_64";
- sha512 = "37c8845ff3668169288bacfcde152b257e12b320fb624b4f82eb565cb388c09082338d3336f827f1b1a2960e719bef1498aea3f5a0d9d937bb83ab4f3c194616";
+ sha512 = "6da0c24c43ae42e1ee778ce6f190b3159824d16b9072f72af13b9a33e43bc08551b66e7f0f6f101c2845bbd8bc0b88603390205888b640a01c36a61925eddf35";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/sv-SE/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/sv-SE/firefox-60.0b8.tar.bz2";
locale = "sv-SE";
arch = "linux-x86_64";
- sha512 = "d09ed017f8cda8567db84dd8bef373413f93ae5be9bd4be085f0c8076afe62ac08adb98e8a54996d761b27e0b49fb89a719629e6bea8354bf51203fc47b9bb14";
+ sha512 = "17ec7de363cd11814d4de5df4c88350bca1a30033f98fdcd415c408f40b34aed5c0c10cfea0d94e1a31f0325878319b7b8cfdeb787bde0e65320f4d914c7a3dd";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ta/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ta/firefox-60.0b8.tar.bz2";
locale = "ta";
arch = "linux-x86_64";
- sha512 = "8a30ce7402c05688b65db8f8c13dd271608150e84ceddc27187a89ba58c592dd61ee078f061ed8ae1ae1b6ceecd6b85e88c10958127dd712550263a4e7cd1556";
+ sha512 = "821564902471cc3b36bc14a9f168262dee1b4e527445f93f8f8c39b7db2af71c80eb4637da2471247983c600c50ba44f6581d6fdf792ef5774fdb08bbe357aa4";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/te/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/te/firefox-60.0b8.tar.bz2";
locale = "te";
arch = "linux-x86_64";
- sha512 = "d3f9afd0d46f3e3eb585d66129a6cd9ddd9e287cf10c1154439025eff815e1f6cac27f4a6c7110f84692c2c4cda5e9bf79c2a852ccc4ca5ef764171a4268aa49";
+ sha512 = "0757f19aab0c1b9fdc9d80e82fa5eedeb43e7302903add9b4c7f68e030de42527237d2f5d1b1b0fc7d88c3de670aef25c3014546e01783b65cc6b25fa8a75217";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/th/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/th/firefox-60.0b8.tar.bz2";
locale = "th";
arch = "linux-x86_64";
- sha512 = "d49e251ec1b0d570652efa24526760fda3dcfac5d355d4f158cc231adf8449a48f0863966080484281985ce41ce7959c05b4918d5013f727ec73d22212a9d906";
+ sha512 = "811815fc732896e6e90a860647152c1c9196ad7280cf7274b8d224aa5ffff6ccee1c10c127d6750c4bf5b8ccef5659eebf43241db32b516ed1f95e3d2af99a52";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/tr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/tr/firefox-60.0b8.tar.bz2";
locale = "tr";
arch = "linux-x86_64";
- sha512 = "8ed8579a8866b61d2946976f3086ef7bfb743d8c5ebc84de57551d3b3b1d539447c8f750346b045ef04f215b6fef1244d44701ca1278714af74c4d3a06d158da";
+ sha512 = "bc07e863014d7be3a783a90b4373794ce491b57fc47ceb55382c816cd47c8b19e9b71d209217ff4af79e0b333953c4b791025e3760c7a04d7f8d2c672d9e36f3";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/uk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/uk/firefox-60.0b8.tar.bz2";
locale = "uk";
arch = "linux-x86_64";
- sha512 = "94b0a77e93ddec74bb8c77a6d087bf463019afa584a1d06b69eeedbb817b8846fb8706241c057c6f33ef1480dc72eae7b1191ea040c67094a83b9c650b62ea7a";
+ sha512 = "1d48c99480c0db287b4ac3b7f183a6b708b61b1ebeb542aac37133bcb3dce61aaa2ab38b4fcf08130ca068c79494f6e1896ed3f0d26d88ee364f5c48842d8ddd";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/ur/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/ur/firefox-60.0b8.tar.bz2";
locale = "ur";
arch = "linux-x86_64";
- sha512 = "f38648dd9162dee03b1c17638c235fac73099e58d1ac8f38ebc3bc0d22f83555f2dcfd5d07448410373f030f1463161c5f93268ad4bc52c0186328a9803705e8";
+ sha512 = "ae2c95bcd342bf2362266e460cc6303653771926789cf3ae689bbef6bb4d59c24baa3537329315ecf91d7a483f1f97a961049c2e866112978602096470cd28d0";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/uz/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/uz/firefox-60.0b8.tar.bz2";
locale = "uz";
arch = "linux-x86_64";
- sha512 = "7ed9bd4713b95e5078e2619054aad9e42c3996db7d20071383e2c158ede85e3527c6ecc2b8b6bcfd0541c32a4c2fa56591721c937cb15cb0c898f9e0f5448afa";
+ sha512 = "6c349ead6a53f417bb693dce2fc06664796a1781ec78a38e4b2df72505808cc63fdb5629a9264c9bc93c3a8f61be6a832b42a0a1ae56c38e064c61d105ecc09e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/vi/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/vi/firefox-60.0b8.tar.bz2";
locale = "vi";
arch = "linux-x86_64";
- sha512 = "a9502645b4a8e3d63fa0131e198ad07742247fbc8aa52a873fe1095f3e52d73407331a647220311488d46c4599ec4d21b40050612b73ca3f1bc793da1aad7157";
+ sha512 = "df4a98d33d15d1e4cd8fef2f5ef80c8db43a47c7715c4f5ef8c3a8e3afa7515193557c5a779dbd93b905ede42563d6c266506dc881bae5b534dd2f5d091f593f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/xh/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/xh/firefox-60.0b8.tar.bz2";
locale = "xh";
arch = "linux-x86_64";
- sha512 = "58ab4a269c202d2863784d20a274aef9f9e11c5536f0542d77b3bcb5ddc48815659470da6193db5f12491d164ae47a2761d2d53ab8b68e7a61c4d4fcfb262e27";
+ sha512 = "853dd4a017b7f53b32c08a3984ab3e0584ea461e3fccf18fafaa461ca07fa40450d248c9b5df38800c8978d2d74b024861ab11e385b6edd99fe6637c2af6fe1b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/zh-CN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/zh-CN/firefox-60.0b8.tar.bz2";
locale = "zh-CN";
arch = "linux-x86_64";
- sha512 = "320a259bde544a2f9876ea31b7117b958a3b9e5962d6d6c1b84cd3c0a13e1da58817b5844e4833ad87fba30dc60468088e8796ca2113993dcaa5941739fc8fee";
+ sha512 = "76f72bb1563001978c39de8b44a01167d1c8a4bbef7d6fa34f2f904ca039ccb00534e4856413fceb0e49d2afaba06d40ba7b92c8c2cf9cdf55412755dfd8382a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-x86_64/zh-TW/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-x86_64/zh-TW/firefox-60.0b8.tar.bz2";
locale = "zh-TW";
arch = "linux-x86_64";
- sha512 = "9640cca8e0a4c7ca4758532acd07e1f92f9544fdec640395e6ac1b7daa1c3e87619ea8f32c6509347507834188fcb4a4e7b61d8a8e16e1123475a573936bea8c";
+ sha512 = "df08afbc8bfa7d82d9ea2e5e212494198270cf9f401aeab34d31cd36df8311f92d8cba0cdf46d6f82afec42897a3ddbee0d949d73a17ae962efcee72be728d3e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ach/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ach/firefox-60.0b8.tar.bz2";
locale = "ach";
arch = "linux-i686";
- sha512 = "8c5c0d5673ce502f2300fdfa573b5763794ef98698884b6fe7f037c7dcde0adf5aa3bac0407df8c1486f195aec970415344cb46dcc08aff8144353e77d7d317c";
+ sha512 = "9dcefe6cd21b403bf51a54addcbc4776db92aa1e722f592ed5bc2cb39a52a1255c88134500ae0905193dadec89147ff7bf95499180678177e29fc872bb71e5cd";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/af/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/af/firefox-60.0b8.tar.bz2";
locale = "af";
arch = "linux-i686";
- sha512 = "becb389fd7e8574c7d53464b67329cbba901f6459bf96a904fd38e4489224b7d7035ced7f80da6a50bbe2321589371e3a46a78c51d9c388183de7d409b38fd0f";
+ sha512 = "ec5a3058b71d81c2e30804942d8d39ecb2ed4f8cf801c0464993b4521ad5992dc9c6bc2aaa63b646f7202a19a4243e37f32e1af095827a63d7ec044e9c47754d";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/an/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/an/firefox-60.0b8.tar.bz2";
locale = "an";
arch = "linux-i686";
- sha512 = "7686883f06bcdd7d1d7affeddb70ae3477e7f4cc865e23541814c9b4de1dced322ad1b27a71748198f9678dc2f88d9bfb82f21c55f780891fbd0fc6b3d9f8761";
+ sha512 = "814de6c9e194b42d2d4b6f5f1c0b88d5bba4f64f92a4819f8fead0c3806c52a3b9d8bcafb11c02abaab6a37253fa27efefba5133587e60ec25b76c94a004fa35";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ar/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ar/firefox-60.0b8.tar.bz2";
locale = "ar";
arch = "linux-i686";
- sha512 = "f4de362efce3e639fae3795f5d5d8c26511fa18244264197e35a476b0eb1034c2045dd5518004d63c9d56d77faeaf437d4c6bbd5d673941fc908ffd3267f621f";
+ sha512 = "ba5afe64785c45fcbc7577e519bd996dbc324cf1da87f0e3044db968f9e67d16cf2958346ece84b57bf34775b05f27cecdb6043bd09bbd594dbbc277624787ac";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/as/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/as/firefox-60.0b8.tar.bz2";
locale = "as";
arch = "linux-i686";
- sha512 = "7692c77a4eee2ab32546f3f92d252b36848c662ed39e8f8b6ab3b25be93003c610586cc3f8d871da16ec60eae86f4ddcdf4dd264a30e5aa3e2fdbfb6395be441";
+ sha512 = "fdf9cefa473363a7bd7027b05f412a260aa69742743cd121900f1bc5f2ca45c45011d068a6db01b6c5849d53719beefa4da659aadf7116e9c2b17ea251188586";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ast/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ast/firefox-60.0b8.tar.bz2";
locale = "ast";
arch = "linux-i686";
- sha512 = "fd723c59ec13513deb0e8b7a25e79c7d59b0e2af037714e36608a76bac724c649c82fc28062e385b620eed71ce7a5743c828498e30dbd964376509f2a17a2c22";
+ sha512 = "f6236d368e813b3aa88847cea48510be3c2be2fb7ff054eff0c1458205db70f645d83f6ef20285f774686ade01f58751cb082fdb2dd632511089ef2c63209253";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/az/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/az/firefox-60.0b8.tar.bz2";
locale = "az";
arch = "linux-i686";
- sha512 = "9294dbd56ac055a41e0a5abfd7c0c2e1630dfaaeb5f4bc88c20ce15b5ecaa43debd00a117389509f4c6c74c488f9893e68de36159fb791396cb886469cf772e7";
+ sha512 = "74658505a2462cfd26032a837db50bcdd092a927f8f8427bfa3182301f25a15da346091d73689ffcb0c0e7c59b154da343b7be917e1ef4e1761948bbfe1bcc7b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/be/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/be/firefox-60.0b8.tar.bz2";
locale = "be";
arch = "linux-i686";
- sha512 = "f7a871abd3e91b904f69284e72467ab54e13a5f0f207237f520ebd290011f4bfc1448287272dde84bc0389a8708942e215cae384c6dde6c25416182d5adaf11c";
+ sha512 = "c168ac1509e7fcd3715b8f1eea47c64999028256b442f11ebfacb7809d61553f251fb1e3fb80bbe4050c7fd0371e6f1a417b7fcb3eeefdd0b2e30e547da3b8a9";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/bg/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/bg/firefox-60.0b8.tar.bz2";
locale = "bg";
arch = "linux-i686";
- sha512 = "b8a1de2af55414b73482e9031ebc91c3b1bcf7b9f031ad6df3029c6854fee74018d216e3410550f6a75e49832ab447af661f77ab84d33ee323eee10e15dede3a";
+ sha512 = "a2440702f8382ff965b17641e9d9dbc6cfb4d536427f92f51a3b8df63ae61ec869760d6eaa38202a7f19acc0ebd6895f1c57a27a5ece8bd1f6a29781d5a298da";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/bn-BD/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/bn-BD/firefox-60.0b8.tar.bz2";
locale = "bn-BD";
arch = "linux-i686";
- sha512 = "c65f20e5493935f1bfde0a704aa17768ebf3898fa6d8baba255bff4625b32e2d9a3aca12494d07a1dd5b0f53da764e589b096564b91602ead15dcf054181a29b";
+ sha512 = "c1aa573de2ed71b85392bff6b8c9279633a142ce51bc26e690c02ed059f6f7db47cdde3fecff902617d27fecca1824b8ebad1b10a7889b918de2056991921c76";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/bn-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/bn-IN/firefox-60.0b8.tar.bz2";
locale = "bn-IN";
arch = "linux-i686";
- sha512 = "827be1a041070afd835a564733bde9ed5c435fdbdc63ed95807d84aaaad351c82db8d64fccf8f760a8434fc0968abfc041abf008eca71c4c53d292adfb731a9c";
+ sha512 = "a728779adf7644f3fe8363080d93a8180ef2ba09fb78f0d05989fa57585f77897757c5b587a318886eb54d805ee8de625c7cbee44908badc14b47dfbe2dd2885";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/br/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/br/firefox-60.0b8.tar.bz2";
locale = "br";
arch = "linux-i686";
- sha512 = "8b3c8e748e3e9d02f5aece76c5e0c067c72d3575e40b49643f4ad9f3360b19ed0f026f690c8056cb0d72e0d81a50cc7c6b41c090a12a2ed4abd8e8b3a087d920";
+ sha512 = "5bf79cb726263b8aab120c6b826a09524594bfd8ab7c6464937d23f02e866e353cf8ce71adc8dcb621d6df71e4e7d9dc8d60eeba4023cc3d7c8358eae2058d40";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/bs/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/bs/firefox-60.0b8.tar.bz2";
locale = "bs";
arch = "linux-i686";
- sha512 = "269e02ce58b98ee54f39c69ee95fb1ea5dfad7ac157fa2df6bf009718cc58b4b3bafe0bf4796cca4836d87d4a3b3845bcd062b64f2265bac9dfe930acc7ffa27";
+ sha512 = "84f717ea9067ea2ae636aa15fae1821e2660c84db5c6d3f1f656d9170312b31e44abcdaa1298a29adfed9b221e72301faf2fb1253672729c7fe7ce275cf37b45";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ca/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ca/firefox-60.0b8.tar.bz2";
locale = "ca";
arch = "linux-i686";
- sha512 = "3c998e4bcac8362dd8932cf4ce53e3a18f322b22b9a98251a30e586aa00a3dc61222b0c1836e6e7d2ebefaeda0d196b1cd5d4da19d740287387e8ac9282c4c1a";
+ sha512 = "66a6ca250c2d916503b825c05dc108e865ef63aaa851a658198869a0fecbad3e31b7572873b2b39f53220c0c1472e30d5822700512675cc9b1df9cda782185de";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/cak/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/cak/firefox-60.0b8.tar.bz2";
locale = "cak";
arch = "linux-i686";
- sha512 = "708e216a9443bad1abbf7280c484a6f285bd585e05293d7f7d676fefc1c9c5d3d6c6a4e1e7f7c5cf88f74c9671e542b8525c8969008225a28347bf170ba1f8f9";
+ sha512 = "c953bde75215054be5be2364394aa89bebc4489dfd930ce1088ea770fe5b94ef9682f8a17065674dc674303a558dfbc77973c751b7e52d975b2138ba5be823cb";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/cs/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/cs/firefox-60.0b8.tar.bz2";
locale = "cs";
arch = "linux-i686";
- sha512 = "319c5e63fed5f9c97ee0b290bde3f8199417fb857d8c3b36ba731e0b9dc3a176a899c129aa09c1ebb6e4dd449d298db661b532876ffb4bb6454458428a653478";
+ sha512 = "d2ef4e665ce29f2df4ea9a9322962bf934b4e8eb8f2396fe532e2873a68a3d7124c53f3afafc541ac67799f01b8e75595de849a2a7d5bb7f552e0893add7ffab";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/cy/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/cy/firefox-60.0b8.tar.bz2";
locale = "cy";
arch = "linux-i686";
- sha512 = "348a6a8e91bc205e86643522fdcb9e6df7f28618b8fc7b1f84fb505b7cd3b40ff0244fe1960778ab8500a1f397ff30236eb2a78aa7b78a545c61e4754daba40c";
+ sha512 = "e5f8b77ca5fa59d5236984e6141b909e2d232a5d279a295eee7fb83eeadf17d0078c936d2c560bdd9ce9df5809b0138547946d9052842d93e699fb7ad7161062";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/da/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/da/firefox-60.0b8.tar.bz2";
locale = "da";
arch = "linux-i686";
- sha512 = "3b5f95a388fa4779998da9da8db214f1f4319505d9dfbc0f5e900c3aff35da88152f1486f939d5eeb44f2e5e9149635852e3a40182986b771535ea7b6ad5bda5";
+ sha512 = "f241d4d26266231e063bd556d07b34477eb5d93452ce29a1c0518a5414eeba3398bfba5b6113a9c7cbc7ff3dc5371cd2eb470de4a00891a97a9e8f5a6ffb6d3c";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/de/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/de/firefox-60.0b8.tar.bz2";
locale = "de";
arch = "linux-i686";
- sha512 = "1cc320ad036995b5190aa5017323a409e068de7e813ee61d31fb8a232ea5439fd6190ba840be0a2c6ebdeb9af68dd8895c51f95dbf839f3769ae4bd927de95bb";
+ sha512 = "2e72ba457794ae8c40f0cc84a7f8f4ec66a2157a61853fa9ac7fb088e9320b85ca6d2b32653266dd4042b786596b9e03abdaa8f3f26157d354c070e3bd3cce52";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/dsb/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/dsb/firefox-60.0b8.tar.bz2";
locale = "dsb";
arch = "linux-i686";
- sha512 = "8b5181da6b8ff98f48fae289e44ec8b31d6df9575e4cb45b38f03bc2d653bc8f0803c75804adee8a6bd5cc0395f8548d9c9629ebaf8e1b38e7d9783e8ccbf8ad";
+ sha512 = "b3bfa0ebfe62ddaebaaa35a90e220e6092b269ade846a07f45f12ba78050ff1d9c430ae98c84467dcb4449eec93c8216aaf9046a40a74b23d289beef89c347af";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/el/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/el/firefox-60.0b8.tar.bz2";
locale = "el";
arch = "linux-i686";
- sha512 = "e20e0148e3b09570c36b2c41812b90e9e68ab5e936b44e54e7ab3c84ae2006ad5543820bd75337f23d5e5dfc27678a53ce749273d32212912335c4346f7946f5";
+ sha512 = "d85b8c718e82115f1d653e4cbaa87e5713dbf4046e7c81701b6d9f7d7d3020142de5ff181bb3a46916a65954a743716f0b2898d098b8b582a14703a7a0169abd";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/en-GB/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/en-GB/firefox-60.0b8.tar.bz2";
locale = "en-GB";
arch = "linux-i686";
- sha512 = "455cbcbde1fa1173d11188daf641372de887b9280313e5cc1ef28e290c32b5be8a3e7ab1ac85948da8da8fae8be41fa736a70a7a1e0b4d4de8acb7b3b1235d6b";
+ sha512 = "ad456cf1fb209f0a7f3f567fb79684657074eaf9f40bfe46716e52c482fd3f6e63cd4ff2bccf9d47a2a70d59c02c1953ecd70eff89f95608c25caf100be31f02";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/en-US/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/en-US/firefox-60.0b8.tar.bz2";
locale = "en-US";
arch = "linux-i686";
- sha512 = "9ef0ee15207812c2e92463350695c7afc952324d4cf55a99bd4bd6424b1b7c5215cca84afecbf86be05af17bc5a67a8a95005f93e5f93f95b4cb4db074d59c40";
+ sha512 = "c70393c2ff8eb5bfaefc5bb646a327f685d16ddf5e9f6839d9d064fe51b51ef12e82716dc247fe9533f97bd33641d242049d1cb09130d29bd72faf497f989bad";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/en-ZA/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/en-ZA/firefox-60.0b8.tar.bz2";
locale = "en-ZA";
arch = "linux-i686";
- sha512 = "3595fbb8b3ee186193d4c0b84c339f560238075fbd7a8d69fb3f2b4716dc85e4b0b799cc3524ab3ae646e777284ed3ae80ab5f2bf6648a8ad425505120c04a0f";
+ sha512 = "6a4260b28a9d3f1bf118f4e32a64395a636395a98e0cf33546530d3439d74bcb773dd4493c9634c16f455cd7d034235d2c1f06830371033940a8cceef7a786f3";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/eo/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/eo/firefox-60.0b8.tar.bz2";
locale = "eo";
arch = "linux-i686";
- sha512 = "b1bff7c52877be383a55707f421bdb18b21fee45979c16ad91d4665336a6796731930da4051460430eeb36765ec4f8fa489eeac4583a57cf7553cbee59156c33";
+ sha512 = "e0a0812ac3a24a0b9358f68a63d136b4dd0d140bd299bbc7b9b4c7a72e88c6ecbd149d1419478642b0b9bb662d625f9134febe5d6d210f9856fe99a6bd566832";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/es-AR/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/es-AR/firefox-60.0b8.tar.bz2";
locale = "es-AR";
arch = "linux-i686";
- sha512 = "7798c4b84854d8084fd53e241eee0c5a36fb278e0130f5131eb0e04f23d7ad4fd597e21780ca546c4be1f46e13b2a8aa9c704e6b9b48b6c88ddf6f48e10da753";
+ sha512 = "171772bdf3fd38225db4f1dd0321f7c47101f804d94ad6b558423761ac0a3e464ff992b23e118c2ee05e053213ebf27807413007c5dab0bd9429e6612e52acc6";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/es-CL/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/es-CL/firefox-60.0b8.tar.bz2";
locale = "es-CL";
arch = "linux-i686";
- sha512 = "6c236ada8a5cd397a7ec94b4480482da351fbd7eccaa2db93faa47d04add275d135075109f48c2a06b7bcdd8876907753dc5be4b7b1cce08f3eb9985fd1063b1";
+ sha512 = "c7f96bc59b36c6ba7c4cd1d2ad0ce4e572dd489edadd39690aadf4cbb7e4573353fd73cfff94b2defdb6923a8a23d1857ec16621130cc106bdb6000fc054f98e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/es-ES/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/es-ES/firefox-60.0b8.tar.bz2";
locale = "es-ES";
arch = "linux-i686";
- sha512 = "5bf77ba43776a5bb3de3a57bbf99de96c8b547c664ad940bb9dea69b5231a176347622ab631765cc2ae0d75ee1493397bfe6d6fc42a61dca89f79d96c3738479";
+ sha512 = "b4f28a2c5b303af01f1fab300a3c09554496cdae9ea15a0a6ab816411e7493a8a8fac2360e12a39be050a8de9ff2bde5bc4f6f8e0b6dc25cd8adad49a0d7514f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/es-MX/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/es-MX/firefox-60.0b8.tar.bz2";
locale = "es-MX";
arch = "linux-i686";
- sha512 = "70ffeabbef6b53d8aac4f54e19f077495a5895ec5427e8fd00ba4cf149763d003f1b0660fb80d9f837c1910c103487bb77b15dc345fa339f2585142590f82de0";
+ sha512 = "d847c11a5f207a27221a6b022cbb78e770a6d060eeb05065bd770101bc0238c0309bf4aaa063d070e23c1e8ab8c955c4318c09215bec8184b279f653ea05838b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/et/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/et/firefox-60.0b8.tar.bz2";
locale = "et";
arch = "linux-i686";
- sha512 = "1e6daed8dcabc37603ab9ab4ffdd8d16984c64d913b0b32eb21d53cc1f8088a0fca4ef140a090a5fcb92894acc3702b5d5423c5d2e06759a80800e03cb09e139";
+ sha512 = "9a0a608abdf8040be460483ce8c291eaa5cfa5ff719ac113c03bb1092ace9017f9beb10cc78edf8a6169452f6f46169673f856dd58f6d8eb7cdb49d9378c82cd";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/eu/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/eu/firefox-60.0b8.tar.bz2";
locale = "eu";
arch = "linux-i686";
- sha512 = "904ae45defdfa71aec5cd59b3d6418c92b792680a6400a0a1621a8a087c58d7fd518fc216da93761023f8c8d821253d992585c2ace74878be209daf45fe6193b";
+ sha512 = "ca8e503ae4c7e6e457dce0674116a9beaa6360ba50df5d97d0b56375794c940c91028bbc1424f5f7628a80560220a169c8a8ff59a3739e2555bd9b091842d7dd";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/fa/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/fa/firefox-60.0b8.tar.bz2";
locale = "fa";
arch = "linux-i686";
- sha512 = "65d9c2b59b26ea37c8c7c44ab0136935fa715328ecbf0af5392ade21f77225cadf3efe2b2e0c6babb735557eb6c0a3d4b833aeff5e38bc27059badda334d1021";
+ sha512 = "842bf6fa0d8b6ad46a17e1f1d54207522cc6d65051138e73063fbc0c9623ef56d0861f524d441105ff606753e95a072124c3538dbf87ce333d22bdc1a448bc3f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ff/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ff/firefox-60.0b8.tar.bz2";
locale = "ff";
arch = "linux-i686";
- sha512 = "68964a74d1fd81664bdfaf8d614f7a78237beb3cfa6d86ee7e569361afa378df1fe1430f4cdb19ef59e960c264aa7032dd1991ea4396c88c7e8d521fc29aab9f";
+ sha512 = "f83218ecd31e86ce402b47cd00abec4065355e64e9d884fb5aacbde86977cf8e0ead693fd939f27c735d74b8b483ec18d4b185d7023c2124993fc52109238234";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/fi/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/fi/firefox-60.0b8.tar.bz2";
locale = "fi";
arch = "linux-i686";
- sha512 = "8cbd78d7822ea1cc37adaceec7ef1208422c5069c93a9057543c7a3446754cf6cadfac8ef220db77ea80182c0cb0bf4fb5675d7777f87f5610a3c482abcdd3bd";
+ sha512 = "5d00e98297f9a9d768467c981bd789fa15945a5c70ffcb2f402f68cf13efea72106de8aa947963d58e25365d17456538e6e76c8bf4ae62f8ea5c0aef0b4d109f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/fr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/fr/firefox-60.0b8.tar.bz2";
locale = "fr";
arch = "linux-i686";
- sha512 = "0e8030bb95051862294bfa94201d2e701736f9a46cbac0848f7036552a53af131fdbad64780be307a63bb8d74b6c7f9b015cfe6c2959e839293e1ac3bc0d596c";
+ sha512 = "a30c6c7d0f50cc1db0505ec34ae1d5714737305c3e8e1e1660b6f519aabb699ba2a2bb14ecb77e1deda1d30cfd50ee69de3a308be004ca6a4b9e6df50eeb94de";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/fy-NL/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/fy-NL/firefox-60.0b8.tar.bz2";
locale = "fy-NL";
arch = "linux-i686";
- sha512 = "c34f58438b653023c68502a284d51ba5ea895b350d262942e4546d098ed17a10f32f4ae455e9a24ac17fad860d9db38cc01460196fb92096273d6e52a4b62b9b";
+ sha512 = "9f3a5a32d4be8c9941293eb1d8c18968502eaa28fad44ae89df20c2170809b850a7a0460a95f6aa189c148c2c54a881ab138d12f3029f21a863c5307e4aa11e5";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ga-IE/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ga-IE/firefox-60.0b8.tar.bz2";
locale = "ga-IE";
arch = "linux-i686";
- sha512 = "a367fa5bf03b2c05dceb9dcb08597e1feb2dee91a3a2389efab6a3838f2b2f569a62d0ccf44d8a78654097545da8d7c002f127113e671af3befbf886556b3b87";
+ sha512 = "93547d639642d8c0ed10f23344ea01a66b43f99ecdcdd7a0e2e1a9b2a895a1fc10b44231db8c6d948a19a84b820a8dbbaa9ecec4df0bfc4555cfa62385ece6f3";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/gd/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/gd/firefox-60.0b8.tar.bz2";
locale = "gd";
arch = "linux-i686";
- sha512 = "cd8f8d6e563ff79b99c9af0031db1ebfb7278e980d8d093d1610058510b5880d44c8c93e4ce365b91175ac3082eb445d815e3fe26dd30bdfcb16d4159e9661a1";
+ sha512 = "73c501b9a4a329acf953881a795444baf4291ca6dd152cc05c698f661b2ad1f979fa7f45f4cbd6abb6b79b6b41ca0079658d32c1b5cfb6dd166eff486f0ff067";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/gl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/gl/firefox-60.0b8.tar.bz2";
locale = "gl";
arch = "linux-i686";
- sha512 = "1eef9e5469b98cbf3873a7ebeddf74250f81436fd0729dbd46cffd95ff13e96cf1f1b65bab55ec784e6ba2ca4159ffa1d9121a97a55de1d6ba9daeef1f711f57";
+ sha512 = "b505c3ef839778b713c42ba61ab2616d389184e6268313537ec12e648c341c8ff57b739622ec118daaad900b54fb4f8eb57f43526f711f59f368db88f788aa51";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/gn/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/gn/firefox-60.0b8.tar.bz2";
locale = "gn";
arch = "linux-i686";
- sha512 = "7f94a36d30847b27f39fb6838bbb73302582917cfb932171cdcd00c033f24b0b23a82fcbb0ceb8416cac58e27f8b298e6bff9dbdf1f3fdd6b91621d897afca0c";
+ sha512 = "744247e1441b2c44cd427179e5008ec2a25bf4b6d4e3195c910e8943c76deabd63dd5ce5c5ce6de2968d5f00e67990d8fce2322d901d2a5bcba6b2fbfb4f51df";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/gu-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/gu-IN/firefox-60.0b8.tar.bz2";
locale = "gu-IN";
arch = "linux-i686";
- sha512 = "4a474a6a1b0386369eb5f719aa938bfafe51958adafdb854e8242db3a3da8799efc6cb1055f4f85e805e8edfc8117e96de958e9b415e3974efbb6055ee097fdc";
+ sha512 = "1784177b07a777972dbbe14b259af9c0f5e4e8453d82ed0a9dfc7c0f548f6909cd9a986b4a03c2c40a5d1e88bcaea32c75909e5f085c652637512e8cc56ce38e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/he/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/he/firefox-60.0b8.tar.bz2";
locale = "he";
arch = "linux-i686";
- sha512 = "74145ff3b86d515e3cd7c5080091e5a734b125432443d7ff5d6bb79aa1f2d1d28443f1db25ede8452e58ff81b58ab397bbdca44058d6713183864d353fa4d857";
+ sha512 = "7a56deb3e7014ab4ed95f70e537c1613fdbca8a0a538820f903808e8d881a7259033ec6d0c8512ee17dca4b55dd5bf54789be78a6018f6c21f5176e7d9cef09e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/hi-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/hi-IN/firefox-60.0b8.tar.bz2";
locale = "hi-IN";
arch = "linux-i686";
- sha512 = "ac13b8b3e7adf1c2daea80d6f294d784f7912f7166f4305675de821a048e84241081848ec1b0ee5ef96207cbf1b7b5aa77973c993f9450c4dde0d0d9c60936c5";
+ sha512 = "d47f44b37418d61131cf1b804e2914b6dbfcb8bb30efa771d2d41d0e3768e20660bc4c8c3b36b1611ea3e992825cbb9548a4c3b975578d6c218fe10f743d37a2";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/hr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/hr/firefox-60.0b8.tar.bz2";
locale = "hr";
arch = "linux-i686";
- sha512 = "8a89f909e525df4260855263f8d7007cf83176912fd19a0de425b1ec4893fddccff3723f01cbb48457a8c2e3a2ea1c9c969a71d171f3a282342626a2d6821277";
+ sha512 = "8e9229d45bd3484c76fcabfa66845b41de87b33c1dafadc9a06ff6d36396cdd9a1d5d86a7e85728b9b658c39197962f20f374453c594cb92b82f0a14536522be";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/hsb/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/hsb/firefox-60.0b8.tar.bz2";
locale = "hsb";
arch = "linux-i686";
- sha512 = "56b92973f3803e91b9859dbe7f0c35eb92364e9983e48dc063a3db637af0e22478047c7c6f5e1b75448c73cde117700955af25038f9bbda4178c8cfb39b5f0fb";
+ sha512 = "f656f3bbc00dd0c3c4a0a9c4a7d5d74f2049c343284b891ea455ac093f15ef24bcb4acb244213516272b730cd42798115ce3e9013cc7ac6bcd648e97aaf6ef3b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/hu/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/hu/firefox-60.0b8.tar.bz2";
locale = "hu";
arch = "linux-i686";
- sha512 = "ba03388e6cc42238383d7b779a0c53cd65a71caa30b6e6ece78317bb95173b27081489d6ed67de37608cd3029b162777451d4ceaa69234d71423daedcba1e57b";
+ sha512 = "de412f63269b4e89bea1fc854c9a0ac9f37ef73d19ec900f32aef0fb444fb49daac0bb2e1df9ad01ec01810f64eb8f9d96d17816e7f062f5f3a324406a863efe";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/hy-AM/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/hy-AM/firefox-60.0b8.tar.bz2";
locale = "hy-AM";
arch = "linux-i686";
- sha512 = "62c345ea2b6321e6be77f54864c9ce8c1e8cd68ba7a496e1e779c905f6f02aad19556a4e7cb4b2a61466773db0eb3d5e0d187d7cdd2dcac700a3d509dc31247b";
+ sha512 = "5b6a9f82c85318e21a4a4bb44e74db28e690372d3fd93c8ad8ab4db8b1efcd9014fe365df1c95cae4ab4e7a3abde9ab4dc8873e8d9440c3a5716cce8b38407c4";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ia/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ia/firefox-60.0b8.tar.bz2";
locale = "ia";
arch = "linux-i686";
- sha512 = "c8f60684f81114f5095bf106ea456bac5569b767d10dc59b4d9adcd67b66701432cc3d906ddde76c0d71d18716972a48e65a7b36a1c91f471e6e2d5655dde917";
+ sha512 = "8a44046e7a0c0345575fd9b715dddfb88bff2cae6b674421724056e9142570b3499c645691c4c0bf37cb4ed59026a6e4827801b32fc865e6e2f9ed7653e13c30";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/id/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/id/firefox-60.0b8.tar.bz2";
locale = "id";
arch = "linux-i686";
- sha512 = "429edb9fd687057dd4e77e4a6cf2b1df1d2f830472e75edb6d975986583a0726beedff4025c0889c28599cb36f9a894097a4e391fe333a44410ed73faa27cd47";
+ sha512 = "57dd98bc122a433f4f2bc0a07d167344087a26bc7dbf728a9d9770b61b108f953826d88889e73c2c6599fba5edfeeca3dd6eee2377faab254bd7f741ae30939b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/is/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/is/firefox-60.0b8.tar.bz2";
locale = "is";
arch = "linux-i686";
- sha512 = "afc42947556d206f8ca0e83cad9462c057ad5d31a2829504d4a7d904d31884ede260f2a92fa0f1e5ac68aa333c2ef65b41ad229d51d1109d41703c6f928f1541";
+ sha512 = "58e47133a1a1e018ef4eb64cf099abc7676a63d3edc86024d024ce3e95e2c007e37480dd9e015bf45fa7c53fc46f9ee95214199d25cf57dce8dbac6a56356c22";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/it/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/it/firefox-60.0b8.tar.bz2";
locale = "it";
arch = "linux-i686";
- sha512 = "9318d88ed98c3d7d30cb67d12ca1ed4c3857c2fd4dedfdd8248e76edce7757f5d6703854b7c82f6fa25a721f6b476ac6fcac2f93cec6b36c192ff38e28ea4e41";
+ sha512 = "7825ff6f4f2645e4577dc472cba3e4cb0cbd8f7881671f99f48df03fd509489ae74c000705b212fd5033b7da7345b09aafd68171009f5ebc40753f7da43e36de";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ja/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ja/firefox-60.0b8.tar.bz2";
locale = "ja";
arch = "linux-i686";
- sha512 = "76fded79e5d2c268a370927f033883311ce3baffb3c3ad6c5cb2c205f4dacc78727b3ec845f8c98cf9311df51d079e7cf386f0356b804b4da32498d539f90056";
+ sha512 = "0401f4890ba1f21c7dc1139046f0aa6e218891c69de964c7e0ea32c50ace9cf743990548b6d544c8047719b189f4af4594231c2c30abc48a8dbb888c9f6ff339";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ka/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ka/firefox-60.0b8.tar.bz2";
locale = "ka";
arch = "linux-i686";
- sha512 = "0e344600ea643346258eaf507171dfa71c033aeaeac30d2872c62396007a521f68393f502bd32047fcbbcb8bf083fea5e7dd5d4c626c97ae8741797520ccbf04";
+ sha512 = "f54ca89091125043d38ce7a197ea2e1675cd3f308ca0f93b0d57cd1ad8e341e2f8fc41dba925c85c12947cce4cc4ebae13e248a48fe5fb229e4e06e4ed0e1436";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/kab/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/kab/firefox-60.0b8.tar.bz2";
locale = "kab";
arch = "linux-i686";
- sha512 = "a68a04d7fff97141635feedee2f89eacfb36e73f298490aff4640ed0f09d16f5dfb8e3e7275fba3c77a5a79b7c6dab09cd85ed87bc007eb420d7be897c3228d8";
+ sha512 = "c6aeb9254c51fcaaeeabb973ba7c6b7cbbdf1547300b8149abac8b35bf9d319a3d1efd7a9d252b23d6fdcfffe0f311014c17c475b27bfedc15798fdd8fa08fc1";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/kk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/kk/firefox-60.0b8.tar.bz2";
locale = "kk";
arch = "linux-i686";
- sha512 = "702de0dc1a5a8d36558332aa5b8bf0a16571f8953a2de486906f57a0ec644723c65c12c63c0ad944f7db1a93fae2a96ac24220f7068f3098cb2cdc9e64d1c782";
+ sha512 = "f3451dc01dad8018b4709a6af7c8829d41ee3de4e028b3529be556480e0c5a48b257dc33ada9527b88550b2f68985bb71b1fe7cb6fb84e505ef3165a58d94c1a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/km/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/km/firefox-60.0b8.tar.bz2";
locale = "km";
arch = "linux-i686";
- sha512 = "22156bfb697297c35a22ce55af66d02e58a7879db0fa1edda04450836564e5e67ef4789be90e85e5881acdbd55654c10c2b0d8a0d2bb06b6775ce1d908abd5cd";
+ sha512 = "3364456a57641e1bb20bc2255c0eeced49b67043eafef74867fdffb6e6abc3eeb3871159859bbd9ff4aa823f8060409db068fbe2f44a16c09ec2170a6b8f858b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/kn/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/kn/firefox-60.0b8.tar.bz2";
locale = "kn";
arch = "linux-i686";
- sha512 = "21e9bd936d57ca6e12d58d185ad15786d5fcc00dade092a0cf47aa395d3a7b93d6eb7d63ab5784c4787e9613c866f3ccc307869225001495eeb0d0e8f6d653bf";
+ sha512 = "e206b0ff442462a150b60a72ed29653e64e2d277d887e622f31fddf2332cef1f75b6d6ddc27bd9c5dc89bfd87b67ce3fed72491e4d29a77809f4f901a2e87c18";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ko/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ko/firefox-60.0b8.tar.bz2";
locale = "ko";
arch = "linux-i686";
- sha512 = "89d8e1adc81f0ac12208760a5cf8f7f1b94bf977052d6762618c6decf6472dfc62cdb9f42303fa9cddcf4a9bcfb7e7a52db7bd5080beba994bf5fe8434b7ab2c";
+ sha512 = "a0873fc6ed8c69e205d4c01783ecabbc403317d94ea7fd21077e00f8cdc264424c00e32b6dd27202b2d6ed8ac08299eb6693a38c288cf9b9a24c722745ab0eb9";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/lij/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/lij/firefox-60.0b8.tar.bz2";
locale = "lij";
arch = "linux-i686";
- sha512 = "021bef0155b80b4bc74fcc197f8b901e1cda73c6b2ef9e5d4f82a9702ea59b38b427f79fcdcc393873a5004ee87e609a58fc33c871eb3f8d43deafa07c52b913";
+ sha512 = "95183a50d86bd9463ae2ceff374c2c16d563cde9c2bd7395ac900195fc7f663239289baea37ecf9941abd0d8b43b5c63214fd40b8eade0419e2ffef2aad51095";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/lt/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/lt/firefox-60.0b8.tar.bz2";
locale = "lt";
arch = "linux-i686";
- sha512 = "f4fca659d0c46e3945323e695ed6fc8ccf57bb7967114c4da97a552ff93c892320dc11525cc57111690b799c23a1f0221448d963123294b41ce6de428cbe50bb";
+ sha512 = "758cf8c198165c0579207ad8d67d998eaa81c32a8ddd269ce1c76a05082349cdfe38c0fd969188e7d4e86eb128b88cf88daa9e3c283820311972773b075bda10";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/lv/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/lv/firefox-60.0b8.tar.bz2";
locale = "lv";
arch = "linux-i686";
- sha512 = "d79841de7eaa394a033793ab01a7e6b45c9055622c28de3585fae2ab5ea1265dc90a4f27064edbd0662c5c820db4d4a906e3bc60f07dcc800a70291a913f6c9a";
+ sha512 = "b38a18191221d6fdf1386c72ec07e198d10dfb2cb33bca34aa5d960f5c7be2ae61fb543409559e3308db188ec949261eac4949391f8b699f63948fe3177a2ec7";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/mai/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/mai/firefox-60.0b8.tar.bz2";
locale = "mai";
arch = "linux-i686";
- sha512 = "ec9610ed1c0be19b14243584bd649e04d376091e21e19337fb0d573c79c5a73f4188e207faba30d03cc555d9556d83ffc5ad0418b2b5a079ab5cda5371ce8f26";
+ sha512 = "f0b09948695397b53cb3fc500d6ae47aabc4f84da9314867816e2c4f21e4228e601731756b1b87253d2a2d5f6057fa115bf667d115de5d54ef4baa1a5dc181e5";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/mk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/mk/firefox-60.0b8.tar.bz2";
locale = "mk";
arch = "linux-i686";
- sha512 = "0526371496118f44595bd6adf161870956ff72184ee0a57a00d2c374e3e76295a3cd781f0dcc70a6c23561da721448c715203ca04d082819341f14c479230a9b";
+ sha512 = "46ef2273ff40e516c9deabe4b42bbb57abbc813a6717b0ecde42720e9d54ef3b332df05f48a5db516f8030aa984bbb0d91afbe3f0b84c604f9d106c39e124bde";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ml/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ml/firefox-60.0b8.tar.bz2";
locale = "ml";
arch = "linux-i686";
- sha512 = "b45fc0b6569c2276dffafc6a97638c7acf57e4cc71455380ee4af68f4117700570e2728b14ac49e9ffed55be84147d0448dfd73d55aa59dc350ab3d1846be2b7";
+ sha512 = "43a1803e07b496571f35e005b8ba0adfd9281c9c907b00b92bd0fcf37e9b4c8236af90d145456725feaf3ef2c7baa12f9e5651e88a239795d90cb401079ca4d4";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/mr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/mr/firefox-60.0b8.tar.bz2";
locale = "mr";
arch = "linux-i686";
- sha512 = "3521526588d64ee31a666728628515a83b3a8a6e9e68ee5c07dd151c128a5fbc3f1871bd44cd38b681cef2d55a3d1c770db3227e0cb64df64125699a1c30ae88";
+ sha512 = "4a79bd0bb319c8851828a4a395d7a3f12df8ac812582048758ab007a61ec656785322687dadc46b023caf6fdde6226b25fb31e2c08ced97e73832517196c5b1e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ms/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ms/firefox-60.0b8.tar.bz2";
locale = "ms";
arch = "linux-i686";
- sha512 = "c36237398172fd7e14c340393b68bb810fb7072979b953a17084a5afd90394e6f355b4d05dbb4a33887aca8a3dc90c8efefd24598aafcb6948ce8ea199614887";
+ sha512 = "5c5c465daedb590f848415ac1781909d3645a3634da35ffe76c8e91b9a154f3f848efe23f348e0da4e2e7b79d92b41f98988fb68e59b54103ddcde913a7c8cb0";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/my/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/my/firefox-60.0b8.tar.bz2";
locale = "my";
arch = "linux-i686";
- sha512 = "8067d2b0332f812c43456cb3bb8d26a8ee4e25065aa35d892235a1ce89603562fe3537aef767d06cb9952e3c3a90c3a2f77911c9e24c7ffdcfd43980619341dc";
+ sha512 = "338af2c5ff8fc81401cbdd4559b8371bc18a77f07c28c87d71da2d4a164a697aa6f4651e631a507c94adb962059dd6ce772d78d75b2b9224e22e555687422b9a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/nb-NO/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/nb-NO/firefox-60.0b8.tar.bz2";
locale = "nb-NO";
arch = "linux-i686";
- sha512 = "b15763c9b95278ae9137239157341707e10c1b64a46f1502351438798a14337040c4aacd6dd7d6e11342b7fcc4d222a591f3ab74bcd8e7fc198bacd2345875f2";
+ sha512 = "95c2dcf9a5f9abd0c2f12e9a40f9f0828a1f05c20b981d0b6c66d85b6e57c689fc443e8ca7504f592baf2e89dceb7e01c0aa9bf34fc06165bb1dcdeeaf5062bd";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ne-NP/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ne-NP/firefox-60.0b8.tar.bz2";
locale = "ne-NP";
arch = "linux-i686";
- sha512 = "2566da69640f5e602244dfa5b773fa99500f47f4b88ce914e3a4703f7b03b55f6887b5a1e6596f5614e43d85c343accdd5a6797ab90954437140ef06fc29a2fa";
+ sha512 = "89c255dd709b9215d2fc933b6d09b0205495455ceceff96dcb9e2ea5b12c98b9fda258aaa12f5aa0a1806067cef1a8434c865c0d7a53c039b1612e0c8d548aa0";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/nl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/nl/firefox-60.0b8.tar.bz2";
locale = "nl";
arch = "linux-i686";
- sha512 = "be1ad5cea319b29d1bafab2aae668fcde126c440daf8a433442d44c539a07b3eb60d20d5af837ef0d820fa74430512ff5c0b747471c995ff208351b3d1e8cfff";
+ sha512 = "39e6043e5caff0925e1f9d475c3a3e1281023336eb79cdfece1a8a5a73d973589258719b517cd6686cfd69400eeedc7b744287286e055e4cbdcb188818c3e94a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/nn-NO/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/nn-NO/firefox-60.0b8.tar.bz2";
locale = "nn-NO";
arch = "linux-i686";
- sha512 = "a44149ec66afae54278c4716d3b39a519202fd8b388fafb5ba4c6efcc97b1406aa4307f5d583746d4c0c8df2caeed96b2d4aa3440032ee26cfa46e835ec780b1";
+ sha512 = "570fbffe7e1b70cfc0613e4b230e3dc0bace2225bf52b9b5ddea4812d1a9795aa385ff97e2471209e9a6aa3c5c03fa861741bc8f4dc499a2cd3ffe5cfffa0c0e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/oc/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/oc/firefox-60.0b8.tar.bz2";
locale = "oc";
arch = "linux-i686";
- sha512 = "0cc0a338948789fc370de9beb3982ed1c53e31fcd290473f08000356c0a3637e1fa8ad500bc1327c198dfeafd1f3d9527e6a74e80f6204f419263750b4e61e1f";
+ sha512 = "bb58207314655f500418321d6c04f9849a6263495b0406ad0ae53b43de395dec471ca401dfadd157307d942da3cfd94df8f112cdd4aa37ed249920fc64c8d4a7";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/or/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/or/firefox-60.0b8.tar.bz2";
locale = "or";
arch = "linux-i686";
- sha512 = "b39f505e618327022112a471bfb75345c0f9a489c268a7062e563a76829a4c216fe151726ef5d1895e3434131af573b825507ca6dcf53b81c78cf8813cbb9d87";
+ sha512 = "744a0b481604d7f5ce312f0d9cd979e768e5c53c4b251bf3e9e6d97c67450d951bcd5bf4f4e38e830a17a08e6fc98aee30fc862db27013909592ea1e953a57dd";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/pa-IN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/pa-IN/firefox-60.0b8.tar.bz2";
locale = "pa-IN";
arch = "linux-i686";
- sha512 = "f077c9c36635560ba319c573b8c2a2d560edbd9488fa0121c436aa37f76373eb081289510a0eadf112c5b44687f3971198a89537dc891740c739238711b2c6b6";
+ sha512 = "baa1bbbc3c813a168b742a4b20c209c66bdba60b799cc307b99bf08e8975c72deebd5ae6a9aad53d7172305eb2a09cc6292d9f9533f3318de4061a8744e9686e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/pl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/pl/firefox-60.0b8.tar.bz2";
locale = "pl";
arch = "linux-i686";
- sha512 = "3855c0a21777563999370dca08f4fc139f1e2724ae6eaa45857cdb0d6590a44d3abf2d24660549d7010dd64ca62de1f7e720a1dad35d45b7cdfa8df322193a07";
+ sha512 = "06840fb56bebc72b391907853474b29104107d7b7e2ee719ba48a2197cb166507f95d69ff215f29cfb806350e588c84d5f289460ae8743ba03c7d6c212b91b0d";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/pt-BR/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/pt-BR/firefox-60.0b8.tar.bz2";
locale = "pt-BR";
arch = "linux-i686";
- sha512 = "89f18a34c29744e336607a9de3fbdf7b461f9ec12efb90a56a316991b03ec33b7014998268089369263d8ee81fa4b7f0a1b007b87978545d8fae00ad5933b2a7";
+ sha512 = "48e4c56091a1cece6ac3f93e769760b71b8e79cf223ead1f2ed4ac3de89c309cf50bf9a6e86c9b7a22b8d84befee91d65d909c1fa2bba8b04cc7502dd0a57e5a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/pt-PT/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/pt-PT/firefox-60.0b8.tar.bz2";
locale = "pt-PT";
arch = "linux-i686";
- sha512 = "8dc5b13599b5666ef5bce95131c293a4c22c34dec80ffb7b864a387e62a36c904acf278c261340f136fd5528d098ddb0d16601b751acd2e407dabce7216e7127";
+ sha512 = "8a1af26ab745b2efd03ea44a850cdc8a9f2e4259de8c568db40e54fcf57d902b898eaa7240a5d2621a7f456a8ec717875d1a2e4abe4f8a0c67e9bcd1bd9b4d77";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/rm/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/rm/firefox-60.0b8.tar.bz2";
locale = "rm";
arch = "linux-i686";
- sha512 = "0b56c672bb4125289467c741f58c07f9acbc16233c959f1eff0eb0187f5ad9c08193a51373db3057207a14aed55f94d17d42db2d784beb896cd0f66c543d76b6";
+ sha512 = "784a233f3098ca62ba0edc67a27af8fceb49f778f500c825cbca54c595d9c5f4a918a16c9bc6d121838981dc006a28bf53d3e3e0531861f261f8ffeb638c0ee5";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ro/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ro/firefox-60.0b8.tar.bz2";
locale = "ro";
arch = "linux-i686";
- sha512 = "6ad35e3cdbeab355c54d62332ebef650ff417ef7a133fc7fd18f287a1e489e8ddeb2675532ab33efcbc560127e23139dff3a85ad7515cce6fd2ca22c673484b3";
+ sha512 = "a585d1c972a039f82fb69268f4a7a6daa9bcab77db9d045720f5a98cd788ee1be0128bb9f112098536975cfc9533d369e6b6b0ccbe5a1e43e93406eff45da5cc";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ru/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ru/firefox-60.0b8.tar.bz2";
locale = "ru";
arch = "linux-i686";
- sha512 = "8026c5bfcec6e8b11571af0a253854b087cc25737dda79083e6dcaf1c48f60592418a0f73c1966d963b7f526a6ce828a27d2e37312612fde12d89b667bd29db1";
+ sha512 = "93d5fd02be91c5e9b0304badbbe360b8755eb5e383168555712ab316ac353c2c8853a9f34ab1a028ede4f31b6b49499c5c31a0e992a0e349b6eafe6fe523285f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/si/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/si/firefox-60.0b8.tar.bz2";
locale = "si";
arch = "linux-i686";
- sha512 = "c9e978ca93a1e7120f3aeae2c300c8af4aff83a278717657ea1ae5cf4fb5707e871e7fd1d5c74da2fabacfb2d46c687954dddcc50ff585862cd3cbc6f41a1d46";
+ sha512 = "d5e197e5727cdec1d83b05a823e4379fa229673adb3d3c2c0125b028cc229747302de8f423bc0972190e01a5658f843c1baf3e1bbc268d541dc07889e8c8ef62";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/sk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/sk/firefox-60.0b8.tar.bz2";
locale = "sk";
arch = "linux-i686";
- sha512 = "71dcb1dfd06802377730c35e6e842a0591c9ec287efd191eca4566c73bd456c02c5d7cfd68a49c7537612a46bdb7c09f6fa5d6734dd1252544401a047f13a524";
+ sha512 = "6b285afe17533f9cff61eb7001b5099128bf475a999a393d21f94f6ef734b123824bd5fd6d3fc77437943145865cfbf3469b23104bcb509707594c1a5a718960";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/sl/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/sl/firefox-60.0b8.tar.bz2";
locale = "sl";
arch = "linux-i686";
- sha512 = "f46349d5207dfed0711ad2f7a858dc28c61f924d0272f6209a63d710f7bb6800930930d0b10b6493652699b4d139146f6a4e0a00b63d1d4ea4e58869c664aa65";
+ sha512 = "b14bf0b48de19048a6c8188ff064e4012055d3b6ff21eeac10a19c03b6aa85208e7dcc1f2fd28a01b6ffe87eecc968d62082e7fa5ae9b2e5391730fb794e8a97";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/son/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/son/firefox-60.0b8.tar.bz2";
locale = "son";
arch = "linux-i686";
- sha512 = "5ad4c5c10d4a01b2766201d1ca906b9f7112d58722253f6488bf552922e5fb2ee2d44cf9ef3ea74c2e62c062e8a6f52f44738b7e38917997e5e2c24d6a19003c";
+ sha512 = "771e77e3533c9273ccc08cd88dcda7a07cbf89cd1b5939daceebd24944b3c336c7c203ca1b0d1f7ea2236775099b0edf91d75064b07e4ca76c1bc7eb3b5bb816";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/sq/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/sq/firefox-60.0b8.tar.bz2";
locale = "sq";
arch = "linux-i686";
- sha512 = "47dc4a61b145a2ac4b8e91907d9115f67433d68aaedb841b40b4bf3fe234ef1972fa2ebbbdfa4a099881500da815b5c4d0ae37824aa21392fcbf4900469f0c5e";
+ sha512 = "75da529909fc77d0ad288f63d0e89103d63ce3f815eb8d713b43b712e122255ee4dcc059276dc8c53abb64693de650c8674302987999be5155c19001d8e95ed2";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/sr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/sr/firefox-60.0b8.tar.bz2";
locale = "sr";
arch = "linux-i686";
- sha512 = "0d2df7c1f41713d0ccc2a6436dea281d5e7daba90397c5f02f52ade4225326cc1866dafc0ac6c2dc57883b44bc6fb11f6515c1a18d15e138a6acb4e6924f3924";
+ sha512 = "a6ebf4ecaddbb57cca585eb0d2883336b98a0c1c7249e2db78a8f2042140d2d01c787444331f5c9d98efc7fc4b5ccf63ff50c4214263ce242b9c37c943a6079b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/sv-SE/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/sv-SE/firefox-60.0b8.tar.bz2";
locale = "sv-SE";
arch = "linux-i686";
- sha512 = "98be094aeee77d6abcea37e6ffe339f13df99ba557c5ec90edaf025d1adb21ef240fd963d056532bf0ab3b77f84e2a7997dbed6299db4f2785cdbb61fd529249";
+ sha512 = "e6bddf3f932171acd6560bb3a69129f71db73805dcbf01743940d652613ac4cc40875c684cb8ca46b6fd0b2baaf05710e18f1457ec41e9fe4fec08b7dad6193d";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ta/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ta/firefox-60.0b8.tar.bz2";
locale = "ta";
arch = "linux-i686";
- sha512 = "08f1e6d0a2492c2f4c423f025172ee29a2b5db49fdb04887664d4f800c2763a2c1dd7f4764ab175437527099c825714526620e6ff11b300bd61a3c522491b8ff";
+ sha512 = "863142d61d13085023eed212bc8fd24ef919e22141a560e06deb78b61a822c3af0d9f38c2dfe1574e80f04942682aa1bc0c10361c08e781dcf1ad8b4ef13b108";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/te/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/te/firefox-60.0b8.tar.bz2";
locale = "te";
arch = "linux-i686";
- sha512 = "538e82bd706abf3bc52053f9d388c1017f28dd94cbc44fc5255cd81f93504f413c2c65d218f1ed0916fdbe9b4ad50d8b2af4612c84f7115f305ba6d135c7db26";
+ sha512 = "40eb771258cfffb080462e465dc0daa0b6a3bae27ef6b5cf3e8b9e1fdec47ebc7c00f8af392a421971d2e3463456839d3fd0a5fb50d7226e5e27e3346a32b828";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/th/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/th/firefox-60.0b8.tar.bz2";
locale = "th";
arch = "linux-i686";
- sha512 = "0f21274153c4ec5021914889d7e69a6aa84057ad9c85a282f91957f0e2f14d4c4da30dd2c7aaed2d082c37c28555e65ad7ac1742394ab7a3cbe8ff7dcb3f3473";
+ sha512 = "08426effef46a0b26a35dd0bd37d5021a1968d2a7edfa7617e44bd561502722dc7a98c7fd63be853dc21c29241f0767a7ef31e07d3e8ba1241adc9537edc26d2";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/tr/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/tr/firefox-60.0b8.tar.bz2";
locale = "tr";
arch = "linux-i686";
- sha512 = "b34beb110fb96c03d8e19b93272a951f7e94e792fe2e1a5789c52e316a1de99020d25b246b38212f912b12d7b87f55cbbbac24d470a432b1a715f313cdb5f7fb";
+ sha512 = "c86de3b4b96d3520e7c4483e86aacaa1c3c56f524ac37dbfa7558a372c12130ff2b55a89bcebf3fc48d361a9e5204c059dd5ce70ca04343ae913b565eb4f193a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/uk/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/uk/firefox-60.0b8.tar.bz2";
locale = "uk";
arch = "linux-i686";
- sha512 = "7b2e7ef70597b6a0c0c66eb003927953d4416221fd967ccb259d3980a640b16b65ca6c6b757559baa010ef12e76ee8c92a255bb5cff4af256efb775179c24130";
+ sha512 = "2445e60d7dc548e1da0b79c4518bbf1aa16777ce1e944d8c70599c3c78ab9c4ae24a3c58c7c02734b0d0bf4f4bfe0a777671b82857a95dda69b8d584e6b77a54";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/ur/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/ur/firefox-60.0b8.tar.bz2";
locale = "ur";
arch = "linux-i686";
- sha512 = "758fb694aaa821c4234d5a05d6f1035844e2f30a6afb559198bd88a6fd27125178e933293302fb26b64789c141b965778ed5c36426b60930314738be98951455";
+ sha512 = "c69f7306906fdb8f7757e2e814103467c859aa7da852e3a2e77a8b10d37d327b78ae79fd0e9170593bf82e1975126efb6296a48683e30474bc43fbe026cea046";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/uz/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/uz/firefox-60.0b8.tar.bz2";
locale = "uz";
arch = "linux-i686";
- sha512 = "ed46f4b40f8140fae43b292371ee5b991afdf295877d0c92530f8c988096f28434b8b396def5b66e4d2c273e4d0fc2fe6177c125d9adc57e6eeca995d8916c1e";
+ sha512 = "b550a887851e2efa5c31da29b83b4152faac726bf64c2fc334ebb72b2fdfc8e74ef6ef2471e431a0efcf2491c22b0c98dd43d1d41373425b0e70216f6a58ada5";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/vi/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/vi/firefox-60.0b8.tar.bz2";
locale = "vi";
arch = "linux-i686";
- sha512 = "d961992fc8643c8bc8344e8c439628c5c8e786acf9875b38035e36759f8d194804910326df0caf0ba0af13a6aab1dd026908ca1b81e64f6e99113059508f2134";
+ sha512 = "0b84043d07e62e5a7ba38a769f9949cef05cde65852e90b21e27a09b3d40fbfcbee66c74dbb50e463b3f01e3a07b1c137496feae1856c1c3ba2f4c27ee17b3a5";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/xh/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/xh/firefox-60.0b8.tar.bz2";
locale = "xh";
arch = "linux-i686";
- sha512 = "891caf22f30eb4765f1c1d12dfd71e5155ba7334538be894317efca94f4d5b789e7ee9e7bfe6261f63ea0b6efd61d45d06e21c6d54c6a561ffc0673f7e725776";
+ sha512 = "bedfadc5e0c075c284f33a5463b207fd5056117c8de9b5d0b89134be6a5489a43c95e2e741688026b21b09f3e95d3216361bbf767533173d23d5b394025ea82a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/zh-CN/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/zh-CN/firefox-60.0b8.tar.bz2";
locale = "zh-CN";
arch = "linux-i686";
- sha512 = "e197199cc971e75839b6b60bba9379dab65e81ea0e93f007fee2e447d2e0b850bd2b7b380517a925497fbc6e01e9cbe8f1170629d3087c5a7c5887c08c1c2740";
+ sha512 = "3a6f79a49f183e920740d306483c697ce4b315b5a25e06c2b74faff74082d632078997f78caacbfdf7b97f598d1510fe1ad4f7a0c57e7eebbf543a263f46f279";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b7/linux-i686/zh-TW/firefox-60.0b7.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/60.0b8/linux-i686/zh-TW/firefox-60.0b8.tar.bz2";
locale = "zh-TW";
arch = "linux-i686";
- sha512 = "7de394922b2a14643b377e185bc91e4b72abc12fe65aff4deb7509445bdd3902b4c647277feabf6168f2dd63c6976f4cdcd42eedcf6f945648ad0a9cc64990ce";
+ sha512 = "c445fa9f12599a11aa5c13f5c88e5a510ac4ba99e852976504c5030008193e00194603971e1f4078d8e370f74bd3134b3702a5c97be3e6a0e4fb841e24b609e7";
}
];
}
diff --git a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
index 851c95fb1a2..3dd7d9e8e65 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
@@ -1,975 +1,975 @@
{
- version = "59.0.1";
+ version = "59.0.2";
sources = [
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ach/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ach/firefox-59.0.2.tar.bz2";
locale = "ach";
arch = "linux-x86_64";
- sha512 = "b982f2bd54312d66b7a1d6d6e775bad21eb1bce3bbe161cf980d03e55d4bfb5eaa217b05c16c72cd55165cdf7ee409c2e0a56143a82374f66c67609fed1464ae";
+ sha512 = "6242d81b96456c52a25af82049ffae548f7b5e14e47e2e643cea94f338e10027270d67b13c27a4a77fddc378b1e0869b5a0f897b9b269fecbe1d55336dfa4718";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/af/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/af/firefox-59.0.2.tar.bz2";
locale = "af";
arch = "linux-x86_64";
- sha512 = "fbafd3dcfc473b7ebc0d6230cff487819c37b6f41135060cceca72e8704afa147edf71405c1367137bab6c8013fdd98ad487bd7039a291f64b0b37eb468d5b18";
+ sha512 = "e2aa156326a38c4ac55b4ebcbcd460ce64d5e9abc210bd53d484cb97bded59bd73045fb7b3099ff3301f0262938ce8b4b90f5b0f807f73d9b7637a826a5055d9";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/an/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/an/firefox-59.0.2.tar.bz2";
locale = "an";
arch = "linux-x86_64";
- sha512 = "b7cf1261c2e776874ecb7c709d82f288e74d16770acd3215fbdcf44f6167544e626c1f809e4d68dac7a040e0dacba0095d24c1994fe329e5613c7a561ad652f2";
+ sha512 = "2946fdb675ac86e32e91b3a6cf4c26d14a5c977f22a587315a1c5a03db69f84efcd5057d7bd7f8b37e7433f53d915e9e9e5ab0c9d35739ce82e1c3183b1c4d5e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ar/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ar/firefox-59.0.2.tar.bz2";
locale = "ar";
arch = "linux-x86_64";
- sha512 = "16e308336b1ea37bc7aa18184e30eee4f1a073bc1dfe009c515a338f6412de6ad19ce96653cd58aa99d4ca34476e16693c03b01b7d5b1df3154ecab58fca157b";
+ sha512 = "2d497f930358fdd36ae5e708bd73e151461497f8715b11efd5a2b6c23b71fbf985faeeb2bfa5cc2816982e81f27091705f849923cb724078764b50fa684374f4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/as/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/as/firefox-59.0.2.tar.bz2";
locale = "as";
arch = "linux-x86_64";
- sha512 = "a6de3e421126adf95a02911db3140791c5a5dc9030e63327fbafd5fa3f5d6d81f4d62fa705c84a573788840e921ea1ab71e52d08df443405a6c8b2e69773e76b";
+ sha512 = "a1d51a99f8a5b47668c74414372d11120160f264762a3bfb988be2aaeb958ad5d3897472618a86a4a8422850c46f2895cf426fe9d064938c263bca96a9592eb4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ast/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ast/firefox-59.0.2.tar.bz2";
locale = "ast";
arch = "linux-x86_64";
- sha512 = "2bd15deae2a01d09a622df87ce5329adb5d5da2e76dce678aaee202eec2a7ddd0ae79de205d3dabbcd189fbd3aa5293ee551c31bb3850b3cd7e5c02d73862548";
+ sha512 = "dcd450fb49cce376f27e8135f8c27400af1c2cf139120602c000091231703db2cac791c82de157c9335fb09050cd4e4ee6013da3068b1527dcd9e0aedda16c5d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/az/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/az/firefox-59.0.2.tar.bz2";
locale = "az";
arch = "linux-x86_64";
- sha512 = "ba021c1531fbcc1c7f4b44f798d0046c39b2578fb4fa8f81927f7a4bb3a3e8b3d7de545bb2d818cfe1c095cb4387477d05541b5e5021c56086a700e8cf928b64";
+ sha512 = "fb004315a6ad15cc9ccb6d3b36901c4c495ea21fe146df3869711fc7ae8fb625a109fc416079e85163e79524bb987b366b2d057cd0808d0dfc61f78910fbef96";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/be/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/be/firefox-59.0.2.tar.bz2";
locale = "be";
arch = "linux-x86_64";
- sha512 = "ba5ac2b182f9534825468829b62359f5c24a2cfcfc0e27ff47469b814f746240155ceb228bb7fdf1855e378048806b70106bc0a3999b0cc2d4f69b28f7565784";
+ sha512 = "ba51003823e74734726f655cfd20fe968ebe5feacd0c985f7c8b2cf9766d7b68fe74dafc8baa0605b8fb46b22312a593218c5a57fdfabddea6a51491de74cc13";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/bg/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/bg/firefox-59.0.2.tar.bz2";
locale = "bg";
arch = "linux-x86_64";
- sha512 = "a1aff58b327ffa5dc62975e31e59306350bc8b4a2b38e5993aea4ca70fd4c0e295b7e25a8deafc9d354fc674d8c55ae917a110bfa832f54fd0067f4e2f35dd71";
+ sha512 = "f9df1a70c569f853b94c912d8cdbc7cf98a57eda9d461777f9f94c776f4db0a70b6093478ae1e7c87e80f37cfc5a39af3d2b37897ca60496f0d00ac9b45c1713";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/bn-BD/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/bn-BD/firefox-59.0.2.tar.bz2";
locale = "bn-BD";
arch = "linux-x86_64";
- sha512 = "fe96f073482488f66f0b7a46852d763212e444c80cba0f495e275b4c73711374949d742bd8ca0c69cb9e662e71b13b28084c004b3530f702445796d7c1716f0d";
+ sha512 = "85758a1ac327b067a59358d3faa0663244a24a4769ac0dfe03bf9dddd5a680503ea4bc9313294d9771bc7e4f3341904c68e0059d912b563aba8061dd0b6cc793";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/bn-IN/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/bn-IN/firefox-59.0.2.tar.bz2";
locale = "bn-IN";
arch = "linux-x86_64";
- sha512 = "31d8f589ec72a8ff3315fec3bcf9894ff6590768f2c380313c38efa2106bbc71bd11d54b553eca568cee0a7768f0e57b3ef8038d14ae2615fa1160145b123cb0";
+ sha512 = "895d63b62be42947e955ce426e03f7f8cbf8333d77fd3ff4ca6623db18cc740fb1ea6c41aefbc75aa79d60fca2f00b75f1b2e6b5b0bb1ddcec61f9c0772dedfb";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/br/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/br/firefox-59.0.2.tar.bz2";
locale = "br";
arch = "linux-x86_64";
- sha512 = "7ed8310521f981a4ff75037198a9bcde4fa07077c298c43f5baf532e84be017d604d27d59ae38c10d0c422a1cc793652c148e7c3944171044f4e9f267b64993b";
+ sha512 = "e62f445437a07f9fa070335328064355715d2e5ef81e5572f04a8644f47dd1c8cf8a3a7ac6fa88038c4e996229ab695e692aa1c0b0b3becf214579aaa76a5569";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/bs/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/bs/firefox-59.0.2.tar.bz2";
locale = "bs";
arch = "linux-x86_64";
- sha512 = "7ce16040b19d61d39936fd220351d6dce0210aa0edc0494d1956d1f19d7e027cb2d8d100940bbc34a77f05d305a5af3708d16bc78bd9b2364407bdb71ff05052";
+ sha512 = "d3adea6061daa0fd54d5cd7d9d8a00f8b88db8ed36545f9fcaee7520c1cfe58534d1fb57e8297fdc8b4f348bd6c728891f6a88f1d4d36f59a7f2ffbe0e4eb229";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ca/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ca/firefox-59.0.2.tar.bz2";
locale = "ca";
arch = "linux-x86_64";
- sha512 = "8f8ec749c55c4dd930d3e359b9a3003edddfb6ca36f6f65f0119d0049b09a4c3cbaf558178a327583769fafa2d64272099882833e2ef7d6956b606c05f8a6b76";
+ sha512 = "5bab1fe909680ff6eacf8fadc9aba7786d801379a2e79e5da04e973a3a218de8807c3d08f7641be554fd49c592028949e30b262fcda52413303d9044e161a60e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/cak/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/cak/firefox-59.0.2.tar.bz2";
locale = "cak";
arch = "linux-x86_64";
- sha512 = "41f6ae5d0aa44b90724e578d51ad7a3d6903dd74d30957a8786cddbd3ae427da0a453c1504a11ff13ab9dbb350829c1928d27ca0ec67e94995346e1414109e26";
+ sha512 = "f54a09501c7311890542d91b0ec96dfa5cb634685af4ef0fcc69e633157183f0c5ef906a205fadba6e132c9ee657f7161879a83ea382bbe400694e92c065de64";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/cs/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/cs/firefox-59.0.2.tar.bz2";
locale = "cs";
arch = "linux-x86_64";
- sha512 = "e219ec91c7346a72b64503f89088554f8d322968fbed0ff764d90df53fac06d4febf407773192530ad98d6c51dea23fb7c5f07e2b9099c736759a3b60b8b0a48";
+ sha512 = "28f17b2ef72356a058976da30960af1c8d4f2a02a946aec57b3671d71887573a98375eecca4a2f0f21b37bcbe0dd189ce4ee17ccb9af8fc60d63e9bd20ca44b6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/cy/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/cy/firefox-59.0.2.tar.bz2";
locale = "cy";
arch = "linux-x86_64";
- sha512 = "c6650b47193449b28e1d9f6420b59c1235986ececcf724234e26fd8168f52120274d3d8acd8aba036c494393eb635c0ccd68833a1961a36a10b04b1a1050bd7a";
+ sha512 = "36c8a1ac125a55db15d0bf7c8d8fed1ca3b0031a9421437b683adf7691fca281a499af6812cccd608e65bbcda3e1e94469b16ead2a9093708c8c2daf4ea7d588";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/da/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/da/firefox-59.0.2.tar.bz2";
locale = "da";
arch = "linux-x86_64";
- sha512 = "b66299d7f65fdde01b644a21524635806c703df27cb4eff928189d65285f12140926e8d20d1f83b54263b8b17b7621034ac1da5867fd28d36b2733212c9b65ab";
+ sha512 = "fd8c669362fcf945b6280d103d1b9524741993db8d38b78e494ae14106309999d09f4b13d55b8521612cac9e5dad622ef361fa16f197389405ff620b3eeac467";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/de/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/de/firefox-59.0.2.tar.bz2";
locale = "de";
arch = "linux-x86_64";
- sha512 = "463ebdafacbe1eb4d0df9d4843ceb41849fc2680404e1e5f4af563bcd4fc4410f8cb212a396ccfca874c37a4cb245bfef8de4aa9620d3e30908f1c94d262cf71";
+ sha512 = "32cbc3d054628a11959ccc7b553fdcf98f863a86373307bf8f558a78482de0161e533b71cbfc03142b0ac7aded506e53e821213e42c574d28132fd2f98a753e4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/dsb/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/dsb/firefox-59.0.2.tar.bz2";
locale = "dsb";
arch = "linux-x86_64";
- sha512 = "947dbe47ad286c57a62557532232a5e833cc6f7b6295699415c727bc30cd1cd67074a568c1f842e3e7b95460595b16b0a9c87e94f38a37f22b5e8db82a3a4932";
+ sha512 = "4e7c2f6b980dd4872850f7dfcc068c7e40a8bc896e27ede759029bf0324e1189e605ffdd2291d2e6a4a0c61e56bff6cd760b77e232209127e9a90a38b012e4fb";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/el/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/el/firefox-59.0.2.tar.bz2";
locale = "el";
arch = "linux-x86_64";
- sha512 = "b0d5015676280816cde17b217e078c8b912aaa87167317393c0c20b8ebb27460ead4a4656587bda19b93fcf4362e07ce11a0f5410cee733ab44bc2b1f0a1f093";
+ sha512 = "ecf743c23ef70e92e1f7ddfd2f1862b5b60b446f0e1020778a79ec11af94ce5f03ffea9b0b7048a7ee0861602d5c32f4f4bc8cd4b7171ae306987e1ca9993ddf";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/en-GB/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/en-GB/firefox-59.0.2.tar.bz2";
locale = "en-GB";
arch = "linux-x86_64";
- sha512 = "94864d56052d619d495c527af0941979470a3c7410e51c01e5a04be565a62a29a6055eaaa9f5b4bd6b443fb87702f52c935b3071b4ddccaf97a494fc2256728f";
+ sha512 = "ddec1dfcf976f93d1eb310ccacd9e04dac8e0b075d37b54be1402531d12c11ee9dce2be7d0bfa92c9b654192c71781fd2631cad24c8153275e786552b9ab11e6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/en-US/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/en-US/firefox-59.0.2.tar.bz2";
locale = "en-US";
arch = "linux-x86_64";
- sha512 = "ef8c7518bc9abd2f730efa428ccc418410c7c571b32c06633ecf82c949aeb3e4006d888362ab511d55db98ee2d6e152f9ed7cecdd976272c89f8cc5957c9132e";
+ sha512 = "3257084102282621f15207af04e6dcbb98887b13a8be911069572c151d8ad96f90e7c083e571b4ecd4d4d4ff3bfeee1dc539042d8e5bc6a0fbd7f36c427da402";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/en-ZA/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/en-ZA/firefox-59.0.2.tar.bz2";
locale = "en-ZA";
arch = "linux-x86_64";
- sha512 = "7e172fd957b000d77e4ff832ebbbf6b46a192668289394370ec95f12e5f319cee59da140bb3a809bcb7e161349c32f682083e7639bfb3f6fa5cab53ac4f33716";
+ sha512 = "35d2f29daddfb6ba439b160644869bf806ce7a2e36c26d4dc9ef2ff2eb5079e0bda9095edd727fca9c64c3be5a5646e56892bd7ff76b2c67300c1ec7f074d98f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/eo/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/eo/firefox-59.0.2.tar.bz2";
locale = "eo";
arch = "linux-x86_64";
- sha512 = "369e76a861625bc9e757980c896fbd1563e5127ce770557aa7e81cd80040146af62c526ab148168b2a078a9c16432e97e96ca4fffa5db5945c3475353cfc894f";
+ sha512 = "867ac54d47f2266ad357d1666c9206c00e45d7184f6b3a0199c2474b63829ad1d41e95491d2c977885e878d36e2d7e93d215c53e629886e7cb04abc198a06e42";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/es-AR/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/es-AR/firefox-59.0.2.tar.bz2";
locale = "es-AR";
arch = "linux-x86_64";
- sha512 = "a053bba1fb77617ccd9b2bb1595ebaf040760307dedc9984d3ccf5212f572835f9463611f38bce684e71728b04c4d3e484cbe6c20875b0703d39c3fdcddc6cec";
+ sha512 = "3d577099cb28dd4c4d1349141a715783215510d015f7b2b02739d530222ece5229ab3e6cfe481be4e9d1d17c40aaacac10af9d9c2be37f7956620924e56c87e8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/es-CL/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/es-CL/firefox-59.0.2.tar.bz2";
locale = "es-CL";
arch = "linux-x86_64";
- sha512 = "618eb3fef5f3669bc104ba60b76cf280503bbb4f2700341e95a6024fb3113c56388fcfeca294e3fffa3af5db15d639c0e7613397505c63509d7f248e7a1825e2";
+ sha512 = "821738beffdb260b6b3d8b5c3a1395b6b7d58db6b05a744899c0eb83a291855152f5055c3ca6d9a460bd032d5e72829198cb72dedfcf6614aafe1d7b8189dc26";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/es-ES/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/es-ES/firefox-59.0.2.tar.bz2";
locale = "es-ES";
arch = "linux-x86_64";
- sha512 = "f8fa78438bf7561d422d9187b16c1284df2a79c6f8cfdbdcd838501b5f2fca1d2e05bfad6d59b9484f46e4dabd2630706a8c47f3323534e24ef4c8fbc4937a56";
+ sha512 = "10ae818fd27acc38a5386d06cd7d890d4eaa44407fe6334b81cdbe3f43ded90be72e749f075e165105e9a6f02e08014aabd7cd783860d6790b67eb2889718e5d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/es-MX/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/es-MX/firefox-59.0.2.tar.bz2";
locale = "es-MX";
arch = "linux-x86_64";
- sha512 = "4dfc8c70cfd5eca191ed4feaaf8c4dcf2dadfd7226f1ebd939997e8bdcd7d867afe0c27a51cf5d578c380665023770b2e54110dc2af78ca63a2a38165d879665";
+ sha512 = "239d3c287eeface29994c8c2bb9bacd739d638cb277e18e57dc729e35cc0c11f6c7168673c110206f3e931c850bfebaf1a26d4f690d8f3ff6f85a61147522941";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/et/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/et/firefox-59.0.2.tar.bz2";
locale = "et";
arch = "linux-x86_64";
- sha512 = "9710192f0c87ebbbd68bf336f1560007a86f9c9d55ee3df7311725f7c81e1415f5d5346378fc86424cf1d94e51efcaf791318f040c3652132dacce59a8c2668b";
+ sha512 = "824b63c3c596191f1f1c60734bbed70058cb9bf71959dbba759a2b2e75a76d0b0c50ead203c093d568a18bb622372ae112ac22da0a33e4cfe89e5a42d7329b04";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/eu/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/eu/firefox-59.0.2.tar.bz2";
locale = "eu";
arch = "linux-x86_64";
- sha512 = "47a76627b97b2190f532ac82a6684787a6cd45f4f831b2af6315e6242367af68f84be7965cb6d91df89d8e43d04655c0e41231eff0b86cf329ffff5b26a56dc4";
+ sha512 = "01e0991d3a1926f41708353bd98e3aa00d3cc71dc7635b9cce52c3699aa5ee670818db76e9d82de4afce338165fa01bb0e88c3e8b86ab2d92d1b8d3845183510";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/fa/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/fa/firefox-59.0.2.tar.bz2";
locale = "fa";
arch = "linux-x86_64";
- sha512 = "3a888e43b737998938a624003c6eca6362aad95d0e13203d655d67c4b76c69484240da43d00e24a809e1fa40b18249c9549d52794f9cd92469a028ddb4b585ec";
+ sha512 = "726100abc12832418c5cdc15b9e9083d88d72a70a0f6a1a567ce781173a554cc4495da0e53539185e6ec27143bae98e952a5002dea91fceaa5f8d8e51b6d6a2d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ff/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ff/firefox-59.0.2.tar.bz2";
locale = "ff";
arch = "linux-x86_64";
- sha512 = "365b907bb5d720874d206cc2fd3e6f21095ea1681a0bff5ffe51b49135bb3b3984e5cbb0a50951afc5bab3ef2bd2ea55af29912d25dba8f4680bf6bc25f24b05";
+ sha512 = "1a0d97e27008ff5f3bf3fe85cb14c303320a3015cf928b2ea4c2e115a5a1cfd809743d801157f53d6ffdfcc359c3738f2e2a0e12e5ca7ac8e3f2b93253654e8f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/fi/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/fi/firefox-59.0.2.tar.bz2";
locale = "fi";
arch = "linux-x86_64";
- sha512 = "9361b0554f221e13c4146f9eb0df4af64625062a368ff828d80350e932ef0bf6f9cd87e3399bdb42ca5e7ca0dfaec9357d57a345a978ff936958ddd074ac6c67";
+ sha512 = "ba0278c06463d0ef44308f46326a3fb9dfc0cc4243086dd9acb856e54465ad672bcfac68afd9ff81d08a1d0c924a044e0ac5afb299be9d06b657c159f6c8ceec";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/fr/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/fr/firefox-59.0.2.tar.bz2";
locale = "fr";
arch = "linux-x86_64";
- sha512 = "61123f188e491c32e9b912026554afee17d83ed8bb3480bc6ed8f10f46049e81f2444f6850c5a9f7841f9e897311ac0955105401fd2661ee703243c6e204fd60";
+ sha512 = "bd8ca7884937574f0d6b4dc5399771135778aef06bd09aac275ca11c2a8dff580be45ffbea5ceb58f8baa7d7007587aa07c3ddedd407f0852c1a3940e7ccfc8e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/fy-NL/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/fy-NL/firefox-59.0.2.tar.bz2";
locale = "fy-NL";
arch = "linux-x86_64";
- sha512 = "4575949552f1e0951d75b2f3eae5a6ea5fbbc6b69f0ba5d82b69922209a46b8f9701112cd1dd61b6c892eb1f4e6463e28874f3f84891e3eca3de0b52036ad429";
+ sha512 = "9e5fa467a99cd7a9ab102eb2a50ef14a4402d03ad3dec5b6d511c7da3843e779b1492b1ba22cc72f83070ff88353ffdbf1a9d26636462c0e3bdaa6dccd6a6200";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ga-IE/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ga-IE/firefox-59.0.2.tar.bz2";
locale = "ga-IE";
arch = "linux-x86_64";
- sha512 = "4a05d48803502ee435ea3b50f38ed262aa57048b0f013c7165af37ad44494a1aae7f643e14d5aaaf7a2d5a1085a67a078e70ade9e614bfe33295351686661ccd";
+ sha512 = "1226faa2c14196824f31da863aca7d076972a47d71a971847c09c66d268d07a9aa2677fa0a7e8f11f149b77261636d62c39e7a382db3abb2917bbbac74330d45";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/gd/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/gd/firefox-59.0.2.tar.bz2";
locale = "gd";
arch = "linux-x86_64";
- sha512 = "df9dcc72aacd44ecf73f0ddc34a6d97dafc9deddb35075273c2b958b2c23ce3a346433b050766f8b83040c495c2a84b454cd7742cdf6b59b69894a94553c21c0";
+ sha512 = "eb0dd803b7ba91574a044503d2edbf633e08c834f8eaa5e546975d91ac7254b3fd4357710fe4627d742a2ea3e64f568a5ef1a893363c516f958e4a153f528f12";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/gl/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/gl/firefox-59.0.2.tar.bz2";
locale = "gl";
arch = "linux-x86_64";
- sha512 = "3f55336a02249aa06674adbe8f378ad2b1a7b99164608f04cefe8c642ecffd336f9f370fcc190debeb89f97f630032d41aacb46e03cfd09a9a20bdf5f207312d";
+ sha512 = "e789fdf2452043165df90c83ce4bc0ca641366ffe5f89026bb763480973073d79c097313b744c3b2017be3d80f690d18459d1b8969538ce310b802163a2eec45";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/gn/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/gn/firefox-59.0.2.tar.bz2";
locale = "gn";
arch = "linux-x86_64";
- sha512 = "9bdb650bb25ad573a5722595d7b062b370d79ef6a9079354ee467ae8fdb8e319d3b666bef0569286a868e7d64453b2c69098945539a259184334910f70914211";
+ sha512 = "c368f07013b7b4fcc74e88d68a07d5d0a1fb5133991fb343d5b1a86145108e14a762962f3a3d5c7188d8cd75188cba7f26bee5555d3a5e7cfb9741e2e11ed42a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/gu-IN/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/gu-IN/firefox-59.0.2.tar.bz2";
locale = "gu-IN";
arch = "linux-x86_64";
- sha512 = "5f2621253981d58aa643da76dadae44da76bad3f50d08c35c43d52da5b0a8521ee4c5df5262558edb4b2bd817985aa02d6ff908f326d99ea58dd4d96b9f04819";
+ sha512 = "34795309248224a31ef64cef9ff335f357505684f38edc06b9365dc0da98c5b96aa38f21e317e5f0cff0d3d3fa94ef7f8aea6c27f67501aeac68c3112b63cc43";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/he/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/he/firefox-59.0.2.tar.bz2";
locale = "he";
arch = "linux-x86_64";
- sha512 = "ba7b0bedc2f8146dddb7f0a8a2c357dea4d23481e85f23e5d1f820da6b9c6ea84298ef609967e62741a2f9b57a6c4e94b0a90896daccb80b888313c75359879a";
+ sha512 = "05e21abbec43babe818f28f2f12e55159e413b0e6e0871fee76f50c380085ea129620864642d3d26e80e039a50a8434015ed348c51341b6d87190c627b90bb82";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/hi-IN/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/hi-IN/firefox-59.0.2.tar.bz2";
locale = "hi-IN";
arch = "linux-x86_64";
- sha512 = "7804c9b6bab169fda70db8ff3f638add9fc22a6b8f9adde30482558e97d32946085258bfdf93b0e67a35709c474fb3aa028816e7f501dd554ef05a282f656815";
+ sha512 = "f6964340a688305ac3855efa57280e3b5eb64f22e11445d76fe28edbe04216318a16c1fd02009b8a66ccc2ec689d8e0bc374e485bc03e964dd5b65ad27e535e4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/hr/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/hr/firefox-59.0.2.tar.bz2";
locale = "hr";
arch = "linux-x86_64";
- sha512 = "e97cd1b68d5a1d471edfddedbc05321444880dc9ad2910010c447515ace632c25b0516ca1dbd529d44777c8f9046b5a660a768bdb35ac5e199d1685724c6a7ef";
+ sha512 = "e0966ea4bfa256eb3a255eab7c89fc9073789512941311863199d96db4014f657acbd1e403a6a4dfc8165dc39d54fb1f9ef48790e942eadaf90f0cb7ffe15ef4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/hsb/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/hsb/firefox-59.0.2.tar.bz2";
locale = "hsb";
arch = "linux-x86_64";
- sha512 = "098842a0e8226eee716859b7e1bd1919a2bd251bc368ff6df58c95b556dc503f15186bb483503087a7e02d785453edc77d081e267b08487c0ff874361a82ee1d";
+ sha512 = "e8ac60e1b925e7530884777a4ae05037e5c577fe6dc834ff8a007f473846b052290787d3d2f0c19b56e573385b6471336208d360c4c13a3ea3dd686429c28fe2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/hu/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/hu/firefox-59.0.2.tar.bz2";
locale = "hu";
arch = "linux-x86_64";
- sha512 = "cd6846f6268d96f84d405aac06c11322e188da3124ad848faaaaac7cd562c004655a8f7732294b0ce2ca42597c82d82fe8b1eb65dc5b0b659f7be342aec648ca";
+ sha512 = "737634b022794a37223779592ec948015a90c6c96c952acff5821c3af9c060e7fc60c988f17d87d5faa822fb860e6697e233601c7fb910ab5596935fce12ba49";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/hy-AM/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/hy-AM/firefox-59.0.2.tar.bz2";
locale = "hy-AM";
arch = "linux-x86_64";
- sha512 = "3e4f4f536c4dbd4337e301272fd433e4e0ea26976f2a5add8a0d90f310e2c3fb14a4b558c556214409788bc2be09d36bdbf95bc5385260b70408f00ec71c30da";
+ sha512 = "53d3a10011e8cbd22bbe86c6ed256775de580f7b8094ce30d8337268362cffa2df85267fe11432f659a012047a164a63d1c143014c0dd26ff865760119223f5c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ia/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ia/firefox-59.0.2.tar.bz2";
locale = "ia";
arch = "linux-x86_64";
- sha512 = "35adfd5eaaeb3d40e32d501ff49979e4db878b6fab5598d64c3943cf57f846e439ef88693b39a03df65367436ce3efada9c367ee5de20a1d769620b00299bbaf";
+ sha512 = "5d1ba2fa31d3c5ee692d3bf8ae0995ab166ea0c31044e056b4806bca141d34f93ed5117630c311c072d22cf65d12efefa812203a8237464cc9a285c236439810";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/id/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/id/firefox-59.0.2.tar.bz2";
locale = "id";
arch = "linux-x86_64";
- sha512 = "3203f599f6ed436280143aaa563780c64864488f125462a56241785f9e7d6d48b2d3fadd0366fee131d575d8dadc8ca4820716a03de4c3b23eb0f0b033cc73f3";
+ sha512 = "b94a086208cff6fa7b4b3f7eb4d681e77d2042ef1c6b21af322ef7316b8551344aa72c3d7a39b86826b8c6d69f847b9d20f60143a048ee28db88847dedfd1d37";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/is/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/is/firefox-59.0.2.tar.bz2";
locale = "is";
arch = "linux-x86_64";
- sha512 = "2100f728268efc1d2c0f96e745e2574847aa844ef4366dab44f9f0d89e79372a2180d530c7fdfe627e17644871b3a71387037057058a0ebd117e187343b5d1fc";
+ sha512 = "9767dcbe58dd91364b313f4b7b8f85e1768148080ff97220fa1dfb3dc8d5a69e6fb8fbd607a92411d5f4adbfb856c101bc80f922b0b1ce8b63a79039e84c329b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/it/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/it/firefox-59.0.2.tar.bz2";
locale = "it";
arch = "linux-x86_64";
- sha512 = "abef6687c0e0b90f9857e29d5b82ded6dbc0b304dcabf2586e1328bbfb9948b37f582a5ac1c58cb46026ed674863c437a15872c46741fc4e8d0a4a4be80cc05e";
+ sha512 = "f8ffccb521f97f0f18f70a0cd2cecc1c31162072bbbd929a1952823275d7b7d07f36e64bf6811e1aaba64b880c432b1dd342483b9ad5a594971a0bd068c45197";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ja/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ja/firefox-59.0.2.tar.bz2";
locale = "ja";
arch = "linux-x86_64";
- sha512 = "d953aabe2368ebe9f944d91769b6e0fe18b1b5ad819040705283af6739b03fdf6fe9f3cfdbadf5231c9789ce62dbbe831035f8776f570e0be1e483b6eea578a3";
+ sha512 = "bd97cbffe8c4c1ca0fd8e44615a6e04dc5929c8ab896952911a04da3796a9132f797a4e32ee262af7a2d8bad294a30e11349731306d86ad18200715408337437";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ka/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ka/firefox-59.0.2.tar.bz2";
locale = "ka";
arch = "linux-x86_64";
- sha512 = "52c4b6338dbc79a670b33e97d7996daf1ef72c22982f16840ea0cde0e6ec16eda6eee1688e6eafa2ce6eaa9cacb33ceb7196f2923c81d4e1fdb3af9c200b9c7f";
+ sha512 = "1b5a69053263a0571227e614e0ed05ca1cf8bfd7a6294fb82778c2bc99b209fc68b7d644cafa223686ae2a54ee125036a91a3a847a753c194982c0f2327b3b49";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/kab/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/kab/firefox-59.0.2.tar.bz2";
locale = "kab";
arch = "linux-x86_64";
- sha512 = "4832c730d37b5890a85091109ca150b882202be9028b448aa57fa8e74a2f91673d2c6be4e963235c0453cbf070a996423e64f7cd93caed973d5c5018d26d7a4d";
+ sha512 = "33805bf3976c9ff6699767ef69336f06eb86f08b540b54b33c8997b6af42eaac6be7b9dc8f29d3099ca9530209516ef84e819fcf98f3a7bef3e8d47be8d372b2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/kk/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/kk/firefox-59.0.2.tar.bz2";
locale = "kk";
arch = "linux-x86_64";
- sha512 = "efb2fac05f337f22c326822efa17f7063dc71180d54621b95c000d6c86bf5180d5ecb012ab72cef23177cf07d7f46f507bda862f87dea507a4c1be026829ca1d";
+ sha512 = "c2bc89ceadb7ea2c81ee2b4d72bfbeac8a34cd1838f0c2201d7ef0c819e597b87a935a0e6be0831b997ecd290e286de7a1c9b903a10daaa5dfc0fdec2309b260";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/km/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/km/firefox-59.0.2.tar.bz2";
locale = "km";
arch = "linux-x86_64";
- sha512 = "c7817dc8cd3e78b15708a863727627ebcdc6ad054da252f273a6e68cc914f5999fd6d7495d64586e1d218c068c9f38250db0ae54944a67f1116e5a12132c9dcd";
+ sha512 = "cb1919f31651b38a77683850077cccd73c27496e1f9b4354accfc35f294d479b92549ebbfa173fdfadf95b03bbb45cf1baa0c8a4e51f132448ffb9fb2293a67b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/kn/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/kn/firefox-59.0.2.tar.bz2";
locale = "kn";
arch = "linux-x86_64";
- sha512 = "9ed4c6d0a6a5579d1cb32e35a97df2b05d836e5eab5df59406da4d86ebae6374c38649232c2dff849865f538ce4264d8f08c7fa6c778f9ac65362cd47297ce51";
+ sha512 = "4293747292be73ccf60a19744120f9cc13b45a7be0c5de4243dacb5a2258eb88391d6dc6b240420ca5097ff5f5e2d5d36240289f6a5c51ba7d0fd31729d342fe";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ko/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ko/firefox-59.0.2.tar.bz2";
locale = "ko";
arch = "linux-x86_64";
- sha512 = "f133fda3bfbc59f895ead4257a097102af10954f0fb7ddd6bc9337a520641d8f1a26bd86011c0922c2770e8191e68d96e46d56a76d498c7a44c713207a9f8585";
+ sha512 = "1a4723d890649ae29e9030ed2fe3208e44ed10adbe35c25877003a6adc21e033278874241bf5fc971b93f94d33fb4b503dda438153a8bc80b187b584841423ae";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/lij/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/lij/firefox-59.0.2.tar.bz2";
locale = "lij";
arch = "linux-x86_64";
- sha512 = "e4d55a021271186cf3553781aab1953c9bc53b86c5d8550c6d45bfcf2363dcf32def20d411c4df10aca3e7c2a79ee527b23e248910ec1bbef8d1e15793e1b831";
+ sha512 = "564260546bc6436dc47ebe6b413abad6d2d25dd7a64d9b5ddbd52fdec49af951b9ce26f3aeccc330aa9601605bec7b3b1f8701668d2b01ee06a228f723600fc1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/lt/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/lt/firefox-59.0.2.tar.bz2";
locale = "lt";
arch = "linux-x86_64";
- sha512 = "a08315a4134181e2f8c559e0c70ff05b1455f85a85d5b5b06c5b8cc70bb17f3761468af42c27be476ea3e342365262f18b98c523e35576425ee8e5ef8df9c362";
+ sha512 = "0aa6b9bb99ae8284f7287def5048af21372d03211a279f2226de7a739523fe189b3e06e207660be7ab35751b5ccc6aaa1b53dc293417971300a4a8e7cc162b6d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/lv/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/lv/firefox-59.0.2.tar.bz2";
locale = "lv";
arch = "linux-x86_64";
- sha512 = "e6e62886b8bf972668e3da6452bbaa970cd16aa5593c8a3d765e0d784ba755e17641a1d7e5410ea6474484eb14b3b6b18b69e3be38f2e2ff30890afa18c9a405";
+ sha512 = "f63955b57e40d2d49d5d1b276ad5b2bdd5122daf476c560dc64e82afa36e4a649e384957c69609e74ff96935004ddbd45c8043a27991d082e59e0f42e7221aac";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/mai/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/mai/firefox-59.0.2.tar.bz2";
locale = "mai";
arch = "linux-x86_64";
- sha512 = "a28537a457989974e11161ae84dee2de28d783447c0a0a6b5b03a36fcd1650d609ddbb40ed063f0c68149d314b1eb17dfe92d5396c855794d45a0bf8e3491c7a";
+ sha512 = "7e857033b14656e972ecbb6f60454cc63f79a9c775bb1fdc669f44af3bde4e1d04ceac3f7028eaab17fccd8136c417d937009b6fc0e80c45200b279660924bd5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/mk/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/mk/firefox-59.0.2.tar.bz2";
locale = "mk";
arch = "linux-x86_64";
- sha512 = "da601ab25113316cb9ad44d2a8bd0eba23800fc97ab18ade8324048b1d7c757c51db9fe039992d18fa7b78846b5be496d9f3439500448f21d66a9d3a335479ae";
+ sha512 = "8f7bf3418145af3ab47372af8e131b4a8b350dcfa8a7f74720a96812563327a4e4816976c2fd655fbaced91fadeb98489bf0fd043e103e5e0923b9c2ee408188";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ml/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ml/firefox-59.0.2.tar.bz2";
locale = "ml";
arch = "linux-x86_64";
- sha512 = "eacba5bf549f1398f561ad574775af8c749251f9d4a57a2c91400236cb2b72b00e429d4dcd4597b6dc6fe95a629d4b56c2c1776e03cf5d158cbc85743bbdd443";
+ sha512 = "b9e65dd54f8b4c1da28f6079938320f9943ff94ea0a0a7857192805ff84b53e7de6b762d05f8a66b6dee9f8586623932c5cac7163db2829fe41a13b3c73c27a2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/mr/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/mr/firefox-59.0.2.tar.bz2";
locale = "mr";
arch = "linux-x86_64";
- sha512 = "e9e9b13cc3c4f48871d5b73ea88aba384d0ae792f7c2bb49f41d5b7da36243c108dd96925c122abb0b202ba8ee7591d8edd783546402c2066f5459883a255897";
+ sha512 = "80e20cc4d30dd2ce2a7d5c40b4c98271a0c0834cff7bf201c3db8df4bece056becbe71dce7056d24b837d16889cb15ec73be7e853384d88447d9d00eada4fcd6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ms/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ms/firefox-59.0.2.tar.bz2";
locale = "ms";
arch = "linux-x86_64";
- sha512 = "edf6153c9e18e620558e283086a96d49e484a74983b7d5823b1c17f9276f3c41d4282a46dc120a181a7e53595e1434f56658d34b2cad4c97e30753c07c899fbf";
+ sha512 = "ab4e6a3c244a7e1c4683f58252d02865cc9e8be51a2fe189d8bf555c968260dde63af130a491a8c3b093776a1d1d6b883e32b4054c19a20a9d1856685b4cbe35";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/my/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/my/firefox-59.0.2.tar.bz2";
locale = "my";
arch = "linux-x86_64";
- sha512 = "c153e6cc2bb3ea49de8dea3661b4c5ec23193cd40e68da8160108b40fcda6717e35e7ef3bd2708ac2e47014b224e53f74b9183cb2c50f36d517f1a5ade425d40";
+ sha512 = "aef82a1dff4adc9d93c967ca4fa3e4601772e8b748c3d41a08d2893667bc661a0c640b02450bfa647d35b9c097919ce90a4a4034f83cf4ec51d2341651205aab";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/nb-NO/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/nb-NO/firefox-59.0.2.tar.bz2";
locale = "nb-NO";
arch = "linux-x86_64";
- sha512 = "1b94a618ec8f132bbf5b246354da4b424a682fcca74259b94f1ff5cb12cb0602d327dc7b9af2814fde45e5da829159df316442db6388fc45bee8c8255418a1ee";
+ sha512 = "edd9601c678f8f551fa379d7f3c31d2e4c68434d9d3401b40f2945622e6c844993fcf3aaf010ec5b3bc13eb8c8cbe951d76b66a908b4824526b8da368361a347";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ne-NP/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ne-NP/firefox-59.0.2.tar.bz2";
locale = "ne-NP";
arch = "linux-x86_64";
- sha512 = "552aa2504e1d5c15a413a0e7e47b509d37a8b424be9ec4371f0920a9ac8b6ada2cafb9adf054b695499d41fc9b606f6f0c95d99104318cee1d69998ed7bd1812";
+ sha512 = "6d7a5d81e0551e675d8dee4be7fc0b8a39afb37b74949d408f197562bb8d7866706dd1b9fad60de4410cac9bc91a4ecdb92aa75a60b2fc2e2b7cc51fc9e46c60";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/nl/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/nl/firefox-59.0.2.tar.bz2";
locale = "nl";
arch = "linux-x86_64";
- sha512 = "2449c6f7cb6106e7f49b5160ecf973a73882d653c68a8e5648a31595367ba41dd93e334f3a67e69958f4bf429a17069bdf5d66163f2be14e86068a30acc29045";
+ sha512 = "3d4c3714c7d1c7d4865bace3827df94068bf0cfa4037af130cb7ce0a5f6cf7eaa0e37d091fb36758b13f52a5307288e5480ddcae50bd8645cec527481c03d7f3";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/nn-NO/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/nn-NO/firefox-59.0.2.tar.bz2";
locale = "nn-NO";
arch = "linux-x86_64";
- sha512 = "c80169f8f2cab78efa8ad06a6e3dcea41359bfa2b4af7baa034b88c934d27243eb5b20b4ca4f956707472daaf1e315ee4d34e5abdc25edbdd0b8aa3915c14d5a";
+ sha512 = "753e792e3402a5b75043899a5f50f5926ce31d2439ee1eed16193932e962338cddd974194ac94f7aa1ef0df548d95f901a50988abbf9f3e9820f89ac372e39d0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/or/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/or/firefox-59.0.2.tar.bz2";
locale = "or";
arch = "linux-x86_64";
- sha512 = "48ebeb9e4233b303bf5300c9d7413c82f9340a7f1fdb4ce23cd9868ae6c8c7b61532535dde653fec0f9a56a3b8d4595d451c3abddee75f6aeaa5b2450f26b0d7";
+ sha512 = "ac0068afcdd2b6bf5416298e1be065387606bb0b79cffa364aeef9011535ca5c155d1d28fec0715a648f065628efd2c847f47785ac7f27415ceda1902da1add8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/pa-IN/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/pa-IN/firefox-59.0.2.tar.bz2";
locale = "pa-IN";
arch = "linux-x86_64";
- sha512 = "4d2caea086ddd56544b59793d3e2422940d64b16a623e9b9717329a639ce8a89f9e69d7c8ed9121bd08d692462c99316e1364d89eb8d1cbe978c67f99bff2469";
+ sha512 = "fe77072b374c34f5026de80ffae16fd4b30705969a795079ef9e81dcf66dddddfe01287dd44bb4f0001427935671d2753d22a8b80469f9c4e896e215400dd9f1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/pl/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/pl/firefox-59.0.2.tar.bz2";
locale = "pl";
arch = "linux-x86_64";
- sha512 = "6d10818fe57a2b10bd5cccf068f42ef8e2d949a79c4ce6e4b2ae088944f17dee8ce14396b2e3f86d492e3ce31780bbd96ecd4bfe39cb8e15dbc70cbdad6a3927";
+ sha512 = "e4b05ab04418e65880f989d642478023bde4ba5ce17627f806b223d19005b4e6825d8a9d5c532c878a397b3cbd8220c4aa4c2627b17b83fd6f4acc395c0a1923";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/pt-BR/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/pt-BR/firefox-59.0.2.tar.bz2";
locale = "pt-BR";
arch = "linux-x86_64";
- sha512 = "b2a8732a03983b00e7e606099a215a8b6545e093e243662988400e059757f6699571a29e6c24433b345de5e47484d19c08685fe1b5410d71bfafe023d3bbc669";
+ sha512 = "9d67c1264b90dc58ac62fa094792955b75724791b7941354d5836cecf2c5c13ec279cad12f93287e524f0f0dfc2302f68f7585dd783998630007dac806f7e2d3";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/pt-PT/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/pt-PT/firefox-59.0.2.tar.bz2";
locale = "pt-PT";
arch = "linux-x86_64";
- sha512 = "ffc7c4a8cb7a092ffb86ff32ff8d6e54b4c49600ea9c8ac77e337f4c71b283adced784d23cfe8e69d034b9cc22f118756af44fc5a22003c77c33135a24197b2c";
+ sha512 = "a241e003b6d1a3537b5232fc793aa6dce194433028987753bbeaa5c21cdec58b326e12bd4136656cb35bae3cdece5dac100f912151aeee7548420de2d3875e93";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/rm/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/rm/firefox-59.0.2.tar.bz2";
locale = "rm";
arch = "linux-x86_64";
- sha512 = "ca174bb51554e73d647207c62f4f17de52b47ca6960dc13f45becf0a0e43b73edcc7925a913fd42e3b151acaeded5bb68d6cdc6ac17f3add2bcdecb8a4b20c3e";
+ sha512 = "87ada5bbfeb43e3a42f1eaa44c58e025f66ddce965e1c97de8ca0df190ca18106eacd2d1f28c959a104e79df583672206c047eb79c51a32f431f8cb6fd68bccb";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ro/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ro/firefox-59.0.2.tar.bz2";
locale = "ro";
arch = "linux-x86_64";
- sha512 = "4046be435da5d23a46ea007ed04c35cc9431d22858211fb2647df1ad4e00e84476544448ca86ce353b889a8db92fa1723c0598e7d560fc9980b1c7b82fae1552";
+ sha512 = "97c5d69e1e40bcb779ce058820b0a4afa4000b3c12170c63ecff1ad4b5994f71ddf36c49536280edefb971fafa6be52a3b436a405ca9a1762aa08d2cd61022c0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ru/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ru/firefox-59.0.2.tar.bz2";
locale = "ru";
arch = "linux-x86_64";
- sha512 = "a7b4becbe30e27c8bec3c71af691a03b916774a77e4626a89743a7a7deeb07e9489ba6e276e80b53becb78e5c2575465b6f141f694b71bf9cd68dd761c0442bb";
+ sha512 = "74fb10b42eef3a2391aeab0e3dd1ce463b58cadba5c42e2fc8a5e0bdb1f9df122aec65a662c9ecb8a14b1ee76bb060c64de93f116a37d207b4cc0887ecc0e2bd";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/si/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/si/firefox-59.0.2.tar.bz2";
locale = "si";
arch = "linux-x86_64";
- sha512 = "a9d8162bd8784be11924e9cc0567ea720b87232d175dee18212dbecd8280fecc610a964df77a3499c5f25cbbd466344221f5b071c8d83c3268d936e108adae48";
+ sha512 = "d63503345ef7896e9d9a3ecfc80395b6ced67c38b02c19f7afcf94a9efde01f3ac53f1d581b8151d78eed6c7f8eb69f9edccaa3be49133aa3abf2a1eb759a02e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/sk/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/sk/firefox-59.0.2.tar.bz2";
locale = "sk";
arch = "linux-x86_64";
- sha512 = "999229f133193f19b49b9e4107515963fa28b524323cbf88a2d13542568997a91af911c42a3b353ab3d9dc4d05e45b8e2c9e08b4e6436da6292073365cb5db0d";
+ sha512 = "1020baafadd4a1de8118bbdf4e281c704595730937d3aca9c8185a6ada54f4a72b8efcc7c493200c32a6a11e7121ef52d7aace68c47784eb5d17ed7fdda32d60";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/sl/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/sl/firefox-59.0.2.tar.bz2";
locale = "sl";
arch = "linux-x86_64";
- sha512 = "10ecfc7d338462aa350aa957b3ca6c0de5eba93fdd680aa2dc406bbc0cbad821854c9a45dd12c72403393d7f9447d5dcc86981921f0eab4ce3c06549c642e08f";
+ sha512 = "a93e20498b5b3a2b5d19197bbeb48c4502217e44a25c48372f8855a49f762e89438262ccf5dde1fea24af1199bc8cc5c935b1bc886e0bb581d698d10a59d60e9";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/son/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/son/firefox-59.0.2.tar.bz2";
locale = "son";
arch = "linux-x86_64";
- sha512 = "c0cea7d6ca475896c0b2b281a4a0df33311eda128d573b38b89b8f1653596d8d16bba713b8cc8bba267afc2a5cf734aa578532afaa3197cc92c5cd03db030dd1";
+ sha512 = "24411644b553e6f3c305b8a893a7bcd4ed59568a6fb7001b999be114a3e88f30d40ac6f3351c28b3287bd2a9e6aec461c54433caa45fdd349aea07e83401fc2f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/sq/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/sq/firefox-59.0.2.tar.bz2";
locale = "sq";
arch = "linux-x86_64";
- sha512 = "45191b5974de941748d38ae74e87b135ffc813d5f207219b21469ca7804cb4b6ce9e7fdc1892bc6a6f4fc15d0935a7e770e82baf94f1c31dc77d1108d5f25cba";
+ sha512 = "40ec8fdcc4fcec937a710e5d19077243d0ff5cd832bd20365817e4f4ff1cae5eeb2a664906ce7f60a5184fb053735df5825ffddce41276797fcce3a11548f4db";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/sr/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/sr/firefox-59.0.2.tar.bz2";
locale = "sr";
arch = "linux-x86_64";
- sha512 = "e931f1d47644d6a770f193cea61148445d8f43eaf5670d7cc76b3b115db15ccd4fc0938a59e7bce237d2d05a924660a791f4b19d44ccf06572d814a692cb9173";
+ sha512 = "e538596cf0de4a9d8af4e801d7c17d00c1e63c56775cef0d087a77e320cda2269cca74f0c73f679208a184c6cbf4b20c56d1d222e8846f15fc4a91c16ae3ea5e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/sv-SE/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/sv-SE/firefox-59.0.2.tar.bz2";
locale = "sv-SE";
arch = "linux-x86_64";
- sha512 = "95a8391082341543c2044a72d7f52de39767079957c99ec75c6daf95607877fce0ff1d3c42175964516cf93ff632789647f420687d51e717d3d51a280f5c9272";
+ sha512 = "3466f482ec04f5e8827f437c9456908f04e78c67ffd299b841f2f82cdc2c38a61a566c8d85405312c144aa5c45698b5f6e81190aaee739adf4384f95c81f9e76";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ta/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ta/firefox-59.0.2.tar.bz2";
locale = "ta";
arch = "linux-x86_64";
- sha512 = "428e2269126ce169f0e83ba1274d4a11cbad2964dd6bb31e8f3c3afdfd3968fc9a06d0f92a77a0bd745f36810a526a75f8c670489cb8a28bfe086cd04819fb0e";
+ sha512 = "7598994ca03afb1c2933b640298453a618d140791fe20255789081babb0d9788c4f3ab34d5ede82e1d688f5dc0486fa0f842f1d125dc5a955580d14b1efb6489";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/te/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/te/firefox-59.0.2.tar.bz2";
locale = "te";
arch = "linux-x86_64";
- sha512 = "34c0b91b14d70670ed0d1624a5d6b93ead775151b432add41bc13544ac2fc5acdf3ad9f8f26059655effc8f5507081461f737289011b41bb3972edf7dcf933ec";
+ sha512 = "759be69dcd9b795f7b1b8192928e27799061d83d86e0234cd2a1fdda0d922a7a9d958b19655bbe976d409297f2e2fb2d2a6a525f90f77fa53071d510ffdc6438";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/th/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/th/firefox-59.0.2.tar.bz2";
locale = "th";
arch = "linux-x86_64";
- sha512 = "bd7bce3cf04674cd6423fcf7276bbcd3585c061b77c692cf33680f122b09d2c5c29ba0a2d8ec857425d9741ffce1ee23383d35c9b7a620aef5579d59dcbe0049";
+ sha512 = "a46d7eae4a2670615e100707ec3e340d48502b63d6f6f98d4a3140c1bc9d0826b44001bd8ef940c4e786ba5d3f8a00e350faa18d30fcc7663f9c29f20e7a20fd";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/tr/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/tr/firefox-59.0.2.tar.bz2";
locale = "tr";
arch = "linux-x86_64";
- sha512 = "580604b9e4336aa6eac536d4514a41603890ceb6e9630609b4a36cfb0b34952f3d273ba1d100ea1b5509a6dc8dce9f10a335bf5aee7a0c6b133abaae3c4c7352";
+ sha512 = "ec5ecf9c76315d1fdc508c94023cdd60edaeba44ef6ee49859ba0689413819f11f54c9ba787000a166b0fd7f628e3c2b42f42c9014f9e7823da257d0abe88cba";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/uk/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/uk/firefox-59.0.2.tar.bz2";
locale = "uk";
arch = "linux-x86_64";
- sha512 = "f6c7a9fe068ce1f760a7ca45a82dc5dd28c7e054823e3b9dacb6d00d628ba56c8b2d831a36237290d8803b3284b90cbd29c3ef685cd0d4973ee338b91ab541d8";
+ sha512 = "430cbe8281803ca0a4e124fb62a8d2dcafb751ae20441e22dbfd45e544cf906371eef4889f16df5c1be91a4eafa193303e053f75ff15fbe82a836df3ef19a5ff";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/ur/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/ur/firefox-59.0.2.tar.bz2";
locale = "ur";
arch = "linux-x86_64";
- sha512 = "41c6ae7d2f80704754865982d4b64252a9a04a222c5cde279708960c8a2c167f68805ca2302a86f03ab55ba93afd069d4c289434dff8ec61b245123347e53e78";
+ sha512 = "b293eaea548f8d1e96087e111e96fa35940254477599a3c2aec9bbe005347cdcfdcd79f9e3e6d22829fe52b091d6d18dc04ce768724f9709a6e397838974c45a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/uz/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/uz/firefox-59.0.2.tar.bz2";
locale = "uz";
arch = "linux-x86_64";
- sha512 = "5974e06472aa75eb2b9cdf1494d8bdf0f394d5a7493e9f77d631f47dbf0a0047dffda5fdbe23f32dbe65612b9b77caeb7c3f15887cc51fa7c2609d3960b9d32a";
+ sha512 = "dc0a6b771469b89cca470a50afe47c642fe6bae284599c876c51c2c5834147cec435508c101f33d76d1e4ce5760f52f3a59592495c82db314de426a9602097ab";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/vi/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/vi/firefox-59.0.2.tar.bz2";
locale = "vi";
arch = "linux-x86_64";
- sha512 = "5b35c3ab9593074c8f88f2ad34db0e161c075d8b04785ea658a8ba49172707e9776a5882b291645d0aea5e333870723b5fbbe6c7957f7ee02c9674eb237a63ee";
+ sha512 = "6f7b9acc584e41be34b884da9b9f2d7aae602958cbac9843d73dada11d1a584101e603f9111c24983dc3ca0b70462091cbcf755c93b7811469b179aa2b3ecc60";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/xh/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/xh/firefox-59.0.2.tar.bz2";
locale = "xh";
arch = "linux-x86_64";
- sha512 = "8ae8b2f36cac9e1aac1f44a786d6992ea6b31dd83cfc22d1cfd75d057ae429a35e1d61272aac7ecd24d4dbfd8448f54682388e4e708222d1c2f6c6e54c0b0da8";
+ sha512 = "7623715582708bf3e18ce924aa6e1d0fc6c8bf38503691d3ede092070860db3a116b2f39ee1e467d286e0566bad594679b489b39d2c5b5885321982689b8a56a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/zh-CN/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/zh-CN/firefox-59.0.2.tar.bz2";
locale = "zh-CN";
arch = "linux-x86_64";
- sha512 = "76e09c7f0835270ed7788330486e1d00d10e8237e5e6b5af9bc2de227fdabb958c697c11f74d7df5b6876339adac09b6bd5e87c9d31b3c7945ffd00ef0d7527b";
+ sha512 = "9d0e41df6cf6a7244c4aa29913ac664c67463ad50b91ffa1e7e345601eaeba76d8553523b322ae477ef0f0c5fce55ad2e1cf5bfc5fd777d9433ebedcd2474d98";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-x86_64/zh-TW/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-x86_64/zh-TW/firefox-59.0.2.tar.bz2";
locale = "zh-TW";
arch = "linux-x86_64";
- sha512 = "87f298e06f0b58500231367da1e9fcf19f39c25cbf2b4d20980f45947539398f6f394833a6baa676c6ea27f87da26e5f211333c76ce91b40e7a3e2a6c6a33fea";
+ sha512 = "c65832ecb353527c6b9e11dacccc9e3d1cbfbb16db1872c8afb4472f632a0e2b4f994af43144e430aa8c8ba6aa6a579d3c024c9111fcbfa6531a4b2b7377414c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ach/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ach/firefox-59.0.2.tar.bz2";
locale = "ach";
arch = "linux-i686";
- sha512 = "3d922035f62c78c21e997f0b9e1265c8f9f8bbcd53d67d7042d8d30d418d54b3bc4f5b8fa056149d8c8dcd54afcae1ba3e418fc0b89ec19b7c3af27239a0d4d9";
+ sha512 = "468b25a5e90b385514b0f486bc3fd09a1e7c8c7230b8e31b04dc4bd18027396078b525fc5b51c9747e642d1bc60be49a7e2cfafafd528d95f08033abd12b0757";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/af/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/af/firefox-59.0.2.tar.bz2";
locale = "af";
arch = "linux-i686";
- sha512 = "d85f3a911741b6dceb35ea6f2daab06a6258e66b07b79fa7fba4b1c277ae8debe5fb1c45c3d9eb07b910a172ff94baf6e4520a6fe755cdeaf19204b4dadb1f42";
+ sha512 = "a3b92e792d1ef58e029fc097eb354940094c8a94da97dd39b1f69610ffdb9a1a6527b01da2b6716c6c199d85886b6e05aa084bab30f8a2d0ba33ad4c2f6c36ef";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/an/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/an/firefox-59.0.2.tar.bz2";
locale = "an";
arch = "linux-i686";
- sha512 = "f1be5c00436a1b613fe46f5adfc19eafbb0639687346a3939437e10e64a7ba0c94b9656bff988a07210be68c7e57e982e9280aa03a0e69c2cce9f3501846ff20";
+ sha512 = "9fcb76d123b657b9eb7c62c53c703ea27afa2f41b5107cd67dc01923ffb9dc6d3f334f5d801058f05925b18afea289eac03dfc3c2b188bd2059f4dd0c40710fe";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ar/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ar/firefox-59.0.2.tar.bz2";
locale = "ar";
arch = "linux-i686";
- sha512 = "aa2ce3ec19633a86d998132fe54eba30e52fc29d5b1dcde1c3197aab0bcf0a9f73caac3662d58e5465923edabcfb0559e8f23bff7f13b5cf89a11bde7d4b2eb2";
+ sha512 = "eee65b88c2269081dd04fbb37d360b0738e6527581e60dfef60093719a3a15b44d0d594321b4865a35784d2f378e8d86f308736d8be76c1cb7d39152b916bbc8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/as/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/as/firefox-59.0.2.tar.bz2";
locale = "as";
arch = "linux-i686";
- sha512 = "993be32e81700a094358999edc280a0e0999efd1478eb03f0924c0fa6b8c6347e69e0408725b916a80f350d3fe93484bfe83137fc0ba007e7f7a0f41d1c12e60";
+ sha512 = "f2e54d00258b6f1c55bd8a1deed5e9c9b1e6f1579447ad832f348b50bec8fce66e50c78b2ee6e05c885359a6b2b1f9d298e907fe99478536967103708143f24a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ast/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ast/firefox-59.0.2.tar.bz2";
locale = "ast";
arch = "linux-i686";
- sha512 = "ed49c1ea33b0057a8b6cd406820c788248016bede3983121503a8c5332fb305837add00f7a5c75ea0aeacbda16873cb519980f440d9c11b0b54b01c674832132";
+ sha512 = "4f23798708447a4a3801b392a2ac27207df7d2b722291d3836163b3900c7745404399cb700873cf6afa70121c429ba31bbd8b0b1f597e8c91b2f970d0d6421e5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/az/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/az/firefox-59.0.2.tar.bz2";
locale = "az";
arch = "linux-i686";
- sha512 = "f02af6b9865d4f6469f62c1168bc33ac1f2abbd0a238d38524643dc5fd84de4a48b146928ca7c6d82f9db3e55ebbe861c29850a0a3aca3b3c1cea632a6938f0d";
+ sha512 = "2f12c45870d5ac1a6baea455bda954cf3b112b0a3b46249a23b7cfc064c6eb00cf0ed2952deb220777cc084fa2345368b95388e143dad6e45042e7863c6c3038";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/be/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/be/firefox-59.0.2.tar.bz2";
locale = "be";
arch = "linux-i686";
- sha512 = "5b82b010b2ad960b8281e0cc016f7125bdae1b1f3b93a581998c4ef891ecf49b6b075949420d595ad644aa5c75ac6c552e7d26086b5ee6e807df5179ee6ad36d";
+ sha512 = "f70af6a6f464b6098802e65226b198f670e5d9ecb2fd56f9c375cabec1e602211c4cf7d80e430f961bb56694cb1d546aa116c7a5aaeb06d13319ed41e3e69ddb";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/bg/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/bg/firefox-59.0.2.tar.bz2";
locale = "bg";
arch = "linux-i686";
- sha512 = "b404b3f97a9dc8675e701ea2ef8bc0a57b40a2390d98573434fdc82097b12abf28e9179de3cdecd0e3c03f0cf78f47cade1e41795eaafc113ea2c954a197a1e1";
+ sha512 = "87377e96a52ed8866be4a3e6ee9c20c6d8acfaaccb53de0d2a4fd553060166c20b3677a2cd3322523f3b3f7d03618e6a6c27e485113184698207cd4b88b7e699";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/bn-BD/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/bn-BD/firefox-59.0.2.tar.bz2";
locale = "bn-BD";
arch = "linux-i686";
- sha512 = "a992b1cd5ae8c2237acc97bd1f7e61dfe2abb3b93c270e64d2ca190d8ebb84c84f8a45de5cfe7eb853f4e3e99d79eb19838c4d0a02c73f13795fbc42e79ec04a";
+ sha512 = "0d275fdd76d8ee85615f67a11ef46bbf8b718c54a09cf6f3c7f2336098e0bc282caf429a4b228e31e7c3622be41f41384af174da9fa856fe36dc46271f55ed1f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/bn-IN/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/bn-IN/firefox-59.0.2.tar.bz2";
locale = "bn-IN";
arch = "linux-i686";
- sha512 = "4188f40867dc0f23b2c52d59e569b7f030d4392bf7715d35678c69a29b85b0573bc3de6701bc550735881b1055bc66258f4c7090e5f4277ea494a60549ad98d0";
+ sha512 = "b77374481f21f37e246eb325ee41202fed9916ce36065a88f51e28fe5a015e2df341417b3420d2bff0df93437a56adb4e1fae0422bb094918a19157c655fa34d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/br/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/br/firefox-59.0.2.tar.bz2";
locale = "br";
arch = "linux-i686";
- sha512 = "c69b56c43aea2821d9b085c7be10d3cd8c7f609b8c053d8fe8bbce5f719001e620bc56d1e70fd85c77e01501a0df466cbca62e2e6ecff78196ad91b6c30cd8cb";
+ sha512 = "ba071fe6a668ebc7c00baec930a568a90d03c866a0b5f0011b25e8427f40fd32d54fd770e94610da43775a882eb27eff6359c67d65670fa0fc6179e788cd1394";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/bs/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/bs/firefox-59.0.2.tar.bz2";
locale = "bs";
arch = "linux-i686";
- sha512 = "77dab75b3c10d6ec24ddfa436dc9a6e037da3d692912d0417a6781890eef992cef250e8a38d5c1d03045dec7a073d2658a3d17a1f3e9c6d85a58c93ee7b4e19b";
+ sha512 = "de70dff3aa71422c96e17e637bd56c18d4b74c8cf1ef5834f1f077249f6d7d1e95703f55063737b464916b2aa87eb4469d197e3fe772d168d184e72979712e65";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ca/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ca/firefox-59.0.2.tar.bz2";
locale = "ca";
arch = "linux-i686";
- sha512 = "7fdf1fa6eb06cc338d06d30e8f1ca432cf1d7930a534c6c613e0f1278ccc70f1e81f74e43cce1e1b865bdcf2b9bf10607d73fb18d51e796c731a735f1e729dcc";
+ sha512 = "e197d847b044a9ff4e09b67c64a2e4bca5eb2a1770ed4cd9ba965342106b7ec809950d611367308fe2c556c4b413640f050cbbaa00532402d71b59d51c4b60c6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/cak/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/cak/firefox-59.0.2.tar.bz2";
locale = "cak";
arch = "linux-i686";
- sha512 = "e4e35ea7e81190343337439a3fc95786f318c1f0dc338f2d816a9845b596473067095d0f3b446087ca8dea98dd2aff4db1c8e9a8c1f8fc5d304644b06e0042ee";
+ sha512 = "a716ff884d1d5260b9ed830877223eff731ad301c1349c9f1dcfea5b9dbed0770269c27aa8a336516270386c4b896a87721e3a5e433e92bd579e0d88311271e9";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/cs/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/cs/firefox-59.0.2.tar.bz2";
locale = "cs";
arch = "linux-i686";
- sha512 = "48288a7ceb3fbd579511950b9c6d5fc133c1fcea8435994e804ea423e0cbfaf4780fdd6317bfea37a958f800a79b62792e01c7aa25a908fe62b21684d6fda060";
+ sha512 = "d66e5f440b2bcece18013499129462ed20d85d9b27ec803ed27bb7d4302d2369331b2320970d256b6e61ba77d93e362171ed012843ec926047c281223218a25a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/cy/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/cy/firefox-59.0.2.tar.bz2";
locale = "cy";
arch = "linux-i686";
- sha512 = "ae9fc1b0c8d9b46b86b6ec9bcfd97798fbab2410c6ddfab531e364871be70a3a74c48936bfec085220bc5f37397cd83fd31da4a709f337c57a8bd944e635e7c7";
+ sha512 = "87c2c1056bb56b5fc3d1fa9aaf8a1d99a5ad5558016b3953d0dd1f7c70b989863fd1d66f6a8d7a0d14fff351dee8f436b89d5dc593e610721068fe187055aca4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/da/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/da/firefox-59.0.2.tar.bz2";
locale = "da";
arch = "linux-i686";
- sha512 = "9ea4433a5c295abba639faed9681d68fb8976b1935a131ab763f6ac12f32afab2c1ead3709ad741e04c005b19fe230e13a93334434c76a033df69d6891f960a4";
+ sha512 = "6243867a2a5a7a30176c4698888e7998c35ad84790a75a86808e6490f013990890a8137579928573564ac7dadaee6efe921579423773a0c25aa57db17a216eeb";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/de/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/de/firefox-59.0.2.tar.bz2";
locale = "de";
arch = "linux-i686";
- sha512 = "6d864350a270efabd5258157c78ac6b70bb81677939bfd381b6996fb672da240b5c7ef5780819729d3ade763b9eb5a4222c361394e48d9c1c9eafc54795be93f";
+ sha512 = "d21c6a44def103db09a072ad72fc42d3876fee9095c5b660fd491084301e2d3bbe383b4c7f9419d666dbf280bec59743a034b4f576cd618142dc7f498fc69e5b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/dsb/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/dsb/firefox-59.0.2.tar.bz2";
locale = "dsb";
arch = "linux-i686";
- sha512 = "71e5608acee3d2cac48160e71739540c6d94fe5523415d9b639a3b493910347d38f6230afc0febb444e35838e3d402fb5b3018cf437eb48632ca1d8b873ce0e9";
+ sha512 = "34446bdb17e81da9ec3689eac248b2ca0fb11ceff7a153bb502a5e0d62a16d2d4a090f9a29e4ff61ae1f87ec68f2fef94be53895a409678d14ad99331058495c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/el/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/el/firefox-59.0.2.tar.bz2";
locale = "el";
arch = "linux-i686";
- sha512 = "37ec4073075a29403e4637b48a74bed5c470ad9722c28cfc3e1d7aa5bb63034a0660fcdd2f78d8681ad21b569bc9060be05f4e1cd3eaa3d347ba0d2304075eba";
+ sha512 = "f5d73ccbe24e30eed81546b6132dc70f08feaac68dffb749ecd7af14052b343aaa4de7bf0ff73924b28b4c5b86c29ca1f6a69caf85ee77d4c4088b925547825b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/en-GB/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/en-GB/firefox-59.0.2.tar.bz2";
locale = "en-GB";
arch = "linux-i686";
- sha512 = "d2731ba3dad5298e07edb49b608f04784312e6d7e0d1219eb45dfd38a65ef62c1f9b94eff5f97bf35d75ba36cce8a831db6964251873572edc60656a87ea5ff8";
+ sha512 = "4dbf56a7aa86341c2d08b799d76c7e0dde04d418539657f74e18a088df29d390ee10b60c1b9625bdf46ffc4f458b6ca3e86aa93b1a2d948f10b7d7bb6ac250d4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/en-US/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/en-US/firefox-59.0.2.tar.bz2";
locale = "en-US";
arch = "linux-i686";
- sha512 = "d56c62b111bb629a30e9de4098a9bfb11b9b437bab572f3e588f4d565d86979c64ec0bd4be4a54b6c1d2718e5cd91094ea046424c9e85952a4ddac2c5de8fc24";
+ sha512 = "15e93c9d069d0e4761520cefa508fdd7e06cca979ddb9cfa1762d70d104f5758fdccfecb531c6099f9372f112abc88dd273a29a67f720cbfa1be5c440378363e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/en-ZA/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/en-ZA/firefox-59.0.2.tar.bz2";
locale = "en-ZA";
arch = "linux-i686";
- sha512 = "5fd28d0239dd61c54a062a0f6efd5d0f406bcb483cbcc111a631199d430839129dcdba84b4da66d35f1c5052d530da07e3bc8fdd7f177a366974bfa54cb3303b";
+ sha512 = "772ca9b0318e1175e455d2243ea537a5bfab8d84541a7ee306b3670084240b9eb165935f41ef874650c3b1f5e4632ad2d5c0bce3f29a05a0676ed3ddf133cbd0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/eo/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/eo/firefox-59.0.2.tar.bz2";
locale = "eo";
arch = "linux-i686";
- sha512 = "327b89fbc100d238f2c1211752ea1a95d2a5c33cdbf8fba35b44ff52f2b63f2d05d84c4c714090693df28c0057e29d047278fef6d4f7e5989ec207495bac3134";
+ sha512 = "cc3c98e80c343b065ac8f6af6875d1b2146113303ebaac42c5866d03ff254aebab2cafe398aa1fe38ef8c9d4fb8ece87345e09114145e06a2a7d6c783f1ef601";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/es-AR/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/es-AR/firefox-59.0.2.tar.bz2";
locale = "es-AR";
arch = "linux-i686";
- sha512 = "676b58cde2394983a7be06039fcd1150f6e73c95518f5889702cf71ce780c4994629c5452924354ce9826aa5e0726a5de75321295f55004afd10f727d456659d";
+ sha512 = "fea909cd16c4558ed05602cab2c3a22186d727da969143b77deb9515ef4d87dd41e59e7fc6a322e924f0b809b6205f37297576106a50b5896b4920cdab2e4749";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/es-CL/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/es-CL/firefox-59.0.2.tar.bz2";
locale = "es-CL";
arch = "linux-i686";
- sha512 = "274acb52107294b4a65f22114da6e79d4bcb6b06a126002a371c983a926a2ab9882896439f94ee2d2ded5e5955d42cc4a87fc0f16c8960e42d406b773e2a5fd5";
+ sha512 = "5015cdb3a1d803abed9a143fca7a118a239e37a38a65898de7ae60981066113f270260fe8e9b83822385115c2b5e378cc58ed68949ef6297e0f7fc1e28c9c8e8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/es-ES/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/es-ES/firefox-59.0.2.tar.bz2";
locale = "es-ES";
arch = "linux-i686";
- sha512 = "d23192f6cbbad388d8f3183876a176197bd82ea0bd596ef03935eb020d5d6dbb94692335dbfc1b98e63097b7c66521154b0b3d013cc769c83bd48883646e44d8";
+ sha512 = "81fe49a2f31913c030cb801180daf730855dedc5f6adbd39d7d1d8a4b359a3aeee063d7fef0ce35641f163f5f8c965603bc549a1ae3b2458682c390d16a0faf0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/es-MX/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/es-MX/firefox-59.0.2.tar.bz2";
locale = "es-MX";
arch = "linux-i686";
- sha512 = "48da06b532fa91a6b482b57a8cbbdfe3ee938b353433d22af479786129bed784380134ddebbfdc58bf06f5fb81629ec982ec5e1d9b51e92d75bde44014770fa3";
+ sha512 = "24bff972bb2f27530b18cb7a640f2f85190977725cd82b1e86c1b47578f1d3058fcb7387d19cb2e1dece49b72c17048829bf6a66aabee2592a4b9503e3c4e546";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/et/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/et/firefox-59.0.2.tar.bz2";
locale = "et";
arch = "linux-i686";
- sha512 = "71ec513f6b3dba3145c7b424c8f331c2108d0420a75a91045b4dfa4529448923e3ccc8fcb6b90cc01d8acd18e2164755ace78aae2d8da5eec056222b4dcb1b00";
+ sha512 = "d60b637f9d78a2b9e53dbab8e6db27aafa701af3cde841e056158d3de53d1c0c1032c5381f7c388edf59b1476078e0dc8166e82f39f7c006fc28c5d897f0e1b4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/eu/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/eu/firefox-59.0.2.tar.bz2";
locale = "eu";
arch = "linux-i686";
- sha512 = "b978c35a4ccf0efb9023f22cb05ae9696c94c8a642e3deded9c44900c84d3c0a58cfbce95aaafe7e99ee108db07a6b07a76813f7c2c3d971757eca817dc10ba6";
+ sha512 = "47ed51fa6f27e8b7bd9dd0c3556af3d85e6b004d5c6a5868db8c844ba97a06eba4d3998295058ef92c4a49dad31fca0a3c24b19603e1fafccbf6b7d461596080";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/fa/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/fa/firefox-59.0.2.tar.bz2";
locale = "fa";
arch = "linux-i686";
- sha512 = "a67f89767cbeb3b37012c4a1ee64c53e74b30de6c5a14bce2fca15a16ce11a048ccba4e55f88ce7f2a888b7248df51fcfd03e0b0715e826f6b936db953313994";
+ sha512 = "8919e1daf708630e397200f09b3e9810b3aa40feb87769af5e1f0ae44ab49c63fcda1982cae5ac4753c600164b34f533054e055293a87e5a8fcf55809cda61c0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ff/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ff/firefox-59.0.2.tar.bz2";
locale = "ff";
arch = "linux-i686";
- sha512 = "d7b7d9b86b90d5ca609870313b2533b6feb048060902727ccf34dbbb4f180f7fdd69683e34a7483804a1ba2dae8b264ed3fbff81b065083631b234a2893d4716";
+ sha512 = "b0a6f5a974750f3ee5b485872d1e7c51a3d894c4118de139b718e85eab94624be302ce2603233fdc3a75df3f12242d4d57c9a96ca1f429bf9e0613d2b299ee86";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/fi/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/fi/firefox-59.0.2.tar.bz2";
locale = "fi";
arch = "linux-i686";
- sha512 = "7c555f5ebe3fd74eb782cf9f3508c9714844cbaaa3520bc1c3b60bc8d2840874850e5f92bbd1db4f2dcc4cfba211f4aba485307f898f0b47d4b9ec93b4346ec8";
+ sha512 = "7dc300de36cd860d566a9b84de0ce2c4fdd5eeda4bf641a45e40779e98087c7dc881d2c623c99f8551c08bc84b98b1ab4547ab8144b1a22795710f57112285c6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/fr/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/fr/firefox-59.0.2.tar.bz2";
locale = "fr";
arch = "linux-i686";
- sha512 = "edf4f0669c732312c27aa40f4aca66aa2a676f9b019cf1d35d0deef2ab4d27f5441ca9aafb3ed896e20538f765de4715b67a546e4364f384e05748cd495b3f0c";
+ sha512 = "ff793e4873e8895259b2657d613513404953d27d81bcb0c26ac97c3c2ef2c1ed8db3ec909ecb744dcaa7d194b4fa0660885daf96932270f1382742dd55e0f5b0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/fy-NL/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/fy-NL/firefox-59.0.2.tar.bz2";
locale = "fy-NL";
arch = "linux-i686";
- sha512 = "58238d57335a18e63230fcbc67f83059e2439528f3d0ac508750dcfad4a2c48296e43c53ecc203258f917f87be78fe50dcafaabf88b6183d5d790761bd21a7ff";
+ sha512 = "cbb9bf54a401aad2bc8bb869f8680ee4c00e5ae206ca9b7db732c955ee256e4ad226ccb8ffa320cb3e08aaaa787032b3dbed06aad548e733ba43ec87ddb52bb9";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ga-IE/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ga-IE/firefox-59.0.2.tar.bz2";
locale = "ga-IE";
arch = "linux-i686";
- sha512 = "fe4865df72926342c139309d34c8d42187b39e098848ff32b7a0bfa21798f2d1e6dc0879dcb17ae150d977942f355c532de7d402fca3226010de8812da0ffbe0";
+ sha512 = "bdfc3de17be432cb55219bf3f2a3d1371f3fe4776f452a0fb37ce4f5259fadb46487778ec63f6065dfec2cce43758be2e5ed8c5f75394f1604f3318e96f56363";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/gd/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/gd/firefox-59.0.2.tar.bz2";
locale = "gd";
arch = "linux-i686";
- sha512 = "68f94b2511f72a2049c07a20d120fe282a6b85a3f4284e9695ab5cbd6eadd4ee1926bcb133fc7f7394d90d2e3b47e2ee75b9860a49229012c208a144fde5e85a";
+ sha512 = "008548e75853625b690bd92e60cea25c1d9b302f7f78f42fdb4536413c10b8203f337c8384b45c3c9b729e6541f57a22e12ba264594ccfa82742373df571ebff";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/gl/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/gl/firefox-59.0.2.tar.bz2";
locale = "gl";
arch = "linux-i686";
- sha512 = "24bb4da7b5bd5a8bbb3d5bc8ccdc96ed29d9435ef00c35c70b67e0aec5baacbb910d77daec54fddaae7d68541bf1e9d051f3b1bc80e8467cc78f3c503acc0682";
+ sha512 = "212ce344a4592ff36006e4671c29b7a4734e513d5267c4ed0e7c50c6d0b794547cb042d543feeb55a48ced69bf001670683df159354f152f9d45786cc7184c03";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/gn/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/gn/firefox-59.0.2.tar.bz2";
locale = "gn";
arch = "linux-i686";
- sha512 = "24a6a40ecf5f8ca418c83c828cdc6905ed43afe137a0d59b036e68c093df3d8be679c64d06a71973a891d5765f9c366252959d6c95cfc8a5e9b5b145999526df";
+ sha512 = "6f60fe0c208b6447b4ee9f8c550805f070f4b3209632de91fd0a60853cdba70aa9e6653a29429ea4686dff3ccfe5dcc5a1fedd6495c7d7c38b623f31c2cfe19d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/gu-IN/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/gu-IN/firefox-59.0.2.tar.bz2";
locale = "gu-IN";
arch = "linux-i686";
- sha512 = "b36047e9e9957002d33be2c540104dc530d010a646ab8d8516ecffde0b89b9a6f82bf8b94bb3f55fafb002b5c39437b7941d5fb2a0cfdccc5159c2013db1b058";
+ sha512 = "0ec6bdefeffbbd52655d332b9c21be2b372f6ee260684cd28216679aa1af267d0408d5ba641a5dcee145b80c357936a090700427520f9ee7d712e20eec13c57f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/he/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/he/firefox-59.0.2.tar.bz2";
locale = "he";
arch = "linux-i686";
- sha512 = "c4d0195f72ee0afd3aa746d0a1ae5f0f7ef58646f6b4e7bffff8b1c4ac863275881c29fb7cca09ff12765e9902a6bf9404f11b45399919c9873758bbae8d017f";
+ sha512 = "2a4a76c674fd53eed5a73f3ef5d143138752e9d52db5c69d56fd5d0dff1c19349afba6987c4736d53391bc602245c1d4ac9f5c9b60a0c1d561f4162c859ae3b5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/hi-IN/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/hi-IN/firefox-59.0.2.tar.bz2";
locale = "hi-IN";
arch = "linux-i686";
- sha512 = "7bab64a89c03e37add1c6d45756acc3ba19751313f212f3069b9c1938f7533ad1d0cb99b7bca392bb5598e2c10b461f79a47b45dbb77285f7afe12f5de781e94";
+ sha512 = "34d932f073e803678990098623149dc0ea427a70ed3e604651fb622a87404ddaf25c3a79503f4e343315101704f5cd1db058a262ed47ae02eba85f102a64f780";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/hr/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/hr/firefox-59.0.2.tar.bz2";
locale = "hr";
arch = "linux-i686";
- sha512 = "aa68496e4e82fa5f491b0df056460ab3169be81869248fff0d3ce2a180c9b9963edfbfbe5b051846302ab713f436836dc63d40f65ac10ab185bc12e5942fc71b";
+ sha512 = "474f5d71087f8eb2646750bb6a14c993b2d3708234a09b4ecee7b43e2ed75a8b9d249749f16408751a019b9a32ed8be57c5d61f9fdc36ad0f1e7aa7b5863ab9f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/hsb/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/hsb/firefox-59.0.2.tar.bz2";
locale = "hsb";
arch = "linux-i686";
- sha512 = "89640b9df29c1fa946351fb74ca61e6f318ac190976f75b73aa56c66f2a67ef88b64c663cbdeea86c30c6644cf7870b59c2f9fa479ac6557e368dd486fbc4a34";
+ sha512 = "9b9127af72f9f4d780714c41a54d26ac3e8065c8ec42e0ed1318013896a3e8d920786713c79ba626f4930c92d44f2acad72ac600b5735122470fa3e3ea317965";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/hu/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/hu/firefox-59.0.2.tar.bz2";
locale = "hu";
arch = "linux-i686";
- sha512 = "46a6cdddc77b1d29bf85b40e6e33ab0d6b11a72d425ff59e9156cae7548288f02e3e1a54d296e4e1df1efc1e8e3c252a955c2a5be8bcb9e22d9d0e6e6b12d08e";
+ sha512 = "cec7b19e6e3fc11708c4b67105b191433880b53da8316fc8fa4d6af9eea23cf17423bbfa2f6283490815ee5c7ab33ba8e66ee7bdc201e3eef39808db34d572e0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/hy-AM/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/hy-AM/firefox-59.0.2.tar.bz2";
locale = "hy-AM";
arch = "linux-i686";
- sha512 = "0697f146aa1e7d0d4aa8be28b72a642c66a15d7e6a2208a4d704ee8559f4f814a8a6cf601c58a7516816c86a374bca5f755d30e11ca668d9f77c8ea4e388f204";
+ sha512 = "4c25802601dadbac82dc260e329db69dff3b69d1eb9237fff76ae6de98a00a79dde0702d4cecfe67016a26e2a7ea4b1f15ce70eb82f422ea3bb8afb9810313bb";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ia/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ia/firefox-59.0.2.tar.bz2";
locale = "ia";
arch = "linux-i686";
- sha512 = "107bdfde5633415250fa0cd34ecf29dc39bceb8a5762445b9b5429f4c83690193fe433128799446029f458492d4bb2fea27d7654dcba5a7ce3007bcf40052ff2";
+ sha512 = "99b3d9c4533d376ee7a9f8fd364b9b44a8f0b9f235346a60755f144fae4550a6d51993952736b58e28ed3d07a549cd1d2da5223d7af28f187c78b41959e5d733";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/id/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/id/firefox-59.0.2.tar.bz2";
locale = "id";
arch = "linux-i686";
- sha512 = "6935a4805b0498d5246f73720e02a022665fa40750937d31ba35d887ab289bcfc65fd122e6c18297443a6488a92a983e00844d384611e04e2e947d20a1aa82a5";
+ sha512 = "27275c8e2deb6716c8492fbc4ff56b8a2061be51101a2a7085c0a4bdf35c0bfec77af1f650236d13096ad204b93df695d5ab238ff6c312f9092f4d8adbc8d431";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/is/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/is/firefox-59.0.2.tar.bz2";
locale = "is";
arch = "linux-i686";
- sha512 = "f04f5a86e348802e38593a0c6868a1f0c534113d4511a35ad4e831a2b3d00d8d9f7522e9813230e2abe710708d61c502337de031f934813275e0d81eea8b0379";
+ sha512 = "54b6be973aab07231843455b3e0adf8f7dbc19ecd1e484795af7d6a3e346ae717621d0950297379c88a955bd75af0a19497f55015cc624609510fc3ff7b8355e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/it/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/it/firefox-59.0.2.tar.bz2";
locale = "it";
arch = "linux-i686";
- sha512 = "c0db0620e0df091f31ff576d5c87004f4c283a7455afb0098a5de50cfc8bb7879ece4d8525ec1c7f4d0af9d7934d254f114cbded07c8a93126cc6b35d6058f61";
+ sha512 = "bea36ccf3c3202bb41d09ef07cf4a30d8f3b7d64a96e4955f1e62c6ce1c252726991bb3dbd1d41b840ad7d626ca2abc83eca59a1997325d0f54231daea95ff06";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ja/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ja/firefox-59.0.2.tar.bz2";
locale = "ja";
arch = "linux-i686";
- sha512 = "8a705718db55246b74ec0d1baa30e82c18b5898151d4b0ffa7f888cd53cf704444627c47a00af70eb381f9d5e4d163119ac57b23eb316524a4f949a722809d6a";
+ sha512 = "bfc409fd6487ff113045732d1826589f8020597958cad12d2b821f496eeb53e65cd4e1b1d002527f6255350254b60a96d9d04c47bcde8bac89483b04270f5b86";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ka/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ka/firefox-59.0.2.tar.bz2";
locale = "ka";
arch = "linux-i686";
- sha512 = "6c0c0f2b67f327e03d874ea02fd084caac2756c21838c9787a03213961bc585db5bb0f2eb068a714dcc028a7d503836f1e7f652f60e08c0e9ab45f496e53b780";
+ sha512 = "f62ff3d950324b140238dc9e521e6a038a64dcc22c2679b36b59900b0f58b15d774084fdea7a1f82125a7d09d1b5c831808424e63612aac9e0a61320f6a3e4f8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/kab/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/kab/firefox-59.0.2.tar.bz2";
locale = "kab";
arch = "linux-i686";
- sha512 = "381d4835f2dfc3a3a553d228e821daaa6966efcb47ca5d7a625813d59db8081a81a46dfd2f246842c937f75121585124c0e7607a9bd0cafb59ab42d88a2c908c";
+ sha512 = "573b7cbca69294ac56fd714308caed1549dbaff2c3716887765cf968c20d0ed37b1e0f2849af2481ef237d7c617c6641c42ecf0337fb0fc18afba82c89def034";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/kk/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/kk/firefox-59.0.2.tar.bz2";
locale = "kk";
arch = "linux-i686";
- sha512 = "82f0e6cbbc9a686be9bf76a0c582800f75edd3f608671faceb813addc0e2fb66a631082e083016118dd3aff8775432ef566319cf9834a8aaa09ed6f774ddc34d";
+ sha512 = "0503e33fc8716dd94c455a0a6201334ad2bbe1f3ad9cbce057d69ec77d65bdda48a126464335cee62117b3638be636e8f2908a003951dd2866908c964a9f889d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/km/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/km/firefox-59.0.2.tar.bz2";
locale = "km";
arch = "linux-i686";
- sha512 = "7b1e81cf13051609897ad632afa18709dc6d9bbc66a6b7289188abe2f04a9bd1be159aa08342ce746930fc0cb50b19f0ff8abbea695787433acd25ad1cb48c58";
+ sha512 = "15797d366faf6f4daa60191e4c91cd9feab242e0879204ae8114ca5824a78fc42941c79d190526e1387ec28d2c150d008d4f69c78c450fa6c6aa9d3cbbd151c9";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/kn/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/kn/firefox-59.0.2.tar.bz2";
locale = "kn";
arch = "linux-i686";
- sha512 = "c17d8eba5bd0c1923f958dbde4a2fca62c423213b249fa1e2829361ade947aad32cdbe257cccf5d5160dd36033e827a78c6934db6bf96f166152b967a2c5d07d";
+ sha512 = "53908d7a78feb6b4ac8365aeacfa7cc845af5f324b57e0fed6bce78eb4298b316ccad268d022e9adc409eb9be49b9777c7f01197dad4ab79746b8805877c1706";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ko/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ko/firefox-59.0.2.tar.bz2";
locale = "ko";
arch = "linux-i686";
- sha512 = "c34c899ed8628829dcfb48b80a8b4022db9fadafc4edac4e227849ee58e06b0a9cd4fe089e080ff65e70177f7068686dab678f2e7b04dafbf1338caaea779b62";
+ sha512 = "ee4bc8ffdbd1a329df5dac2580122d883895418b93c69146206ae4e516ba1e5e993b23870ff487fb26df198b3ad73b708f9cd1f8c3f6a9f60dab73dea6ecd373";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/lij/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/lij/firefox-59.0.2.tar.bz2";
locale = "lij";
arch = "linux-i686";
- sha512 = "be96ae1d90a0e5f2308af47cae8bef7e028f01ef156bbd0497e578a0440a7362b18c63b36806ab4f1f2f1c4f8d6c9e5d9d03593ce38d1271809745cd2b266584";
+ sha512 = "a3e92d13e071ec8e76c9a4b946fadc146664263b5176ecd56dc6d412d4a0b8165b67c6be568805455e2179dacb2dc9d5d917981e3b6d52b8ce994d4062d7aae5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/lt/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/lt/firefox-59.0.2.tar.bz2";
locale = "lt";
arch = "linux-i686";
- sha512 = "b141b12385d040596085c328ce95b4ac741ccaebe1e950f00ebe09e96a2ea5b5ade4c5438f9b622423ef658f84659bab414eb467227cd9a664542fe76471d1f1";
+ sha512 = "47c6066bea50fa958812ac3389efa3408b2c35ace30c99d9ffb91ae037f1a2444933eb081992b97e3419554ef6ede9aff7c445b5262a59a324e7c1301059f149";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/lv/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/lv/firefox-59.0.2.tar.bz2";
locale = "lv";
arch = "linux-i686";
- sha512 = "ca296c7d74bfb0b4aa59da3f82dfe32b7c6564953c9850513bcb429ad68b6c867112eef7b7a2f9e1eb0bb8b7baa5f0f4caf4c9da311729e21976d70f8847bf44";
+ sha512 = "090db495b0e0883e0e378d992a855aee03e2f2fa02ea257522485742e5a879ca42231029c2e36b8a8c31425e343ea0fcc2568a9a961752ca709737c3b3bc32ce";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/mai/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/mai/firefox-59.0.2.tar.bz2";
locale = "mai";
arch = "linux-i686";
- sha512 = "378b32c8ca6cf0319c54dc239bfcd9edc8b834a5ecbe8c990ff8d7f7f28a89a30c53384c413352219309bf537dc4b0961ec0ea7eb2c1a4977b062c280ec130df";
+ sha512 = "b073c397f8d5196e14d0bbd45485532ac11cd01c42fba883c6d2f3b8f831b6cd6ce095f44e279b17ec60a12e48b776004edbc22ab76fde69af875842a48fb2c6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/mk/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/mk/firefox-59.0.2.tar.bz2";
locale = "mk";
arch = "linux-i686";
- sha512 = "7925c3a6beca9e35cf301dc7b4ebb059fc87cd710e0243c71b65c55918d10ada853b4a4b8a1c7aa0e0c89bd8e9cd4414d5a162a430cf2222e3d5c0e824b96c73";
+ sha512 = "eb20befd569cf18a9bd8455d56d152e48b194e6703cc21457af6407348f5db0405d9fa6a7b503b8c72c96b9cda953c3e0167e5803f6f62947751e042562ad427";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ml/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ml/firefox-59.0.2.tar.bz2";
locale = "ml";
arch = "linux-i686";
- sha512 = "aa291245bcd21bd1e1a08f1b84346ec61311df8a9fa6f9b4af5b9cc6fcac6f332472cfe009f02faa9d842383c5e0588dd7705eaffb37c030f5e20951a4c0b2f9";
+ sha512 = "d91c916c45e9ac2abeb655bb318030553139294859701ad99cbaed1c946a24b71ebe63b7efc2d66f995cefe09b7d04bc5bda17784713d8e4a5f27702c4ac7797";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/mr/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/mr/firefox-59.0.2.tar.bz2";
locale = "mr";
arch = "linux-i686";
- sha512 = "3bf781cc015ff35393f2d30244bc7a8c32a0ac789b0eb9da9616b1d58bb211982db2b03873a91d500f3972d0ddc32383a8e77af4b2f453d2fb8dccb71c7532c4";
+ sha512 = "9d925c4828a427bc77631b28ffd6857f5adc38266731be58e283aa99b2fb4ed304ab464b32f33bce4ce1506c13c76947264891eabd7e63dfdbd020605bb1e8c6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ms/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ms/firefox-59.0.2.tar.bz2";
locale = "ms";
arch = "linux-i686";
- sha512 = "705665d30a04883d1fe5791348edc2fe0aa1554cbf2932901b99ef1f4334a1ea9658574fc02c05ee64f6b2e3e8d487b8520b1f1963f285f6475af1334160e5b9";
+ sha512 = "2e0f463f9db9f6c0e44e354ea495cc06f5dda8c92af586745744434c112073f4f46eab7576d1e26c93a7a8b739deb09930b10cca01eea70f6bc245a44d58fa74";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/my/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/my/firefox-59.0.2.tar.bz2";
locale = "my";
arch = "linux-i686";
- sha512 = "b1272fc81d358c3386cbdebad0595c7595b1d16dcee3fdef5f49776d6607f8737bdd4807140989e16873455df4a8746e00b8d3548f60cc9b22c282a5cea5a136";
+ sha512 = "3e279289928231a02436cb344f1629b990b220c22df04e4cd3583a4995e59901a0062763e246e8cbc44ec696c7a94eb8e25ab7534a9f32b957f1332228af9b7f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/nb-NO/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/nb-NO/firefox-59.0.2.tar.bz2";
locale = "nb-NO";
arch = "linux-i686";
- sha512 = "b44fc5f73c1dc3625ce50c9f6058f56f874a91e04178bb179667c6fde462a2436c6b35d58155ccabf340742f03d0ac1470b56fba405a13caaec4075567b3b8c7";
+ sha512 = "abf3048155dff62d4225471531568292410bae499f10a7f51caa493bf3c66d45a30fd3fe62db2bc21447259aa75e024681abd8b1f8567fd7647202b7399b256e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ne-NP/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ne-NP/firefox-59.0.2.tar.bz2";
locale = "ne-NP";
arch = "linux-i686";
- sha512 = "bb063e310856adfbf3fe433d60d4fa19e8d5ace617064d334faa595cffc77d39d4e4e303b82858af8a956d43956928c7fcf70f319ce4059dae9b750d46ee3cf7";
+ sha512 = "a0a9a872bb6f92cc1f5fbf17e8ffa06fe841d5c0f50bfc543779caf10726e1a0a18bd003aef9619b25110b5a37510375de077461c3fab276cd58b319f4107a1c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/nl/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/nl/firefox-59.0.2.tar.bz2";
locale = "nl";
arch = "linux-i686";
- sha512 = "64f3cfc10133c3fb0e566422282764679f9d1587b1aa742f24e9ba77f1f45e2c1dde4cb9b97d0eb3895b745cf2037a6dda9bcec469fce3b1ee125967f2869380";
+ sha512 = "0b0a0b5df01a72c4a433938dd8f750c60594e393108564ba20745205fa87e30231e8518e28bedb770d5b988c3684ea80f27f7de28d864a26da69fda3a5c39617";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/nn-NO/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/nn-NO/firefox-59.0.2.tar.bz2";
locale = "nn-NO";
arch = "linux-i686";
- sha512 = "621c8767c5874fe530a0b4775df12be89c778915ba1f0d46271390c2208672d4211a9de501449458e88429483bf1ce453db652256c59308b3d42aa294d36649b";
+ sha512 = "0a8c474d2e0103dad61e7efbfe8bdabcf246395e7abc213a6b195aff79ae28d843c4dbcfcdbb1740c6d49e2329a1afbbde8e798dc50044be4924450c7f024396";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/or/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/or/firefox-59.0.2.tar.bz2";
locale = "or";
arch = "linux-i686";
- sha512 = "3c271c3e01611d8e046d44fc90ea3a13cc974ad3fe08aeb1c3fa5f18f104dd1481a5a5c9273bf21a29b7aa15f49791584b32bacd26063ffde1ea4846166d4225";
+ sha512 = "3b97c26b98859f1fa6e8cd682908c46fcfac7bc4aa6d6e8b0495bcdd4e1ddb53f924d4436499dcf0f059ab24d516439c2c8b4881c938d74ebb7c0e2b30911a14";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/pa-IN/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/pa-IN/firefox-59.0.2.tar.bz2";
locale = "pa-IN";
arch = "linux-i686";
- sha512 = "b0f6248a44d247c7affc35c2c4e664620e6ad5b83c4135d66f803245180052e77fa84db9d05b96475a221d5c2c288b73ad23cd7c717cabf2557282d72731cf4e";
+ sha512 = "978e0143198910d4c8c47764f7fce401cace00018318e5deb71a22666d7f94df735304354dd07ec2ca4386898ed4c15c8cd3efb1104dd054a4c1c11661b7619a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/pl/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/pl/firefox-59.0.2.tar.bz2";
locale = "pl";
arch = "linux-i686";
- sha512 = "75726fff593b0143a192cf3947f6c83a30c77552b227ccf2e5d0869b7a48dde22b1d555fee3baae8398b5cab58e1523ba7e15db6e237ece085b920f5fbbf4094";
+ sha512 = "618f2dd7460090dd0b1c0edff4b33d5ae51f1298f20ec5ccf845e5e6e5e4128c55b937496257ef49064806a720b5c8326cedca9764702824391447a83ed2118c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/pt-BR/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/pt-BR/firefox-59.0.2.tar.bz2";
locale = "pt-BR";
arch = "linux-i686";
- sha512 = "701ffb3a4dd31cb6cf50a5523a384f222b6578c2d2a2870dc1e1cd985137dc9b78e81de092b1ebaee0108164bebc94aa1a8ea12981c02d49f885d8d6c9c8281c";
+ sha512 = "7e12f0f18562fb628b994df2e2c2a9bac4fe85ad593a0de37f3e1c3b1dce60406d2f28606aec5cf84ecec05570b38e7dd95d6f348dbadee09bf27ac34d52b47e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/pt-PT/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/pt-PT/firefox-59.0.2.tar.bz2";
locale = "pt-PT";
arch = "linux-i686";
- sha512 = "a978e219a044b3e507ff5d907626939f8f9d0c3c988662ccdf394e613ca1127b2714c9973d90bd7d835e2af574d115b495c277f2d668142155b54e9098a285ae";
+ sha512 = "80d9c00f741ab177a5d0ffd94a8462077240c07a56dfb49213e222264224d5df5f4f964dac55d097b0ba9d658dd42ed50761ca86fc087c29cc4ef9d2972956ae";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/rm/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/rm/firefox-59.0.2.tar.bz2";
locale = "rm";
arch = "linux-i686";
- sha512 = "f0f3d5e022793bc92cc84fa5f8b413fc1ae1ec9da126386283297b41e47d722b4399722f69a05aac216d46d1a1ee90a1b6fb57194284c157e68c84121d4d989c";
+ sha512 = "9ef01b038cb0971b41fbb19d250db4ca96adc31f0a9cf8b7197ebe700acfab69b2dae35f2c3487ae1983df0793cacd5a7aca7d9fdec8b7fa94cb245ff1308338";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ro/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ro/firefox-59.0.2.tar.bz2";
locale = "ro";
arch = "linux-i686";
- sha512 = "4995938aeb22e69a6cd8a6b37b479e9d23a140b73ce2e5c4e29e6ff4f34d702db426346a596e207c2dd2e4d1bc6f1dfea00bc7ab7a2eae763ffe9fcfbf3e00b5";
+ sha512 = "d60ec8a9bddaabdae7b210c7b8f4229b10ae1080a89a3a661b6ffbffae479c81ec8f620b82655d92a792e31d4f1fad9477d195005dfdc803a7f3998d4a091413";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ru/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ru/firefox-59.0.2.tar.bz2";
locale = "ru";
arch = "linux-i686";
- sha512 = "32ab4f1bca6a51d204c54f4485d9642e8ccbebc008cd56e0cba55ea3a5ae5aebca050fe1e8e2b2a7fdf04480ecbab04515c0944c0d5aae0b81e350370cc2cabd";
+ sha512 = "8a42c89e4a0ac8f26421450637c2781c2dac2fd4469080f5d17a86cbbaa2c1cae56cc641797e6c1efb1576467c2d9e960b8a486f4b79556eba1d8a099d82e567";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/si/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/si/firefox-59.0.2.tar.bz2";
locale = "si";
arch = "linux-i686";
- sha512 = "c2407c652b1907b3508f655c1bc831ecda75b8135dbfcaa1aed1a509a65fe2f21f22720bc80fdceede1e77c86fe39d0badf8d23f37ae48310df132c115bca448";
+ sha512 = "230b155c90db9c05a8f896357c1cb2baca0f96cada2a62fced73caa94a49116459b4ae42a4f61ce03dd08d9ce03541067a5cc64a53ad17cd63debbfe645a2614";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/sk/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/sk/firefox-59.0.2.tar.bz2";
locale = "sk";
arch = "linux-i686";
- sha512 = "f2a99e4f688a3384d23d36a87017ba0b5f28bfef2152867f8e8c8ca134a26e26052339c6edca1c24dfe5db5ce09d194675cac364a4918e46ae765d30ae3ab8d0";
+ sha512 = "1072c117830b85c54e7c1ead8ca552e92ce0c1971f26a28d27490802ceeb15fc105323599fd768a8ecd94597b3f51f8efdfb3e91743395c19b52a152ffb383d5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/sl/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/sl/firefox-59.0.2.tar.bz2";
locale = "sl";
arch = "linux-i686";
- sha512 = "f454a9cf5a2e1528a546a82d6c2a1f4f2a668bd2b56633216d3955ec5c1c89d8734d8cdb0ee9306698aaa5060bc5f4797a9e0fa1c8967a00fd204eb035a8ba29";
+ sha512 = "5580f6777ce0acd2d47af993a8bec2e23ef16d77e6fb653147637e1efa08e82006a41108b94b213e7bb6d57b9dc27e8cc2bc1f0a26e9c2cf766e9c82dcc673d9";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/son/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/son/firefox-59.0.2.tar.bz2";
locale = "son";
arch = "linux-i686";
- sha512 = "4b020b9c0f6e9bd594afc47900025dbd2223e50668f9f43f139b00f5534487806810bc933ab0258f5fcc8c277f7c5d2411d8605dd0fbae893f5809f9cc400c22";
+ sha512 = "0f930af28da8a3643d424dc957643682909d86f83d2cde87656abb33fd5d9c5277a46cf46d4ed28a790eaa0b5681f48cc43a2184c8273cb85c821359d07ad46e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/sq/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/sq/firefox-59.0.2.tar.bz2";
locale = "sq";
arch = "linux-i686";
- sha512 = "959f10db2a46cd8616686618d55119b01f0ac8e00e79093a949788ac903b6d3845a919a420d7517813e28b1227bd6f70fe8be9df39de8406743ddd7c65865e28";
+ sha512 = "08589b3b4bfb670a912045614bb408a856b48aee4184b98e475101b1ff0ce3f6659c13ae4ffeb981e28f0b7243ba6b340065224dae0cef85e6f5877b0b150db0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/sr/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/sr/firefox-59.0.2.tar.bz2";
locale = "sr";
arch = "linux-i686";
- sha512 = "407e9337429d644ed75d3b2ae4953c5da3c6994e2f2ef2320becbde68662f16c711c987d4dfe2f0a784833b3c721c62cdd0080cdc1ed45a099b0c7b256411b85";
+ sha512 = "2abe8a5c502564823ffeaf59925d6749463e4aa0fcb0732f0c68acd8243b5a1bf5a71834fd9e519df8aa4b7b32fe69336ed9976b1ffb2ca67068cbe47f9b6987";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/sv-SE/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/sv-SE/firefox-59.0.2.tar.bz2";
locale = "sv-SE";
arch = "linux-i686";
- sha512 = "f59c60fbeb82cb56ddd447d4c3d4125ea3a98e95a74e7802d73eac25489f2acd4566e01397b9ee6c70260779bb895fb104ace61f2ce9268b4f3f3758d686de1b";
+ sha512 = "ff79a7639d654cc2714f75e619c0c6c5862c1e4216fe7e2eeaf3876c47e16a6555dfa28e9be6b8215fe9e308e4c8753c5d70bcc6f3979c8a70fd7330652126ed";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ta/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ta/firefox-59.0.2.tar.bz2";
locale = "ta";
arch = "linux-i686";
- sha512 = "3ddc5a37d37a7db421f46d1d66d52197473f0e73c5c633ae52f12caa473ad5a4e73612a57bfc8d5d212c2b573b8308fb1b7697f78e153094230f8da64f074b64";
+ sha512 = "fb4d4c6def12ffe32eb9517858488921f1c77380f3d1d35a8652ebe7b9e14429709debffa6dd6a1008fee71c664fd8f582db1052a203dc1d7c10ba418222f7fc";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/te/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/te/firefox-59.0.2.tar.bz2";
locale = "te";
arch = "linux-i686";
- sha512 = "c60cd73ec1eb27f9ab5e4ea63d3b4dc691c5c85d57a486ea408cda99f0c44c6c17e7d8e2a1de585dab1d4717bcdd7417b38b785c6f37722a3056a701163917b8";
+ sha512 = "ae97d60ac98c6cd9bad620a7c5dba8d51bdb2b035132daa0d915d1fc1e04802a25137bbbac82009ec51c0d858346e2f5c43f9981c48e991cc094cf11711fdeef";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/th/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/th/firefox-59.0.2.tar.bz2";
locale = "th";
arch = "linux-i686";
- sha512 = "0ec9c7b5143268d1266e939e5ed2617edf41c99e5bddf2d4240f49b1ee2822c4c6b269a24aa607623bc82a54b501cebc1f924a9c87fac21f95108089495414f6";
+ sha512 = "695fae213cc6705ec130c4dc08dd1c28f6ad605e0a2d0e92deef13737cc2780cd420dd883dc5153bf9cd174e1740effbc817054b16417fed90d04be04f21ab24";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/tr/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/tr/firefox-59.0.2.tar.bz2";
locale = "tr";
arch = "linux-i686";
- sha512 = "ecf26013bc9cc189c89780c4b8b01c4f25dbc8f3f6c7bf924f528fe06ebf8c4952133e8446b3e0c8a09e3fa9d84b09883b3d4665d27ca7c028d90d3fe3d7fc1b";
+ sha512 = "f79e1f5027a84b772358d25f0441744036f60da7de5c0b26428ebd81900977e70d2c36b454e73f7026b7e20c058830502c92bdb8cc7d55c3ab40df43b7380d31";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/uk/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/uk/firefox-59.0.2.tar.bz2";
locale = "uk";
arch = "linux-i686";
- sha512 = "c8595f21e86c4d1124b882ae4f1be026756b7cecb3ed5a02b4c723c37a999e2829881fab5d6349485078965881a91cfaf28bc926b5e96245e1771a9160adec76";
+ sha512 = "30b7661e84a875ff356284a87d1dc00a9e8fc1c03c953c471d785445e78cf4568450fec97bb16a1c63b092931719119510f33f55f02ff56e38adf4fb3be3f2c8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/ur/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/ur/firefox-59.0.2.tar.bz2";
locale = "ur";
arch = "linux-i686";
- sha512 = "8d7be769c17135ad58a120cba472565597ddf05893f061e1efe2d2cf57c79bd8ec6f6a55e3271773fbc6a452e1794979cc619cc1a41d1bb13670b4f1badf4bb6";
+ sha512 = "9ef6fed1bea2857fc60e22eb9a87db8261316ba0852a3c5d35d65c3ead474ae34ee532588e25942f76be2f13a341c9bd9b672e5b192db1d3ccfee3f6a6787b83";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/uz/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/uz/firefox-59.0.2.tar.bz2";
locale = "uz";
arch = "linux-i686";
- sha512 = "cd75b674a8ff62be2abc78cfa25873950914a7ef0fb6b652c483486c8dec888bed9276c2c7b323e5787ce802583e1d140d9414e7af9ce3ffc736e38fb1521177";
+ sha512 = "ab75b5c8e81b6bfc12b07b4fb2872cf2297c7249c352f5b66d95d867698f3e9a601f273e708bcb8855505eaba87b384e2b62f9d0b85e5976acf1c948e5e5a3e1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/vi/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/vi/firefox-59.0.2.tar.bz2";
locale = "vi";
arch = "linux-i686";
- sha512 = "c5f9cb57563ff819236358c0ad18992f2c3f8b80decf690ec3945b029e2dbd6bc6f564af2a5bb6394eddb8a52ed0a0cab446cbd9c49284de821a814b766b60b0";
+ sha512 = "d08e244d22c92c0e64c1104d5bbaaa19fa3b0d8f7a3616ae0df71d8f141039f1e7e87480f52d319f57d545f58c7095da643d4bac150e47c3e595b27cb793076f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/xh/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/xh/firefox-59.0.2.tar.bz2";
locale = "xh";
arch = "linux-i686";
- sha512 = "9f96977530f745eeb1cdb14b40bf657e9a3d9e322b250fab799b37d801665fa47a47aa88c1f28998a29ed69523e42f300b69e008f5d2ff7f166e12b3c1fb4497";
+ sha512 = "b956f01619afc421ed23ac644af51f62fa9f5cffcd7f5b6bf640014d1326583f8ba871e4e4f5cf8e81ab0a2b46335b5e921243e71ed16d51b2c89f0a7d1a1280";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/zh-CN/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/zh-CN/firefox-59.0.2.tar.bz2";
locale = "zh-CN";
arch = "linux-i686";
- sha512 = "5f3cbcfad55017b30e72ec4fb266d5b9f822804cee329c67c5998ad44a9fb6852b32764179586862cff1dc311c9a9a84259894282d57b5d2146c1d4de86442e4";
+ sha512 = "80f3c557a7fa2d51f5ba2d07adef2bd6980a4cd256b95702ee4fac2967d039476ea3b828ce951b354be9fea9508ecae2ea12a8b29f8feb0101b2101d741bf633";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.1/linux-i686/zh-TW/firefox-59.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/59.0.2/linux-i686/zh-TW/firefox-59.0.2.tar.bz2";
locale = "zh-TW";
arch = "linux-i686";
- sha512 = "3f48bc028239f8cc8bf2f818129b1509f0e8d895087e8e7b16375df447e0d0ba7b543679a808aa579fc92bf2fc4af6c3797eacf03c905ce3714eed897a8b8f86";
+ sha512 = "50668a428310083cd175ce0dd9d09742866143d56efb0b13d11de1905d5b1d9f61e441bf1364e518aa87ebc790a335cc3b69d2438d3a4f92b4802345b8a443fa";
}
];
}
diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix
index 19a16dfe3a2..07495e7d470 100644
--- a/pkgs/applications/networking/browsers/firefox/packages.nix
+++ b/pkgs/applications/networking/browsers/firefox/packages.nix
@@ -18,10 +18,10 @@ rec {
firefox = common rec {
pname = "firefox";
- version = "59.0.1";
+ version = "59.0.2";
src = fetchurl {
- url = "https://hg.mozilla.org/releases/mozilla-release/archive/3db9e3d52b17563efca181ccbb50deb8660c59ae.tar.bz2";
- sha512 = "3da3gmfv2aalsbsx15csas4mwnvlliy1q081sd2riz3nvxr7qyrdx1qvxj4gdr97wlmvz7mig9djhh5gwx7ddah5hfhj23cvccmw6jw";
+ url = "https://hg.mozilla.org/releases/mozilla-release/archive/239e434d6d2b8e1e2b697c3416d1e96d48fe98e5.tar.bz2";
+ sha512 = "3kfh224sfc9ig4733frnskcs49xzjkrs00lxllsvx1imm6f4sf117mqlvc7bhgrn8ldiqn6vaa5g6gd9b7awkk1g975bbzk9namb3yv";
};
patches = nixpkgsPatches ++ [
@@ -41,10 +41,10 @@ rec {
firefox-esr = common rec {
pname = "firefox-esr";
- version = "52.7.2esr";
+ version = "52.7.3esr";
src = fetchurl {
url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz";
- sha512 = "e275fd10fd32a0dc237135af3395e3a1ae501844632c973ff3b9bca1456702ee36dbee99fc57300598403c924c0db63bd62a199845c8f4a2e29db5d1e5973395";
+ sha512 = "31y3qrslg61724vmly6gr1lqcrqgpkh3zsl8riax45gizfcp3qbgkvmd5wwfn9fiwjqi6ww3i08j51wxrfxcxznv7c6qzsvzzc30mgw";
};
patches = nixpkgsPatches;
@@ -136,9 +136,9 @@ in rec {
src = fetchFromGitHub {
owner = "SLNOS";
repo = "tor-browser";
- # branch "tor-browser-52.7.0esr-7.5-1-slnos";
- rev = "211b2be3fea45a450915b0addcd7783aa939e24a";
- sha256 = "18gv4r8cjf89mamjh93a856a5yfp7dm3jrk8g05w89vxb3lrl74v";
+ # branch "tor-browser-52.7.3esr-7.5-1-slnos";
+ rev = "62e77aa47d90c10cfc9c6f3b7358a6bdc3167182";
+ sha256 = "09pyqicv6z0h4lmjdybx56gj3l28gkl0bbpk0pnmlzcyr9vng7zj";
};
patches = nixpkgsPatches;
diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix
index cf5405a4a07..078fa0885b7 100644
--- a/pkgs/applications/networking/browsers/firefox/wrapper.nix
+++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix
@@ -30,7 +30,7 @@ let
}:
let
- cfg = stdenv.lib.attrByPath [ browserName ] {} config;
+ cfg = config.${browserName} or {};
enableAdobeFlash = cfg.enableAdobeFlash or false;
ffmpegSupport = browser.ffmpegSupport or false;
gssSupport = browser.gssSupport or false;
diff --git a/pkgs/applications/networking/browsers/qutebrowser/default.nix b/pkgs/applications/networking/browsers/qutebrowser/default.nix
index 426d91d3455..2e31f625f2e 100644
--- a/pkgs/applications/networking/browsers/qutebrowser/default.nix
+++ b/pkgs/applications/networking/browsers/qutebrowser/default.nix
@@ -29,13 +29,13 @@ let
in python3Packages.buildPythonApplication rec {
name = "qutebrowser-${version}${versionPostfix}";
namePrefix = "";
- version = "1.2.0";
+ version = "1.2.1";
versionPostfix = "";
# the release tarballs are different from the git checkout!
src = fetchurl {
url = "https://github.com/qutebrowser/qutebrowser/releases/download/v${version}/${name}.tar.gz";
- sha256 = "0za0iiljs86y2n4znwk8cgn948xcv8iv80a9qfm87zl18y3ashly";
+ sha256 = "1svbski378x276033v07jailm81b0i6hxdakbiqkwvgh6hkczrhw";
};
# Needs tox
diff --git a/pkgs/applications/networking/cluster/cni/default.nix b/pkgs/applications/networking/cluster/cni/default.nix
index 3ce056c1e11..0f232772f07 100644
--- a/pkgs/applications/networking/cluster/cni/default.nix
+++ b/pkgs/applications/networking/cluster/cni/default.nix
@@ -13,17 +13,14 @@ stdenv.mkDerivation rec {
buildInputs = [ go ];
- outputs = ["out" "plugins"];
-
buildPhase = ''
patchShebangs build.sh
./build.sh
'';
installPhase = ''
- mkdir -p $out/bin $plugins
+ mkdir -p $out/bin
mv bin/cnitool $out/bin
- mv bin/* $plugins/
'';
meta = with stdenv.lib; {
diff --git a/pkgs/applications/networking/cluster/cni/plugins.nix b/pkgs/applications/networking/cluster/cni/plugins.nix
new file mode 100644
index 00000000000..9f6b6fcb7e1
--- /dev/null
+++ b/pkgs/applications/networking/cluster/cni/plugins.nix
@@ -0,0 +1,33 @@
+{ stdenv, lib, fetchFromGitHub, go }:
+
+stdenv.mkDerivation rec {
+ name = "cni-plugins-${version}";
+ version = "0.7.0";
+
+ src = fetchFromGitHub {
+ owner = "containernetworking";
+ repo = "plugins";
+ rev = "v${version}";
+ sha256 = "0m885v76azs7lrk6m6n53rwh0xadwvdcr90h0l3bxpdv87sj2mnf";
+ };
+
+ buildInputs = [ go ];
+
+ buildPhase = ''
+ patchShebangs build.sh
+ ./build.sh
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ mv bin/* $out/bin
+ '';
+
+ meta = with lib; {
+ description = "Some standard networking plugins, maintained by the CNI team";
+ homepage = https://github.com/containernetworking/plugins;
+ license = licenses.asl20;
+ platforms = [ "x86_64-linux" ];
+ maintainers = with maintainers; [ cstrahan ];
+ };
+}
diff --git a/pkgs/applications/networking/cluster/kubernetes/default.nix b/pkgs/applications/networking/cluster/kubernetes/default.nix
index 7f03831ff1d..2b555435327 100644
--- a/pkgs/applications/networking/cluster/kubernetes/default.nix
+++ b/pkgs/applications/networking/cluster/kubernetes/default.nix
@@ -63,7 +63,7 @@ stdenv.mkDerivation rec {
'';
installPhase = ''
- mkdir -p "$out/bin" "$out/share/bash-completion/completions" "$man/share/man" "$pause/bin"
+ mkdir -p "$out/bin" "$out/share/bash-completion/completions" "$out/share/zsh/site-functions" "$man/share/man" "$pause/bin"
cp _output/local/go/bin/* "$out/bin/"
cp build/pause/pause "$pause/bin/pause"
@@ -74,6 +74,7 @@ stdenv.mkDerivation rec {
wrapProgram $out/bin/kube-addons --set "KUBECTL_BIN" "$out/bin/kubectl"
$out/bin/kubectl completion bash > $out/share/bash-completion/completions/kubectl
+ $out/bin/kubectl completion zsh > $out/share/zsh/site-functions/_kubectl
'';
preFixup = ''
diff --git a/pkgs/applications/networking/cluster/mesos/default.nix b/pkgs/applications/networking/cluster/mesos/default.nix
index 68c66d78de1..961c0afc5c5 100644
--- a/pkgs/applications/networking/cluster/mesos/default.nix
+++ b/pkgs/applications/networking/cluster/mesos/default.nix
@@ -4,6 +4,7 @@
, leveldb, glog, perf, utillinux, libnl, iproute, openssl, libevent
, ethtool, coreutils, which, iptables, maven
, bash, autoreconfHook
+, withJava ? !stdenv.isDarwin
}:
let
@@ -46,11 +47,13 @@ in stdenv.mkDerivation rec {
autoreconfHook
];
buildInputs = [
- makeWrapper curl sasl jdk
+ makeWrapper curl sasl
python wrapPython boto setuptools leveldb
- subversion apr glog openssl libevent maven
+ subversion apr glog openssl libevent
] ++ lib.optionals stdenv.isLinux [
libnl
+ ] ++ lib.optionals withJava [
+ jdk maven
];
propagatedBuildInputs = [
@@ -181,6 +184,7 @@ in stdenv.mkDerivation rec {
"--with-libevent=${libevent.dev}"
"--with-protobuf=${pythonProtobuf.protobuf}"
"PROTOBUF_JAR=${mavenRepo}/com/google/protobuf/protobuf-java/3.3.0/protobuf-java-3.3.0.jar"
+ (if withJava then "--enable-java" else "--disable-java")
] ++ lib.optionals stdenv.isLinux [
"--with-network-isolator"
"--with-nl=${libnl.dev}"
@@ -190,16 +194,6 @@ in stdenv.mkDerivation rec {
rm -rf $out/var
rm $out/bin/*.sh
- mkdir -p $out/share/java
- cp src/java/target/mesos-*.jar $out/share/java
-
- MESOS_NATIVE_JAVA_LIBRARY=$out/lib/libmesos${stdenv.hostPlatform.extensions.sharedLibrary}
-
- mkdir -p $out/nix-support
- touch $out/nix-support/setup-hook
- echo "export MESOS_NATIVE_JAVA_LIBRARY=$MESOS_NATIVE_JAVA_LIBRARY" >> $out/nix-support/setup-hook
- echo "export MESOS_NATIVE_LIBRARY=$MESOS_NATIVE_JAVA_LIBRARY" >> $out/nix-support/setup-hook
-
# Inspired by: pkgs/development/python-modules/generic/default.nix
pushd src/python
mkdir -p $out/lib/${python.libPrefix}/site-packages
@@ -218,6 +212,16 @@ in stdenv.mkDerivation rec {
--old-and-unmanageable \
--prefix="$out"
popd
+ '' + stdenv.lib.optionalString withJava ''
+ mkdir -p $out/share/java
+ cp src/java/target/mesos-*.jar $out/share/java
+
+ MESOS_NATIVE_JAVA_LIBRARY=$out/lib/libmesos${stdenv.hostPlatform.extensions.sharedLibrary}
+
+ mkdir -p $out/nix-support
+ touch $out/nix-support/setup-hook
+ echo "export MESOS_NATIVE_JAVA_LIBRARY=$MESOS_NATIVE_JAVA_LIBRARY" >> $out/nix-support/setup-hook
+ echo "export MESOS_NATIVE_LIBRARY=$MESOS_NATIVE_JAVA_LIBRARY" >> $out/nix-support/setup-hook
'';
postFixup = ''
@@ -248,6 +252,6 @@ in stdenv.mkDerivation rec {
license = licenses.asl20;
description = "A cluster manager that provides efficient resource isolation and sharing across distributed applications, or frameworks";
maintainers = with maintainers; [ cstrahan kevincox offline ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/applications/networking/cluster/openshift/default.nix b/pkgs/applications/networking/cluster/openshift/default.nix
index fdc97733c77..3f7e0650e0d 100644
--- a/pkgs/applications/networking/cluster/openshift/default.nix
+++ b/pkgs/applications/networking/cluster/openshift/default.nix
@@ -1,12 +1,24 @@
-{ stdenv, fetchFromGitHub, which, buildGoPackage, utillinux, coreutils }:
+{ stdenv, lib, fetchFromGitHub, fetchpatch, removeReferencesTo, which, go_1_9, go-bindata, makeWrapper, rsync
+, iptables, coreutils, kerberos, clang
+, components ? [
+ "cmd/oc"
+ "cmd/openshift"
+ ]
+}:
+
+with lib;
let
- version = "3.6.0";
+ version = "3.9.0";
ver = stdenv.lib.elemAt (stdenv.lib.splitString "." version);
versionMajor = ver 0;
versionMinor = ver 1;
versionPatch = ver 2;
-in buildGoPackage rec {
+ gitCommit = "191fece";
+ # version is in vendor/k8s.io/kubernetes/pkg/version/base.go
+ k8sversion = "v1.9.1";
+ k8sgitcommit = "a0ce1bc657";
+in stdenv.mkDerivation rec {
name = "openshift-origin-${version}";
inherit version;
@@ -14,40 +26,41 @@ in buildGoPackage rec {
owner = "openshift";
repo = "origin";
rev = "v${version}";
- sha256 = "08bdqvsjl6c7dmllyz8n4akb7gyn91znvbph5cgmmk1bhskycy1r";
- };
+ sha256 = "06k0zilfyvll7z34yirraslgpwgah9k6y5i6wgi7f00a79k76k78";
+};
- buildInputs = [ which ];
+ # go > 1.10
+ # [FATAL] [14:44:02+0000] Please install Go version go1.9 or use PERMISSIVE_GO=y to bypass this check.
+ buildInputs = [ removeReferencesTo makeWrapper which go_1_9 rsync go-bindata kerberos clang ];
+
+ outputs = [ "out" ];
- goPackagePath = null;
patchPhase = ''
patchShebangs ./hack
- substituteInPlace pkg/bootstrap/docker/host/host.go \
- --replace 'nsenter --mount=/rootfs/proc/1/ns/mnt findmnt' \
- 'nsenter --mount=/rootfs/proc/1/ns/mnt ${utillinux}/bin/findmnt'
-
- substituteInPlace pkg/bootstrap/docker/host/host.go \
- --replace 'nsenter --mount=/rootfs/proc/1/ns/mnt mount' \
- 'nsenter --mount=/rootfs/proc/1/ns/mnt ${utillinux}/bin/mount'
-
- substituteInPlace pkg/bootstrap/docker/host/host.go \
- --replace 'nsenter --mount=/rootfs/proc/1/ns/mnt mkdir' \
- 'nsenter --mount=/rootfs/proc/1/ns/mnt ${utillinux}/bin/mount'
'';
buildPhase = ''
- cd go/src/origin-v${version}-src
# Openshift build require this variables to be set
# unless there is a .git folder which is not the case with fetchFromGitHub
- export OS_GIT_VERSION=v${version}
- export OS_GIT_MAJOR=${versionMajor}
- export OS_GIT_MINOR=${versionMinor}
- make build
+ echo "OS_GIT_VERSION=v${version}" >> os-version-defs
+ echo "OS_GIT_MAJOR=${versionMajor}" >> os-version-defs
+ echo "OS_GIT_MINOR=${versionMinor}" >> os-version-defs
+ echo "OS_GIT_PATCH=${versionPatch}" >> os-version-defs
+ echo "OS_GIT_COMMIT=${gitCommit}" >> os-version-defs
+ echo "KUBE_GIT_VERSION=${k8sversion}" >> os-version-defs
+ echo "KUBE_GIT_COMMIT=${k8sgitcommit}" >> os-version-defs
+ export OS_VERSION_FILE="os-version-defs"
+ export CC=clang
+ make all WHAT='${concatStringsSep " " components}'
'';
installPhase = ''
- mkdir -p "$bin/bin"
- cp -a "_output/local/bin/$(go env GOOS)/$(go env GOARCH)/"* "$bin/bin/"
+ mkdir -p "$out/bin"
+ cp -a "_output/local/bin/$(go env GOOS)/$(go env GOARCH)/"* "$out/bin/"
+ '';
+
+ preFixup = ''
+ find $out/bin -type f -exec remove-references-to -t ${go_1_9} '{}' +
'';
meta = with stdenv.lib; {
diff --git a/pkgs/applications/networking/cluster/terraform-provider-libvirt/default.nix b/pkgs/applications/networking/cluster/terraform-provider-libvirt/default.nix
new file mode 100644
index 00000000000..34a3be55f30
--- /dev/null
+++ b/pkgs/applications/networking/cluster/terraform-provider-libvirt/default.nix
@@ -0,0 +1,47 @@
+{ stdenv, buildGoPackage, fetchFromGitHub, libvirt, pkgconfig, makeWrapper, cdrtools }:
+
+# USAGE:
+# install the following package globally or in nix-shell:
+#
+# (terraform.withPlugins (old: [terraform-provider-libvirt]))
+#
+# configuration.nix:
+#
+# virtualisation.libvirtd.enable = true;
+#
+# terraform-provider-libvirt does not manage pools at the moment:
+#
+# $ virsh --connect "qemu:///system" pool-define-as default dir - - - - /var/lib/libvirt/images
+# $ virsh --connect "qemu:///system" pool-start default
+#
+# pick an example from (i.e ubuntu):
+# https://github.com/dmacvicar/terraform-provider-libvirt/tree/master/examples
+
+buildGoPackage rec {
+ name = "terraform-provider-libvirt-${version}";
+ version = "0.3";
+
+ goPackagePath = "github.com/dmacvicar/terraform-provider-libvirt";
+
+ src = fetchFromGitHub {
+ owner = "dmacvicar";
+ repo = "terraform-provider-libvirt";
+ rev = "v${version}";
+ sha256 = "004gxy55p5cf39f2zpah0i2zhvs4x6ixnxy8z9v7314604ggpkna";
+ };
+
+ buildInputs = [ libvirt pkgconfig makeWrapper ];
+
+ goDeps = ./deps.nix;
+
+ propagatedBuildInputs = [ cdrtools ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/dmacvicar/terraform-provider-libvirt;
+ description = "Terraform provider for libvirt";
+ platforms = platforms.linux;
+ license = licenses.asl20;
+ maintainers = with maintainers; [ mic92 ];
+ };
+}
+
diff --git a/pkgs/applications/networking/cluster/terraform-provider-libvirt/deps.nix b/pkgs/applications/networking/cluster/terraform-provider-libvirt/deps.nix
new file mode 100644
index 00000000000..fdf394073ab
--- /dev/null
+++ b/pkgs/applications/networking/cluster/terraform-provider-libvirt/deps.nix
@@ -0,0 +1,12 @@
+# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
+[
+ {
+ goPackagePath = "github.com/aws/aws-sdk-go";
+ fetch = {
+ type = "git";
+ url = "https://github.com/aws/aws-sdk-go";
+ rev = "c861d27d0304a79f727e9a8a4e2ac1e74602fdc0";
+ sha256 = "023cyg551dvm2l50dx1qsikkj77lk2dhiya7by8in7h65av6hjgl";
+ };
+ }
+]
diff --git a/pkgs/applications/networking/cluster/terraform-provider-nixos/default.nix b/pkgs/applications/networking/cluster/terraform-provider-nixos/default.nix
new file mode 100644
index 00000000000..135e5402929
--- /dev/null
+++ b/pkgs/applications/networking/cluster/terraform-provider-nixos/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
+buildGoPackage rec {
+ name = "terraform-provider-nixos-${version}";
+ version = "0.0.1";
+ goPackagePath = "github.com/tweag/terraform-provider-nixos";
+ src = fetchFromGitHub {
+ owner = "tweag";
+ repo = "terraform-provider-nixos";
+ sha256 = "00vz6qjq1pk39iqg4356b8g3c6slla9jifkv2knk46gc9q93q0lf";
+ rev = "v${version}";
+ };
+
+ # Terraform allow checking the provider versions, but this breaks
+ # if the versions are not provided via file paths.
+ postBuild = "mv go/bin/terraform-provider-nixos{,_v${version}}";
+
+ meta = with stdenv.lib; {
+ description = "Terraform plugin for outputting NixOS configuration files from Terraform resources.";
+ homepage = "https://github.com/tweag/terraform-provider-nixos";
+ license = licenses.mpl20;
+ maintainers = with maintainers; [ grahamc ];
+ };
+}
diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix
index 8b3e83ea86f..2bf1d210f83 100644
--- a/pkgs/applications/networking/cluster/terraform/default.nix
+++ b/pkgs/applications/networking/cluster/terraform/default.nix
@@ -44,6 +44,9 @@ let
let
actualPlugins = plugins terraform.plugins;
+ # Wrap PATH of plugins propagatedBuildInputs, plugins may have runtime dependencies on external binaries
+ wrapperInputs = lib.unique (lib.flatten (lib.catAttrs "propagatedBuildInputs" (builtins.filter (x: x != null) actualPlugins)));
+
passthru = {
withPlugins = newplugins: withPlugins (x: newplugins x ++ actualPlugins);
@@ -64,7 +67,8 @@ let
buildCommand = ''
mkdir -p $out/bin/
makeWrapper "${terraform.bin}/bin/terraform" "$out/bin/terraform" \
- --set NIX_TERRAFORM_PLUGIN_DIR "${buildEnv { name = "tf-plugin-env"; paths = actualPlugins; }}/bin"
+ --set NIX_TERRAFORM_PLUGIN_DIR "${buildEnv { name = "tf-plugin-env"; paths = actualPlugins; }}/bin" \
+ --prefix PATH : "${lib.makeBinPath wrapperInputs}"
'';
inherit passthru;
@@ -100,8 +104,8 @@ in rec {
terraform_0_10-full = terraform_0_10.withPlugins lib.attrValues;
terraform_0_11 = pluggable (generic {
- version = "0.11.4";
- sha256 = "1r3x7qv0bfsnmj7l3hmsww26rb9hkg361515gpvjjzafz5b7bz0c";
+ version = "0.11.5";
+ sha256 = "130ibb1pd60r2cycwpzs8qfwrz6knyc1a1849csxpipg5rs5q3jy";
patches = [ ./provider-path.patch ];
passthru = { inherit plugins; };
});
diff --git a/pkgs/applications/networking/cluster/terraform/providers/data.nix b/pkgs/applications/networking/cluster/terraform/providers/data.nix
index ab00cc7772b..0a0b20bfd15 100644
--- a/pkgs/applications/networking/cluster/terraform/providers/data.nix
+++ b/pkgs/applications/networking/cluster/terraform/providers/data.nix
@@ -4,15 +4,15 @@
{
owner = "terraform-providers";
repo = "terraform-provider-alicloud";
- version = "1.8.1";
- sha256 = "127070zsy536pdvjpcj0028iwwrcm4s5gbhvhzxb70fhjvi9sj6v";
+ version = "1.9.0";
+ sha256 = "19jqyzpcnlraxzn8bvrjzsh81j7dfadswgxfsiqzxll9xbm0k2bv";
};
archive =
{
owner = "terraform-providers";
repo = "terraform-provider-archive";
- version = "1.0.2";
- sha256 = "0n8939qai01lrk4kq3w344a73z6bfqbfq9yl28yh93fvmpkv6jz2";
+ version = "1.0.3";
+ sha256 = "1il8v9zi838naprr8dqzipk6ns71l8vdqidarxklnn8wdwxmacg4";
};
arukas =
{
@@ -32,8 +32,8 @@
{
owner = "terraform-providers";
repo = "terraform-provider-aws";
- version = "1.11.0";
- sha256 = "14r54772qi6c73l50f6gp4j08rd03c2h4v1fwcydfc6kyf23f8k6";
+ version = "1.13.0";
+ sha256 = "09ba2r3avqbl85s8llmgkk6gwgfkzm83994kd965r481xcnfv1ny";
};
azure-classic =
{
@@ -46,8 +46,8 @@
{
owner = "terraform-providers";
repo = "terraform-provider-azurerm";
- version = "1.3.0";
- sha256 = "0szw7fmdwy8r99w40z2h7fp5znj8s0ddbcwrgm1g3vdcp757vcg5";
+ version = "1.3.1";
+ sha256 = "1qpf2h9qnhki4lg9pv77r0sc4acj08m0fqqagkvkinq46ypsfbp4";
};
bitbucket =
{
@@ -193,8 +193,8 @@
{
owner = "terraform-providers";
repo = "terraform-provider-google";
- version = "1.7.0";
- sha256 = "1q38z3gihsbxlra1vzgsg1ss8q24f5vkj6k8pvvqjb2rzqpkk5cm";
+ version = "1.8.0";
+ sha256 = "1n01gj9572hhskbl4bsg0fqyg9slv8fpvzp3avmwvg5b2hsj4snh";
};
grafana =
{
@@ -242,8 +242,8 @@
{
owner = "terraform-providers";
repo = "terraform-provider-kubernetes";
- version = "1.0.1";
- sha256 = "0s8h8nxsl07bhvynmgps07giqr2xmxizk1rcx4xivfc3q5mkvnhb";
+ version = "1.1.0";
+ sha256 = "1lhdmglc6nd24ss7z41qqbpsiy71ajvixhq4pfiq0b19hwj6awgn";
};
librato =
{
@@ -270,8 +270,8 @@
{
owner = "terraform-providers";
repo = "terraform-provider-logicmonitor";
- version = "1.0.0";
- sha256 = "106y74w9nhqs65h26ipyjg636zcrnpn5s8r49sg4kh4ynvnrkv8v";
+ version = "1.1.0";
+ sha256 = "16blwfbvx80j5s6809wrlfnkq0qvjasz0zi4ykwzvkqxh00igj7r";
};
mailgun =
{
@@ -284,8 +284,8 @@
{
owner = "terraform-providers";
repo = "terraform-provider-mysql";
- version = "1.0.1";
- sha256 = "07lm1la9llp52gfs5wf6kq5rjys9lmd3hl7x5821vz54rakzic6n";
+ version = "1.1.0";
+ sha256 = "06alk5vd20wzf493dw8hb80q0sx0kw4j8g1sd0193fhni0k4rflw";
};
newrelic =
{
@@ -298,8 +298,8 @@
{
owner = "terraform-providers";
repo = "terraform-provider-nomad";
- version = "1.1.0";
- sha256 = "0n3bd9fiablhb2zxmlqnidahdqlpj3i7701vi62zds04kcgdkxw8";
+ version = "1.2.0";
+ sha256 = "1z3knyjn5ymbk4vaja4ka9zn57cgl7vr7hqv6ybqw0q9i2ykaici";
};
ns1 =
{
@@ -350,6 +350,13 @@
version = "0.1.0";
sha256 = "0zs0cl6jl4rijcs6vv5k8k5pyf0zs52dlgqcnb1gzslh8sg5pdkm";
};
+ oraclepaas =
+ {
+ owner = "terraform-providers";
+ repo = "terraform-provider-oraclepaas";
+ version = "1.0.0";
+ sha256 = "1h66ijnq172zk0bkv68iq0sy5l6jlasa2pi9q8fq54ib9sxnfkk2";
+ };
ovh =
{
owner = "terraform-providers";
diff --git a/pkgs/applications/networking/cluster/terragrunt/default.nix b/pkgs/applications/networking/cluster/terragrunt/default.nix
index 899c73b9f7b..996c994cf4c 100644
--- a/pkgs/applications/networking/cluster/terragrunt/default.nix
+++ b/pkgs/applications/networking/cluster/terragrunt/default.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "terragrunt-${version}";
- version = "0.14.2";
+ version = "0.14.6";
goPackagePath = "github.com/gruntwork-io/terragrunt";
@@ -10,7 +10,7 @@ buildGoPackage rec {
owner = "gruntwork-io";
repo = "terragrunt";
rev = "v${version}";
- sha256 = "0bnscp0sjnzhnqbm7m5ip6g2608yfvsnr60f03y2qqld8m9wmj32";
+ sha256 = "14zg1h76wfg6aa78llcnza7kapnl5ks6m2vg73b90azfi49fmkwz";
};
goDeps = ./deps.nix;
diff --git a/pkgs/applications/networking/cluster/terragrunt/deps.nix b/pkgs/applications/networking/cluster/terragrunt/deps.nix
index 68d2cb48048..8432a8366b7 100644
--- a/pkgs/applications/networking/cluster/terragrunt/deps.nix
+++ b/pkgs/applications/networking/cluster/terragrunt/deps.nix
@@ -5,8 +5,8 @@
fetch = {
type = "git";
url = "https://github.com/aws/aws-sdk-go";
- rev = "628f99e2cda77dd323992ede8b05961b41f4352f";
- sha256 = "0dbr4czbjpnkira9bhackq01s9b13yvw5dscnxi3mr9adb89y9pm";
+ rev = "25253087ea42da08900c4c1fc34c04bdb4a97d5a";
+ sha256 = "0p6mf53f4l9b26yc4qlm1s7yls73hsw8klyfhmnxhk2mq8k6ix4m";
};
}
{
@@ -50,8 +50,8 @@
fetch = {
type = "git";
url = "https://github.com/hashicorp/go-version";
- rev = "4fe82ae3040f80a03d04d2cccb5606a626b8e1ee";
- sha256 = "0gq4207s1yf2nq4c2ir3bsai29svzz4830g1vbvzdrpis58r1x4m";
+ rev = "23480c0665776210b5fbbac6eaaee40e3e6a96b7";
+ sha256 = "056zs67diq3m7skmmq3pnz6wymfcg55dfs5zf86xkfqqpj10kyf7";
};
}
{
@@ -59,8 +59,8 @@
fetch = {
type = "git";
url = "https://github.com/hashicorp/hcl";
- rev = "23c074d0eceb2b8a5bfdbb271ab780cde70f05a8";
- sha256 = "0db4lpqb5m130rmfy3s3gjjf4dxllypmyrzxv6ggqhkmwmc7w4mc";
+ rev = "f40e974e75af4e271d97ce0fc917af5898ae7bda";
+ sha256 = "1w5w3m40xv85gngw8g1kjbcgah1vl4ardbpg2cxgj1svf80zazxx";
};
}
{
@@ -104,8 +104,8 @@
fetch = {
type = "git";
url = "https://github.com/stretchr/testify";
- rev = "b89eecf5ca5db6d3ba60b237ffe3df7bafb7662f";
- sha256 = "0g946ii8qjaynvidj648z8izl91i6yhy0ir6g3qsrn136im3r8wk";
+ rev = "c679ae2cc0cb27ec3293fea7e254e47386f05d69";
+ sha256 = "1rrdn7k83j492rzhqwkh6956sj8m2nbk44d7r1xa9nsn3hfwj691";
};
}
{
diff --git a/pkgs/applications/networking/compactor/default.nix b/pkgs/applications/networking/compactor/default.nix
new file mode 100644
index 00000000000..749b94f7b7e
--- /dev/null
+++ b/pkgs/applications/networking/compactor/default.nix
@@ -0,0 +1,52 @@
+{ autoconf, automake, boost, cbor-diag, cddl, fetchFromGitHub, file, gcc, libpcap, libtins, libtool, lzma, openssl, pkgconfig, stdenv, tcpdump, wireshark-cli }:
+
+stdenv.mkDerivation rec {
+ name = "compactor-${version}";
+ version = "0.11.0";
+
+ src = fetchFromGitHub {
+ owner = "dns-stats";
+ repo = "compactor";
+ rev = "${version}";
+ sha256 = "1zn6w99xqq5igaz0n89429i78a5pj4nnfn1mm5yv1yfbn1lm0y3l";
+ };
+
+ # cbor-diag, cddl and wireshark-cli are only used for tests.
+ nativeBuildInputs = [ autoconf automake libtool pkgconfig cbor-diag cddl wireshark-cli ];
+ buildInputs = [
+ boost
+ libpcap
+ openssl
+ libtins
+ lzma
+ ];
+
+ patchPhase = ''
+ patchShebangs test-scripts/
+ '';
+
+ preConfigure = ''
+ sh autogen.sh
+ substituteInPlace configure \
+ --replace "/usr/bin/file" "${file}/bin/file"
+ '';
+ CXXFLAGS = "-std=c++11";
+ configureFlags = [
+ "--with-boost-libdir=${boost.out}/lib"
+ "--with-boost=${boost.dev}"
+ ];
+
+ doCheck = true;
+ preCheck = ''
+ substituteInPlace test-scripts/check-live-pcap.sh \
+ --replace "/usr/sbin/tcpdump" "${tcpdump}/bin/tcpdump"
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Tools to capture DNS traffic and record it in C-DNS files";
+ homepage = http://dns-stats.org/;
+ license = [ licenses.boost licenses.mpl20 licenses.openssl ];
+ maintainers = with maintainers; [ fdns ];
+ platforms = stdenv.lib.platforms.unix;
+ };
+}
diff --git a/pkgs/applications/networking/corebird/default.nix b/pkgs/applications/networking/corebird/default.nix
index 216569cc821..56947d6650e 100644
--- a/pkgs/applications/networking/corebird/default.nix
+++ b/pkgs/applications/networking/corebird/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
buildInputs = [
glib gtk3 json-glib sqlite libsoup gettext gnome3.dconf gnome3.gspell glib-networking
- ] ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good (gst-plugins-bad.override { gtkSupport = true; }) gst-libav ]);
+ ] ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-bad (gst-plugins-good.override { gtkSupport = true; }) gst-libav ]);
postPatch = ''
chmod +x data/meson_post_install.py # patchShebangs requires executable file
diff --git a/pkgs/applications/networking/feedreaders/newsboat/default.nix b/pkgs/applications/networking/feedreaders/newsboat/default.nix
index 8546c5b0a3e..24fed4ca852 100644
--- a/pkgs/applications/networking/feedreaders/newsboat/default.nix
+++ b/pkgs/applications/networking/feedreaders/newsboat/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "newsboat-${version}";
- version = "2.10.2";
+ version = "2.11.1";
src = fetchurl {
url = "https://newsboat.org/releases/${version}/${name}.tar.xz";
- sha256 = "1x4nxx1kvmrcm8jy73dvg56h4z15y3sach2vr13cw8rsbi7v99px";
+ sha256 = "1krpxl854h5dwmpr81m1s84cwk8zivdzvw0s5s0i4dba736pvdma";
};
prePatch = ''
diff --git a/pkgs/applications/networking/instant-messengers/blink/default.nix b/pkgs/applications/networking/instant-messengers/blink/default.nix
index f0b74370c3c..63dec91dad9 100644
--- a/pkgs/applications/networking/instant-messengers/blink/default.nix
+++ b/pkgs/applications/networking/instant-messengers/blink/default.nix
@@ -1,13 +1,14 @@
-{ stdenv, fetchurl, pythonPackages, libvncserver, zlib
+{ stdenv, fetchdarcs, pythonPackages, libvncserver, zlib
, gnutls, libvpx, makeDesktopItem }:
pythonPackages.buildPythonApplication rec {
name = "blink-${version}";
- version = "2.0.0";
+ version = "3.0.3";
- src = fetchurl {
- url = "http://download.ag-projects.com/BlinkQt/${name}.tar.gz";
- sha256 = "07hvy45pavgkvdlh4wbz3shsxh4fapg96qlqmfymdi1nfhwghb05";
+ src = fetchdarcs {
+ url = http://devel.ag-projects.com/repositories/blink-qt;
+ rev = "release-${version}";
+ sha256 = "1vj6zzfvxygz0fzr8bhymcw6j4v8xmr0kba53d6qg285j7hj1bdi";
};
patches = [ ./pythonpath.patch ];
@@ -15,7 +16,7 @@ pythonPackages.buildPythonApplication rec {
sed -i 's|@out@|'"''${out}"'|g' blink/resources.py
'';
- propagatedBuildInputs = with pythonPackages; [ pyqt4 cjson sipsimple twisted ];
+ propagatedBuildInputs = with pythonPackages; [ pyqt5 cjson sipsimple twisted google_api_python_client ];
buildInputs = [ pythonPackages.cython zlib libvncserver libvpx ];
diff --git a/pkgs/applications/networking/instant-messengers/gajim/default.nix b/pkgs/applications/networking/instant-messengers/gajim/default.nix
index 4b0533cefb4..3fd8b932283 100644
--- a/pkgs/applications/networking/instant-messengers/gajim/default.nix
+++ b/pkgs/applications/networking/instant-messengers/gajim/default.nix
@@ -17,11 +17,11 @@ with lib;
buildPythonApplication rec {
name = "gajim-${version}";
majorVersion = "1.0";
- version = "${majorVersion}.0";
+ version = "${majorVersion}.1";
src = fetchurl {
url = "https://gajim.org/downloads/${majorVersion}/gajim-${version}.tar.bz2";
- sha256 = "10da4imfldj04917h54vrmg70a1d832jd8p6386paa5jqzf5qk20";
+ sha256 = "16ynws10vhx6rhjjjmzw6iyb3hc19823xhx4gsb14hrc7l8vzd1c";
};
postPatch = ''
diff --git a/pkgs/applications/networking/instant-messengers/nheko/default.nix b/pkgs/applications/networking/instant-messengers/nheko/default.nix
new file mode 100644
index 00000000000..90a546154d1
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/nheko/default.nix
@@ -0,0 +1,83 @@
+{ stdenv, fetchFromGitHub, fetchurl, cmake, doxygen, lmdb, qt5 }:
+
+let
+ json_hpp = fetchurl {
+ url = https://github.com/nlohmann/json/releases/download/v3.1.2/json.hpp;
+ sha256 = "fbdfec4b4cf63b3b565d09f87e6c3c183bdd45c5be1864d3fcb338f6f02c1733";
+ };
+
+ variant_hpp = fetchurl {
+ url = https://github.com/mpark/variant/releases/download/v1.3.0/variant.hpp;
+ sha256 = "1vjiz1x5l8ynqqyb5l9mlrzgps526v45hbmwjilv4brgyi5445fq";
+ };
+
+ matrix-structs = stdenv.mkDerivation rec {
+ name = "matrix-structs-git";
+
+ src = fetchFromGitHub {
+ owner = "mujx";
+ repo = "matrix-structs";
+ rev = "91bb2b85a75d664007ef81aeb500d35268425922";
+ sha256 = "1v544pv18sd91gdrhbk0nm54fggprsvwwrkjmxa59jrvhwdk7rsx";
+ };
+
+ postUnpack = ''
+ cp ${json_hpp} "$sourceRoot/include/json.hpp"
+ cp ${variant_hpp} "$sourceRoot/include/variant.hpp"
+ '';
+
+ patches = [ ./fetchurls.patch ];
+
+ nativeBuildInputs = [ cmake doxygen ];
+ };
+
+ tweeny = fetchFromGitHub {
+ owner = "mobius3";
+ repo = "tweeny";
+ rev = "b94ce07cfb02a0eb8ac8aaf66137dabdaea857cf";
+ sha256 = "1wyyq0j7dhjd6qgvnh3knr70li47hmf5394yznkv9b1indqjx4mi";
+ };
+
+ lmdbxx = fetchFromGitHub {
+ owner = "bendiken";
+ repo = "lmdbxx";
+ rev = "0b43ca87d8cfabba392dfe884eb1edb83874de02";
+ sha256 = "1whsc5cybf9rmgyaj6qjji03fv5jbgcgygp956s3835b9f9cjg1n";
+ };
+in
+stdenv.mkDerivation rec {
+ name = "nheko-${version}";
+ version = "0.3.0";
+
+ src = fetchFromGitHub {
+ owner = "mujx";
+ repo = "nheko";
+ rev = "v${version}";
+ sha256 = "178z64vkl7nmr1amgsgvdcwipj8czp7vbvidxllxiwal21yvqpky";
+ };
+
+ # This patch is likely not strictly speaking needed, but will help detect when
+ # a dependency is updated, so that the fetches up there can be updated too
+ patches = [ ./external-deps.patch ];
+
+ cmakeFlags = [
+ "-DMATRIX_STRUCTS_LIBRARY=${matrix-structs}/lib/static/libmatrix_structs.a"
+ "-DMATRIX_STRUCTS_INCLUDE_DIR=${matrix-structs}/include/matrix_structs"
+ "-DTWEENY_INCLUDE_DIR=${tweeny}/include"
+ "-DLMDBXX_INCLUDE_DIR=${lmdbxx}"
+ ];
+
+ nativeBuildInputs = [ cmake ];
+
+ buildInputs = [
+ lmdb lmdbxx matrix-structs qt5.qtbase qt5.qtmultimedia qt5.qttools tweeny
+ ];
+
+ enableParallelBuilding = true;
+
+ meta = with stdenv.lib; {
+ description = "Desktop client for the Matrix protocol";
+ maintainers = with maintainers; [ ekleog ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/applications/networking/instant-messengers/nheko/external-deps.patch b/pkgs/applications/networking/instant-messengers/nheko/external-deps.patch
new file mode 100644
index 00000000000..661ae756a4d
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/nheko/external-deps.patch
@@ -0,0 +1,94 @@
+diff --git a/cmake/LMDBXX.cmake b/cmake/LMDBXX.cmake
+index 3b9817d..e69de29 100644
+--- a/cmake/LMDBXX.cmake
++++ b/cmake/LMDBXX.cmake
+@@ -1,23 +0,0 @@
+-include(ExternalProject)
+-
+-#
+-# Build lmdbxx.
+-#
+-
+-set(THIRD_PARTY_ROOT ${CMAKE_SOURCE_DIR}/.third-party)
+-set(LMDBXX_ROOT ${THIRD_PARTY_ROOT}/lmdbxx)
+-
+-set(LMDBXX_INCLUDE_DIR ${LMDBXX_ROOT})
+-
+-ExternalProject_Add(
+- lmdbxx
+-
+- GIT_REPOSITORY https://github.com/bendiken/lmdbxx
+- GIT_TAG 0b43ca87d8cfabba392dfe884eb1edb83874de02
+-
+- BUILD_IN_SOURCE 1
+- SOURCE_DIR ${LMDBXX_ROOT}
+- CONFIGURE_COMMAND ""
+- BUILD_COMMAND ""
+- INSTALL_COMMAND ""
+-)
+diff --git a/cmake/MatrixStructs.cmake b/cmake/MatrixStructs.cmake
+index cef00f6..e69de29 100644
+--- a/cmake/MatrixStructs.cmake
++++ b/cmake/MatrixStructs.cmake
+@@ -1,33 +0,0 @@
+-include(ExternalProject)
+-
+-#
+-# Build matrix-structs.
+-#
+-
+-set(THIRD_PARTY_ROOT ${CMAKE_SOURCE_DIR}/.third-party)
+-set(MATRIX_STRUCTS_ROOT ${THIRD_PARTY_ROOT}/matrix_structs)
+-set(MATRIX_STRUCTS_INCLUDE_DIR ${MATRIX_STRUCTS_ROOT}/include)
+-set(MATRIX_STRUCTS_LIBRARY matrix_structs)
+-
+-link_directories(${MATRIX_STRUCTS_ROOT})
+-
+-set(WINDOWS_FLAGS "")
+-
+-if(MSVC)
+- set(WINDOWS_FLAGS "-DCMAKE_GENERATOR_PLATFORM=x64")
+-endif()
+-
+-ExternalProject_Add(
+- MatrixStructs
+-
+- GIT_REPOSITORY https://github.com/mujx/matrix-structs
+- GIT_TAG 91bb2b85a75d664007ef81aeb500d35268425922
+-
+- BUILD_IN_SOURCE 1
+- SOURCE_DIR ${MATRIX_STRUCTS_ROOT}
+- CONFIGURE_COMMAND ${CMAKE_COMMAND}
+- -DCMAKE_BUILD_TYPE=Release ${MATRIX_STRUCTS_ROOT}
+- ${WINDOWS_FLAGS}
+- BUILD_COMMAND ${CMAKE_COMMAND} --build ${MATRIX_STRUCTS_ROOT} --config Release
+- INSTALL_COMMAND ""
+-)
+diff --git a/cmake/Tweeny.cmake b/cmake/Tweeny.cmake
+index 537ac92..e69de29 100644
+--- a/cmake/Tweeny.cmake
++++ b/cmake/Tweeny.cmake
+@@ -1,23 +0,0 @@
+-include(ExternalProject)
+-
+-#
+-# Build tweeny
+-#
+-
+-set(THIRD_PARTY_ROOT ${CMAKE_SOURCE_DIR}/.third-party)
+-set(TWEENY_ROOT ${THIRD_PARTY_ROOT}/tweeny)
+-
+-set(TWEENY_INCLUDE_DIR ${TWEENY_ROOT}/include)
+-
+-ExternalProject_Add(
+- Tweeny
+-
+- GIT_REPOSITORY https://github.com/mobius3/tweeny
+- GIT_TAG b94ce07cfb02a0eb8ac8aaf66137dabdaea857cf
+-
+- BUILD_IN_SOURCE 1
+- SOURCE_DIR ${TWEENY_ROOT}
+- CONFIGURE_COMMAND ""
+- BUILD_COMMAND ""
+- INSTALL_COMMAND ""
+-)
diff --git a/pkgs/applications/networking/instant-messengers/nheko/fetchurls.patch b/pkgs/applications/networking/instant-messengers/nheko/fetchurls.patch
new file mode 100644
index 00000000000..e2f72f600ed
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/nheko/fetchurls.patch
@@ -0,0 +1,21 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 077ac37..c639d71 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -18,16 +18,6 @@ include(Doxygen)
+ #
+ include(CompilerFlags)
+
+-file(DOWNLOAD
+- "https://github.com/nlohmann/json/releases/download/v3.1.2/json.hpp"
+- ${PROJECT_SOURCE_DIR}/include/json.hpp
+- EXPECTED_HASH SHA256=fbdfec4b4cf63b3b565d09f87e6c3c183bdd45c5be1864d3fcb338f6f02c1733)
+-
+-file(DOWNLOAD
+- "https://github.com/mpark/variant/releases/download/v1.3.0/variant.hpp"
+- ${PROJECT_SOURCE_DIR}/include/variant.hpp
+- EXPECTED_MD5 "be0ce322cdd408e1b347b9f1d59ea67a")
+-
+ include_directories(include)
+
+ set(SRC
diff --git a/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix b/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix
index 8cd9eb84b83..fc8a601f1be 100644
--- a/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix
+++ b/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix
@@ -6,7 +6,7 @@ let
# Please keep the version x.y.0.z and do not update to x.y.76.z because the
# source of the latter disappears much faster.
- version = "8.17.0.2";
+ version = "8.18.0.6";
rpath = stdenv.lib.makeLibraryPath [
alsaLib
@@ -57,7 +57,7 @@ let
if stdenv.system == "x86_64-linux" then
fetchurl {
url = "https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb";
- sha256 = "0lv8sb49ws8yjh4kkppzqy7sap2b1fw0y13lsc9s45w8mw3l16rp";
+ sha256 = "193icz1s385d25qzm5vx58h66m4hfwwmkavn0p3w6631gj617hig";
}
else
throw "Skype for linux is not supported on ${stdenv.system}";
diff --git a/pkgs/applications/networking/instant-messengers/slack/default.nix b/pkgs/applications/networking/instant-messengers/slack/default.nix
index b6f731ee651..b1339f6a694 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 = "3.0.5";
+ version = "3.1.0";
rpath = stdenv.lib.makeLibraryPath [
alsaLib
@@ -46,7 +46,7 @@ let
if stdenv.system == "x86_64-linux" then
fetchurl {
url = "https://downloads.slack-edge.com/linux_releases/slack-desktop-${version}-amd64.deb";
- sha256 = "13im5m119cp5v0gvr1vpxjqskr8rvl6pii91b5x522wm7plfhj8s";
+ sha256 = "1y8xxfpqvz4q6y1zkna4cp3rqi7p03w5xgr8h1cmym8z66bj7dq3";
}
else
throw "Slack is not supported on ${stdenv.system}";
diff --git a/pkgs/applications/networking/instant-messengers/telepathy/gabble/default.nix b/pkgs/applications/networking/instant-messengers/telepathy/gabble/default.nix
index 40de405e0d2..2d880bef753 100644
--- a/pkgs/applications/networking/instant-messengers/telepathy/gabble/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telepathy/gabble/default.nix
@@ -2,11 +2,11 @@
, sqlite, libsoup, libnice, gnutls}:
stdenv.mkDerivation rec {
- name = "telepathy-gabble-0.18.3";
+ name = "telepathy-gabble-0.18.4";
src = fetchurl {
url = "http://telepathy.freedesktop.org/releases/telepathy-gabble/${name}.tar.gz";
- sha256 = "1hl9k6jwn2afwwv7br16wfw5szdhwxqziba47xd8vjwvgrh19iwf";
+ sha256 = "174nlkqm055vrhv11gy73m20jbsggcb0ddi51c7s9m3j5ibr2p0i";
};
nativeBuildInputs = [ pkgconfig libxslt ];
diff --git a/pkgs/applications/networking/irc/weechat/default.nix b/pkgs/applications/networking/irc/weechat/default.nix
index cfed44c997a..b2ea28f0cf8 100644
--- a/pkgs/applications/networking/irc/weechat/default.nix
+++ b/pkgs/applications/networking/irc/weechat/default.nix
@@ -72,6 +72,11 @@ let
meta = {
homepage = http://www.weechat.org/;
description = "A fast, light and extensible chat client";
+ longDescription = ''
+ You can find more documentation as to how to customize this package
+ (eg. adding python modules for scripts that would require them, etc.)
+ on https://nixos.org/nixpkgs/manual/#sec-weechat .
+ '';
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ lovek323 garbas the-kenny lheckemann ];
platforms = stdenv.lib.platforms.unix;
@@ -117,4 +122,7 @@ in if configure == null then weechat else
export WEECHAT_EXTRA_LIBDIR=${pluginsDir}
${lib.concatMapStringsSep "\n" (p: lib.optionalString (p ? extraEnv) p.extraEnv) plugins}
exec ${weechat}/bin/weechat "$@"
- '') // { unwrapped = weechat; }
+ '') // {
+ unwrapped = weechat;
+ meta = weechat.meta;
+ }
diff --git a/pkgs/applications/networking/mailreaders/neomutt/default.nix b/pkgs/applications/networking/mailreaders/neomutt/default.nix
index d9c2a136adf..7bd0ea70dc6 100644
--- a/pkgs/applications/networking/mailreaders/neomutt/default.nix
+++ b/pkgs/applications/networking/mailreaders/neomutt/default.nix
@@ -79,7 +79,7 @@ in stdenv.mkDerivation rec {
postInstall = ''
cp ${muttWrapper} $out/bin/mutt
- wrapProgram "$out/bin/neomutt" --prefix PATH : "$out/lib/neomutt"
+ wrapProgram "$out/bin/neomutt" --prefix PATH : "$out/libexec/neomutt"
'';
doCheck = true;
diff --git a/pkgs/applications/networking/mailreaders/notmuch/default.nix b/pkgs/applications/networking/mailreaders/notmuch/default.nix
index a3de728ce41..20e8071b121 100644
--- a/pkgs/applications/networking/mailreaders/notmuch/default.nix
+++ b/pkgs/applications/networking/mailreaders/notmuch/default.nix
@@ -12,7 +12,7 @@
with stdenv.lib;
stdenv.mkDerivation rec {
- version = "0.26";
+ version = "0.26.1";
name = "notmuch-${version}";
passthru = {
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://notmuchmail.org/releases/${name}.tar.gz";
- sha256 = "1pvn1n7giv8n3xlazi3wpscdqhd2yak0fgv68aj23myr5bnr9s6k";
+ sha256 = "0dx8nhdmkaqabxcgxfa757m99fi395y76h9ynx8539yh9m7y9xyk";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/applications/networking/offrss/default.nix b/pkgs/applications/networking/offrss/default.nix
index af6a4dfddc1..d499916c7b6 100644
--- a/pkgs/applications/networking/offrss/default.nix
+++ b/pkgs/applications/networking/offrss/default.nix
@@ -28,6 +28,6 @@ stdenv.mkDerivation {
description = "Offline RSS/Atom reader";
license="AGPLv3+";
maintainers = with stdenv.lib.maintainers; [viric];
- platforms = with stdenv.lib.platforms; all;
+ platforms = stdenv.lib.platforms.linux;
};
}
diff --git a/pkgs/applications/networking/seafile-client/default.nix b/pkgs/applications/networking/seafile-client/default.nix
index 0d7bdf970f5..35926836e30 100644
--- a/pkgs/applications/networking/seafile-client/default.nix
+++ b/pkgs/applications/networking/seafile-client/default.nix
@@ -5,14 +5,14 @@
with stdenv.lib;
stdenv.mkDerivation rec {
- version = "6.1.6";
+ version = "6.1.7";
name = "seafile-client-${version}";
src = fetchFromGitHub {
owner = "haiwen";
repo = "seafile-client";
rev = "v${version}";
- sha256 = "0r02frlspjq8k0zz1z4wh2sx3jm6b1qby5mxg394sb3rjdxb8jhk";
+ sha256 = "1wf258sxn4pqdn1xypqwlxbnls771k2c6whpbinpns3knv5zvgaq";
};
nativeBuildInputs = [ pkgconfig cmake makeWrapper ];
@@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
description = "Desktop client for Seafile, the Next-generation Open Source Cloud Storage";
license = licenses.asl20;
platforms = platforms.linux;
- maintainers = [ ];
+ maintainers = with maintainers; [ dotlambda ];
};
}
diff --git a/pkgs/applications/networking/spideroak/default.nix b/pkgs/applications/networking/spideroak/default.nix
index 4f91a2b24e9..c1f3d62af73 100644
--- a/pkgs/applications/networking/spideroak/default.nix
+++ b/pkgs/applications/networking/spideroak/default.nix
@@ -12,8 +12,8 @@ let
else if stdenv.system == "i686-linux" then "ld-linux.so.2"
else throw "Spideroak client for: ${stdenv.system} not supported!";
- sha256 = if stdenv.system == "x86_64-linux" then "993e01986e3657d6fa979b8d0f45ac25b8223c18f75555016a9f92e651e91b1f"
- else if stdenv.system == "i686-linux" then "d12c09c3a01bfa48bdecc8763bbf2c7f10b71cea5bcecc177dad031ba79bc83d"
+ sha256 = if stdenv.system == "x86_64-linux" then "a88e5a8fe4a565ac500668bd53cf5784752d7c9253304ddce39ee7b01d078533"
+ else if stdenv.system == "i686-linux" then "668f3b83a974a3877d16c8743c233a427ea0a44ab84b7f9aec19a2995db66c16"
else throw "Spideroak client for: ${stdenv.system} not supported!";
ldpath = stdenv.lib.makeLibraryPath [
@@ -21,7 +21,7 @@ let
libX11 libXext libXrender zlib
];
- version = "7.0.1";
+ version = "7.1.0";
in stdenv.mkDerivation {
name = "spideroak-${version}";
diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix
index d79396f3b1d..531a1d5d0a1 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -3,14 +3,14 @@
let
common = { stname, target, patches ? [], postInstall ? "" }:
stdenv.mkDerivation rec {
- version = "0.14.45";
+ version = "0.14.46";
name = "${stname}-${version}";
src = fetchFromGitHub {
owner = "syncthing";
repo = "syncthing";
rev = "v${version}";
- sha256 = "0hhldmvsbvkaj0x6af7c41zq5mbzcymv5xxmwvb4h5zbz49z9vzl";
+ sha256 = "0lv8n5id40iy2gfccy8g45fjzlnbnvi7nlvj25pri22dq2bd5svm";
};
inherit patches;
diff --git a/pkgs/applications/office/abiword/default.nix b/pkgs/applications/office/abiword/default.nix
index ea503b8df9b..8dd127715ae 100644
--- a/pkgs/applications/office/abiword/default.nix
+++ b/pkgs/applications/office/abiword/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchurl, pkgconfig, gtk3, libglade, libgnomecanvas, fribidi
+{ stdenv, fetchurl, pkgconfig, gtk3, fribidi
, libpng, popt, libgsf, enchant, wv, librsvg, bzip2, libjpeg, perl
-, boost, libxslt, goffice, makeWrapper, iconTheme
+, boost, libxslt, goffice, wrapGAppsHook, iconTheme
}:
stdenv.mkDerivation rec {
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
version = "3.0.2";
src = fetchurl {
- url = "http://www.abisource.com/downloads/abiword/${version}/source/${name}.tar.gz";
+ url = "https://www.abisource.com/downloads/abiword/${version}/source/${name}.tar.gz";
sha256 = "08imry821g81apdwym3gcs4nss0l9j5blqk31j5rv602zmcd9gxg";
};
@@ -22,19 +22,16 @@ stdenv.mkDerivation rec {
})
];
- buildInputs =
- [ pkgconfig gtk3 libglade librsvg bzip2 libgnomecanvas fribidi libpng popt
- libgsf enchant wv libjpeg perl boost libxslt goffice makeWrapper iconTheme
- ];
+ nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
- postFixup = ''
- wrapProgram "$out/bin/abiword" \
- --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
- '';
+ buildInputs = [
+ gtk3 librsvg bzip2 fribidi libpng popt
+ libgsf enchant wv libjpeg perl boost libxslt goffice iconTheme
+ ];
meta = with stdenv.lib; {
description = "Word processing program, similar to Microsoft Word";
- homepage = http://www.abisource.com/;
+ homepage = https://www.abisource.com/;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ylwghst ];
diff --git a/pkgs/applications/office/beancount/bean-add.nix b/pkgs/applications/office/beancount/bean-add.nix
index 9eec315217c..cfd7a4eda20 100644
--- a/pkgs/applications/office/beancount/bean-add.nix
+++ b/pkgs/applications/office/beancount/bean-add.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
# The (only) source file states:
# License: "Do what you feel is right, but don't be a jerk" public license.
- maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
+ maintainers = with stdenv.lib.maintainers; [ ];
};
}
diff --git a/pkgs/applications/office/beancount/default.nix b/pkgs/applications/office/beancount/default.nix
index efc61dba7a4..d500be8a1f2 100644
--- a/pkgs/applications/office/beancount/default.nix
+++ b/pkgs/applications/office/beancount/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchhg, pkgs, pythonPackages }:
pythonPackages.buildPythonApplication rec {
- version = "2.0rc1";
+ version = "2.0.0";
name = "beancount-${version}";
namePrefix = "";
src = pkgs.fetchurl {
url = "mirror://pypi/b/beancount/${name}.tar.gz";
- sha256 = "12vlkck4q3dax9866krp6963c6d845b7inkkwrlkk4njh84n71wf";
+ sha256 = "0wxwf02d3raglwqsxdsgf89fniakv1m19q825w76k5z004g18y42";
};
buildInputs = with pythonPackages; [ nose ];
@@ -38,7 +38,7 @@ pythonPackages.buildPythonApplication rec {
generate a variety of reports from them, and provides a web interface.
'';
license = stdenv.lib.licenses.gpl2;
- maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
+ maintainers = with stdenv.lib.maintainers; [ ];
};
}
diff --git a/pkgs/applications/office/fava/default.nix b/pkgs/applications/office/fava/default.nix
index fdbf9183d75..9040e5cb885 100644
--- a/pkgs/applications/office/fava/default.nix
+++ b/pkgs/applications/office/fava/default.nix
@@ -23,7 +23,7 @@ buildPythonApplication rec {
homepage = https://beancount.github.io/fava;
description = "Web interface for beancount";
license = stdenv.lib.licenses.mit;
- maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
+ maintainers = with stdenv.lib.maintainers; [ ];
};
}
diff --git a/pkgs/applications/office/skrooge/default.nix b/pkgs/applications/office/skrooge/default.nix
index ba136f415f2..cd83205172b 100644
--- a/pkgs/applications/office/skrooge/default.nix
+++ b/pkgs/applications/office/skrooge/default.nix
@@ -1,5 +1,5 @@
{ mkDerivation, lib, fetchurl,
- cmake, extra-cmake-modules, qtwebkit, qtscript, grantlee,
+ cmake, extra-cmake-modules, qtwebengine, qtscript, grantlee,
kxmlgui, kwallet, kparts, kdoctools, kjobwidgets, kdesignerplugin,
kiconthemes, knewstuff, sqlcipher, qca-qt5, kactivities, karchive,
kguiaddons, knotifyconfig, krunner, kwindowsystem, libofx, shared-mime-info
@@ -19,11 +19,19 @@ mkDerivation rec {
];
buildInputs = [
- qtwebkit qtscript grantlee kxmlgui kwallet kparts
+ qtwebengine qtscript grantlee kxmlgui kwallet kparts
kjobwidgets kdesignerplugin kiconthemes knewstuff sqlcipher qca-qt5
kactivities karchive kguiaddons knotifyconfig krunner kwindowsystem libofx
];
+ # SKG_DESIGNER must be used to generate the needed library for QtDesigner.
+ # This is needed ONLY for developers. So NOT NEEDED for end user.
+ # Source: https://forum.kde.org/viewtopic.php?f=210&t=143375#p393675
+ cmakeFlags = [
+ "-DSKG_DESIGNER=OFF"
+ "-DSKG_WEBENGINE=ON"
+ ];
+
meta = with lib; {
description = "A personal finances manager, powered by KDE";
license = with licenses; [ gpl3 ];
diff --git a/pkgs/applications/office/wordgrinder/default.nix b/pkgs/applications/office/wordgrinder/default.nix
index be5ac7a2f2b..8efe9b368a0 100644
--- a/pkgs/applications/office/wordgrinder/default.nix
+++ b/pkgs/applications/office/wordgrinder/default.nix
@@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
description = "Text-based word processor";
homepage = https://cowlark.com/wordgrinder;
license = licenses.mit;
- maintainers = with maintainers; [ matthiasbeyer ];
+ maintainers = with maintainers; [ ];
platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}
diff --git a/pkgs/applications/science/biology/igv/default.nix b/pkgs/applications/science/biology/igv/default.nix
index 853203e7dbb..bf963958406 100644
--- a/pkgs/applications/science/biology/igv/default.nix
+++ b/pkgs/applications/science/biology/igv/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "igv-${version}";
- version = "2.4.9";
+ version = "2.4.10";
src = fetchurl {
url = "http://data.broadinstitute.org/igv/projects/downloads/2.4/IGV_${version}.zip";
- sha256 = "0acyq7602g2pz6mc9ip1297c68kgl9pq9yzk3k2lli9l5qvxi3g1";
+ sha256 = "1wyv3ny06m6ipb83hi3pzcc50v49zms69c5714iixh0nqpd826f2";
};
buildInputs = [ unzip jre ];
diff --git a/pkgs/applications/science/electronics/gtkwave/default.nix b/pkgs/applications/science/electronics/gtkwave/default.nix
index 4da7f0f608f..671c53365ab 100644
--- a/pkgs/applications/science/electronics/gtkwave/default.nix
+++ b/pkgs/applications/science/electronics/gtkwave/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "gtkwave-${version}";
- version = "3.3.87";
+ version = "3.3.89";
src = fetchurl {
url = "mirror://sourceforge/gtkwave/${name}.tar.gz";
- sha256 = "0yjvxvqdl276wv0y55bqxwna6lwc99hy6dkfiy6bij3nd1qm5rf6";
+ sha256 = "1j7byy0kmapa66dp17gjvs4pa4gckjccljydixswdknpxs5ma45g";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/applications/science/logic/abella/default.nix b/pkgs/applications/science/logic/abella/default.nix
index 968404362fc..7d71a56fa23 100644
--- a/pkgs/applications/science/logic/abella/default.nix
+++ b/pkgs/applications/science/logic/abella/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "abella-${version}";
- version = "2.0.4";
+ version = "2.0.5";
src = fetchurl {
url = "http://abella-prover.org/distributions/${name}.tar.gz";
- sha256 = "1hnccjlyzwgz7kqsr4xmx9y4wmalbxsj0g6fxdk6xrgpc84ihw2c";
+ sha256 = "0bry4pj6p9y7sg79ygdksynml4rdsjhqi959vnnwwsbaysa3bci0";
};
buildInputs = [ rsync ] ++ (with ocamlPackages; [ ocaml ocamlbuild findlib ]);
diff --git a/pkgs/applications/science/logic/beluga/default.nix b/pkgs/applications/science/logic/beluga/default.nix
new file mode 100644
index 00000000000..da0e9bf1c1d
--- /dev/null
+++ b/pkgs/applications/science/logic/beluga/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchFromGitHub, ocamlPackages, omake }:
+
+stdenv.mkDerivation {
+ name = "beluga-20180403";
+
+ src = fetchFromGitHub {
+ owner = "Beluga-lang";
+ repo = "Beluga";
+ rev = "046aa59f008be70a7c4700b723bed0214ea8b687";
+ sha256 = "0m68y0r0wdw3mg2jks68bihaww7sg305zdfnic1rkndq2cxv0mld";
+ };
+
+ nativeBuildInputs = with ocamlPackages; [ findlib ocamlbuild omake ];
+ buildInputs = with ocamlPackages; [ ocaml ulex ocaml_extlib ];
+
+ installPhase = ''
+ mkdir -p $out
+ cp -r bin $out/
+
+ mkdir -p $out/share/beluga
+ cp -r tools/ examples/ $out/share/beluga
+
+ mkdir -p $out/share/emacs/site-lisp/beluga/
+ cp -r tools/beluga-mode.el $out/share/emacs/site-lisp/beluga
+ '';
+
+ meta = {
+ description = "A functional language for reasoning about formal systems";
+ homepage = http://complogic.cs.mcgill.ca/beluga/;
+ license = stdenv.lib.licenses.gpl3Plus;
+ maintainers = [ stdenv.lib.maintainers.bcdarwin ];
+ platforms = stdenv.lib.platforms.unix;
+ };
+}
diff --git a/pkgs/applications/science/logic/workcraft/default.nix b/pkgs/applications/science/logic/workcraft/default.nix
new file mode 100644
index 00000000000..9ae5d75c457
--- /dev/null
+++ b/pkgs/applications/science/logic/workcraft/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, pkgs, fetchurl, jre, makeWrapper }:
+
+stdenv.mkDerivation rec {
+ name = "workcraft-${version}";
+ version = "3.1.9";
+
+ src = fetchurl {
+ url = "https://github.com/workcraft/workcraft/releases/download/v${version}/workcraft-v${version}-linux.tar.gz";
+ sha256 = "0d1mi8jffwr7irp215j9rfpa3nmwxrx6mv13bh7vn0qf6i0aw0xi";
+ };
+
+ buildInputs = [ makeWrapper ];
+
+ phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
+
+ installPhase = ''
+ mkdir -p $out/share
+ cp -r * $out/share
+ mkdir $out/bin
+ makeWrapper $out/share/workcraft $out/bin/workcraft \
+ --set JAVA_HOME "${jre}" \
+ --set _JAVA_OPTIONS '-Dawt.useSystemAAFontSettings=gasp';
+ '';
+
+ meta = {
+ homepage = http://workcraft.org/;
+ description = "Framework for interpreted graph modeling, verification and synthesis";
+ platforms = stdenv.lib.platforms.linux;
+ license = stdenv.lib.licenses.mit;
+ maintainers = with stdenv.lib.maintainers; [ timor ];
+ inherit version;
+ };
+}
diff --git a/pkgs/applications/science/math/giac/default.nix b/pkgs/applications/science/math/giac/default.nix
index e29ff24e250..6acaa406744 100644
--- a/pkgs/applications/science/math/giac/default.nix
+++ b/pkgs/applications/science/math/giac/default.nix
@@ -9,11 +9,11 @@ assert enableGUI -> libGLU_combined != null && xorg != null && fltk != null;
stdenv.mkDerivation rec {
name = "${attr}-${version}";
attr = if enableGUI then "giac-with-xcas" else "giac";
- version = "1.4.9";
+ version = "1.4.9-59";
src = fetchurl {
- url = "https://www-fourier.ujf-grenoble.fr/~parisse/giac/giac-${version}.tar.bz2";
- sha256 = "1n7xxgpqrsq7cv5wgcmgag6jvxw5wijkf1yv1r5aizlf1rc7dhai";
+ url = "https://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/giac_${version}.tar.gz";
+ sha256 = "0dv5p5y6gkrsmz3xa7fw87rjyabwdwk09mqb09kb7gai9n9dgayk";
};
postPatch = ''
diff --git a/pkgs/applications/science/math/qalculate-gtk/default.nix b/pkgs/applications/science/math/qalculate-gtk/default.nix
index b02a6553257..ce3f975b85b 100644
--- a/pkgs/applications/science/math/qalculate-gtk/default.nix
+++ b/pkgs/applications/science/math/qalculate-gtk/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "qalculate-gtk-${version}";
- version = "2.2.1";
+ version = "2.3.0";
src = fetchurl {
url = "https://github.com/Qalculate/qalculate-gtk/archive/v${version}.tar.gz";
- sha256 = "0sf4ywz8hsszaf0yr0ncdlp7mwjk6b276bwl0j9vf1j925c89pbn";
+ sha256 = "0j5wp6bmnwkyxlvqci6ddg478a0ms93gicvycw0c6bkvs2gd77az";
};
patchPhase = ''
diff --git a/pkgs/applications/science/math/weka/default.nix b/pkgs/applications/science/math/weka/default.nix
index 6a692e07c43..3bfb22dad93 100644
--- a/pkgs/applications/science/math/weka/default.nix
+++ b/pkgs/applications/science/math/weka/default.nix
@@ -1,28 +1,24 @@
-{ stdenv, fetchurl, jre, unzip }:
+{ stdenv, fetchurl, jre, unzip, makeWrapper }:
stdenv.mkDerivation rec {
name = "weka-${version}";
- version = "3.8.2";
+ version = "3.9.2";
src = fetchurl {
url = "mirror://sourceforge/weka/${stdenv.lib.replaceChars ["."]["-"] name}.zip";
- sha256 = "0p353lhhcv3swwn1bl64vkyjk480vv9ghhlyqjxiar4p3xifjayb";
+ sha256 = "0zwmhspmqb0a7cm6k6i0s6q3w19ws1g9dx3cp2v3g3vsif6cdh31";
};
- buildInputs = [ unzip ];
+ buildInputs = [ unzip makeWrapper ];
# 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
+ mkdir -pv $out/share/weka
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
+ makeWrapper ${jre}/bin/java $out/bin/weka \
+ --add-flags "-Xmx1000M -jar $out/share/weka/weka.jar"
'';
meta = {
diff --git a/pkgs/applications/science/spyder/default.nix b/pkgs/applications/science/spyder/default.nix
index ed6e6334a5d..4b3ef167d53 100644
--- a/pkgs/applications/science/spyder/default.nix
+++ b/pkgs/applications/science/spyder/default.nix
@@ -10,11 +10,11 @@
buildPythonApplication rec {
pname = "spyder";
- version = "3.2.7";
+ version = "3.2.8";
src = fetchPypi {
inherit pname version;
- sha256 = "b5bb8fe0a556930dc09b68fa2741a0de3da6488843ec960e0c62f1f3b2e08e2f";
+ sha256 = "0iwcby2bxvayz0kp282yh864br55w6gpd8rqcdj1cp3jbn3q6vg5";
};
# Somehow setuptools can't find pyqt5. Maybe because the dist-info folder is missing?
diff --git a/pkgs/applications/search/catfish/default.nix b/pkgs/applications/search/catfish/default.nix
index 79af80ea75f..adf0f51fc4c 100644
--- a/pkgs/applications/search/catfish/default.nix
+++ b/pkgs/applications/search/catfish/default.nix
@@ -61,7 +61,7 @@ pythonPackages.buildPythonApplication rec {
options.
'';
license = licenses.gpl2Plus;
- platforms = platforms.unix;
+ platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
};
}
diff --git a/pkgs/applications/version-management/bugseverywhere/default.nix b/pkgs/applications/version-management/bugseverywhere/default.nix
index 6301acdf134..7c41a60a725 100644
--- a/pkgs/applications/version-management/bugseverywhere/default.nix
+++ b/pkgs/applications/version-management/bugseverywhere/default.nix
@@ -28,7 +28,7 @@ pythonPackages.buildPythonApplication rec {
homepage = http://www.bugseverywhere.org/;
license = licenses.gpl2Plus;
platforms = platforms.all;
- maintainers = [ maintainers.matthiasbeyer ];
+ maintainers = [ ];
};
}
diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix
index e5e36e998ac..864a69323f8 100644
--- a/pkgs/applications/version-management/git-and-tools/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/default.nix
@@ -15,7 +15,7 @@ let
perlPackages.MIMEBase64 perlPackages.AuthenSASL
perlPackages.DigestHMAC
];
- gitwebPerlLibs = with perlPackages; [ CGI HTMLParser ];
+ gitwebPerlLibs = with perlPackages; [ CGI HTMLParser CGIFast FCGI FCGIProcManager HTMLTagCloud ];
};
in
@@ -117,11 +117,14 @@ rec {
git = gitSVN;
};
- svn_all_fast_export = libsForQt5.callPackage ./svn-all-fast-export { };
+ svn-all-fast-export = libsForQt5.callPackage ./svn-all-fast-export { };
tig = callPackage ./tig { };
topGit = callPackage ./topgit { };
transcrypt = callPackage ./transcrypt { };
+
+ # aliases
+ svn_all_fast_export = svn-all-fast-export;
}
diff --git a/pkgs/applications/version-management/git-and-tools/git-dit/default.nix b/pkgs/applications/version-management/git-and-tools/git-dit/default.nix
index d8104995152..41096441b8e 100644
--- a/pkgs/applications/version-management/git-and-tools/git-dit/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git-dit/default.nix
@@ -41,6 +41,6 @@ buildRustPackage rec {
inherit (src.meta) homepage;
description = "Decentralized Issue Tracking for git";
license = licenses.gpl2;
- maintainers = with maintainers; [ Profpatsch matthiasbeyer ];
+ maintainers = with maintainers; [ Profpatsch ];
};
}
diff --git a/pkgs/applications/version-management/git-and-tools/svn-all-fast-export/default.nix b/pkgs/applications/version-management/git-and-tools/svn-all-fast-export/default.nix
index fbafc5257d7..2dfa61952a5 100644
--- a/pkgs/applications/version-management/git-and-tools/svn-all-fast-export/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/svn-all-fast-export/default.nix
@@ -17,8 +17,8 @@ stdenv.mkDerivation {
patches = [
(fetchpatch {
name = "pr40.patch";
- sha256 = "1qndhk5csf7kddk3giailx7r0cdipq46lj73nkcws43n4n93synk";
- url = https://github.com/svn-all-fast-export/svn2git/pull/40.diff;
+ sha256 = "0mwncklzncsifql9zlxlbj3clsif5p2v1xs8nmxrw44mqvaysjw3";
+ url = https://github.com/svn-all-fast-export/svn2git/compare/f00d5a5...flokli:nixos-20180326.patch;
})
];
@@ -31,8 +31,6 @@ stdenv.mkDerivation {
"SVN_INCLUDE=${subversion.dev}/include/subversion-1"
];
- installPhase = "make install INSTALL_ROOT=$out";
-
meta = with stdenv.lib; {
homepage = https://github.com/svn-all-fast-export/svn2git;
description = "A fast-import based converter for an svn repo to git repos";
diff --git a/pkgs/applications/video/mkvtoolnix/default.nix b/pkgs/applications/video/mkvtoolnix/default.nix
index 7afc3b502ad..3a3a009d18f 100644
--- a/pkgs/applications/video/mkvtoolnix/default.nix
+++ b/pkgs/applications/video/mkvtoolnix/default.nix
@@ -12,13 +12,13 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "mkvtoolnix-${version}";
- version = "21.0.0";
+ version = "22.0.0";
src = fetchFromGitLab {
owner = "mbunkus";
repo = "mkvtoolnix";
rev = "release-${version}";
- sha256 = "06nixp0qqa6g2fv40f7l0i0sqbc7qswpgq4534l98nan08wjbk2r";
+ sha256 = "07nggqkpl6dkfcqli8y9dn0jbznldz03nqj2l3fgj3vhqa0phlab";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/video/obs-studio/default.nix b/pkgs/applications/video/obs-studio/default.nix
index a3ed28c3fd0..f3e2072d6da 100644
--- a/pkgs/applications/video/obs-studio/default.nix
+++ b/pkgs/applications/video/obs-studio/default.nix
@@ -29,13 +29,13 @@ let
optional = stdenv.lib.optional;
in stdenv.mkDerivation rec {
name = "obs-studio-${version}";
- version = "21.0.3";
+ version = "21.1.1";
src = fetchFromGitHub {
owner = "jp9000";
repo = "obs-studio";
rev = "${version}";
- sha256 = "1mrihhzlsc66w5lr1lcm8c8jg6z0iwmmckr3pk3gk92z4s55969q";
+ sha256 = "11gr4szjypihp0562r23pvkmaln6vjz1z4y4ls34bmc8n9ixrdcv";
};
patches = [ ./find-xcb.patch ];
diff --git a/pkgs/applications/video/openshot-qt/libopenshot-audio.nix b/pkgs/applications/video/openshot-qt/libopenshot-audio.nix
index 6591af9d0d8..a0118bea92f 100644
--- a/pkgs/applications/video/openshot-qt/libopenshot-audio.nix
+++ b/pkgs/applications/video/openshot-qt/libopenshot-audio.nix
@@ -4,13 +4,13 @@
with stdenv.lib;
stdenv.mkDerivation rec {
name = "libopenshot-audio-${version}";
- version = "0.1.4";
+ version = "0.1.5";
src = fetchFromGitHub {
owner = "OpenShot";
repo = "libopenshot-audio";
rev = "v${version}";
- sha256 = "07615vacbvi08pzm4lxfckfwib2xcfdjaggpda58hy8nr0677fzq";
+ sha256 = "0rn87jxyfq1yip1lb2255l5ilkakkqg9rn0lr0h6dn2xrmlbmg8l";
};
nativeBuildInputs =
diff --git a/pkgs/applications/video/peek/default.nix b/pkgs/applications/video/peek/default.nix
index 9858edf8238..6a84154818b 100644
--- a/pkgs/applications/video/peek/default.nix
+++ b/pkgs/applications/video/peek/default.nix
@@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
name = "peek-${version}";
- version = "1.2.2";
+ version = "1.3.0";
src = fetchFromGitHub {
owner = "phw";
repo = "peek";
rev = version;
- sha256 = "1ihmq914g2h5iw86bigkkblzqimr50yq6z883lzq656xkcayd8gh";
+ sha256 = "0yizf55rzkm88bfjzwr8yyhm33yqp1mbih2ifwhvnjd1911db0x9";
};
nativeBuildInputs = [ cmake gettext pkgconfig libxml2.bin txt2man vala wrapGAppsHook ];
diff --git a/pkgs/applications/virtualization/dynamips/default.nix b/pkgs/applications/virtualization/dynamips/default.nix
index 811e5cf47c3..8b590cff964 100644
--- a/pkgs/applications/virtualization/dynamips/default.nix
+++ b/pkgs/applications/virtualization/dynamips/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "dynamips";
- version = "0.2.17";
+ version = "0.2.18";
src = fetchFromGitHub {
owner = "GNS3";
repo = pname;
rev = "v${version}";
- sha256 = "12c45jcp9isz57dbshxrvvhqbvmf9cnrr7ddac5m6p34in4hk01n";
+ sha256 = "1jrwvrpl61rqbjjphv8v7ryhdwfjrpps76dbvkpl43hpn5hqqis2";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/applications/virtualization/qemu/riscv-initrd.patch b/pkgs/applications/virtualization/qemu/riscv-initrd.patch
deleted file mode 100644
index a7e5b28cfd5..00000000000
--- a/pkgs/applications/virtualization/qemu/riscv-initrd.patch
+++ /dev/null
@@ -1,98 +0,0 @@
-From 44b0f612499764dad425d467aadacb01fbd4a920 Mon Sep 17 00:00:00 2001
-From: Shea Levy
-Date: Tue, 20 Feb 2018 07:59:43 -0500
-Subject: [PATCH] riscv: Respect the -initrd flag.
-
-Logic for initrd start address borrowed from arm/boot.c
----
- hw/riscv/virt.c | 49 ++++++++++++++++++++++++++++++++++++++++++++++---
- 1 file changed, 46 insertions(+), 3 deletions(-)
-
-diff --git a/hw/riscv/virt.c b/hw/riscv/virt.c
-index 46d95b2b79..5c7d191a3f 100644
---- a/hw/riscv/virt.c
-+++ b/hw/riscv/virt.c
-@@ -77,7 +77,35 @@ static uint64_t load_kernel(const char *kernel_filename)
- return kernel_entry;
- }
-
--static void create_fdt(RISCVVirtState *s, const struct MemmapEntry *memmap,
-+static hwaddr load_initrd(const char *filename, uint64_t mem_size,
-+ uint64_t kernel_entry, hwaddr *start)
-+{
-+ int size;
-+
-+ /* We want to put the initrd far enough into RAM that when the
-+ * kernel is uncompressed it will not clobber the initrd. However
-+ * on boards without much RAM we must ensure that we still leave
-+ * enough room for a decent sized initrd, and on boards with large
-+ * amounts of RAM we must avoid the initrd being so far up in RAM
-+ * that it is outside lowmem and inaccessible to the kernel.
-+ * So for boards with less than 256MB of RAM we put the initrd
-+ * halfway into RAM, and for boards with 256MB of RAM or more we put
-+ * the initrd at 128MB.
-+ */
-+ *start = kernel_entry + MIN(mem_size / 2, 128 * 1024 * 1024);
-+
-+ size = load_ramdisk(filename, *start, mem_size - *start);
-+ if (size == -1) {
-+ size = load_image_targphys(filename, *start, mem_size - *start);
-+ if (size == -1) {
-+ error_report("qemu: could not load ramdisk '%s'", filename);
-+ exit(1);
-+ }
-+ }
-+ return *start + size;
-+}
-+
-+static void *create_fdt(RISCVVirtState *s, const struct MemmapEntry *memmap,
- uint64_t mem_size, const char *cmdline)
- {
- void *fdt;
-@@ -233,6 +261,8 @@ static void create_fdt(RISCVVirtState *s, const struct MemmapEntry *memmap,
- qemu_fdt_setprop_string(fdt, "/chosen", "stdout-path", nodename);
- qemu_fdt_setprop_string(fdt, "/chosen", "bootargs", cmdline);
- g_free(nodename);
-+
-+ return fdt;
- }
-
- static void riscv_virt_board_init(MachineState *machine)
-@@ -246,6 +276,7 @@ static void riscv_virt_board_init(MachineState *machine)
- char *plic_hart_config;
- size_t plic_hart_config_len;
- int i;
-+ void *fdt;
-
- /* Initialize SOC */
- object_initialize(&s->soc, sizeof(s->soc), TYPE_RISCV_HART_ARRAY);
-@@ -265,7 +296,8 @@ static void riscv_virt_board_init(MachineState *machine)
- main_mem);
-
- /* create device tree */
-- create_fdt(s, memmap, machine->ram_size, machine->kernel_cmdline);
-+ fdt = create_fdt(s, memmap, machine->ram_size,
-+ machine->kernel_cmdline);
-
- /* boot rom */
- memory_region_init_ram(boot_rom, NULL, "riscv_virt_board.bootrom",
-@@ -273,7 +305,18 @@ static void riscv_virt_board_init(MachineState *machine)
- memory_region_add_subregion(system_memory, 0x0, boot_rom);
-
- if (machine->kernel_filename) {
-- load_kernel(machine->kernel_filename);
-+ uint64_t kernel_entry = load_kernel(machine->kernel_filename);
-+
-+ if (machine->initrd_filename) {
-+ hwaddr start;
-+ hwaddr end = load_initrd(machine->initrd_filename,
-+ machine->ram_size, kernel_entry,
-+ &start);
-+ qemu_fdt_setprop_cell(fdt, "/chosen",
-+ "linux,initrd-start", start);
-+ qemu_fdt_setprop_cell(fdt, "/chosen", "linux,initrd-end",
-+ end);
-+ }
- }
-
- /* reset vector */
diff --git a/pkgs/applications/virtualization/qemu/riscv.nix b/pkgs/applications/virtualization/qemu/riscv.nix
index 5e234dcb893..29cb8f5bfbc 100644
--- a/pkgs/applications/virtualization/qemu/riscv.nix
+++ b/pkgs/applications/virtualization/qemu/riscv.nix
@@ -1,22 +1,25 @@
{ qemu, fetchFromGitHub, lib }: let
src = fetchFromGitHub {
- owner = "riscv";
- repo = "riscv-qemu";
- rev = "af435b709d4a5de3ec2e59ff4dcd05b0b295a730";
- sha256 = "1kqcsn8yfdg3zyd991i4v5dxznd1l4a4hjry9304lvsm3sz2wllw";
+ owner = "riscv";
+ repo = "riscv-qemu";
+ rev = "f733c7b5f86147216e14aff90c03ccdd76056bef";
+ sha256 = "1ppr9qqwi7qqh8m6dgk1hrzg8zri240il27l67vfayd8ijagb9zq";
fetchSubmodules = true;
};
- version = "2.11.50";
- revCount = "58771";
- shortRev = "af435b709d";
+ version = "2.11.92";
+ revCount = "60378";
+ shortRev = builtins.substring 0 9 src.rev;
targets = [ "riscv32-linux-user" "riscv32-softmmu"
"riscv64-linux-user" "riscv64-softmmu"
];
in lib.overrideDerivation qemu (orig: {
name = "${(builtins.parseDrvName qemu.name).name}-${version}pre${revCount}_${shortRev}";
inherit src;
- # https://github.com/riscv/riscv-qemu/pull/109
- patches = orig.patches ++ [ ./riscv-initrd.patch ];
+ # The pulseaudio and statfs patches are in 2.12.0+, which this is based on
+ patches = [
+ ./force-uid0-on-9p.patch
+ ./no-etc-install.patch
+ ];
configureFlags = orig.configureFlags ++ [ "--target-list=${lib.concatStringsSep "," targets}" ];
postInstall = null;
})
diff --git a/pkgs/applications/virtualization/singularity/default.nix b/pkgs/applications/virtualization/singularity/default.nix
index 66280543895..0a45b4d5d90 100644
--- a/pkgs/applications/virtualization/singularity/default.nix
+++ b/pkgs/applications/virtualization/singularity/default.nix
@@ -17,7 +17,7 @@
stdenv.mkDerivation rec {
name = "singularity-${version}";
- version = "2.4.2";
+ version = "2.4.5";
enableParallelBuilding = true;
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
owner = "singularityware";
repo = "singularity";
rev = version;
- sha256 = "0cpa2yp82g9j64mgr90p75ddk85kbj1qi1r6hy0sz17grqdlaxl4";
+ sha256 = "0wz2in07197n5c2csww864nn2qmr925lqcjsd1kmlwwnrhq6lzl3";
};
nativeBuildInputs = [ autoreconfHook makeWrapper ];
diff --git a/pkgs/applications/window-managers/bspwm/default.nix b/pkgs/applications/window-managers/bspwm/default.nix
index 16c624b09cc..c494ee266be 100644
--- a/pkgs/applications/window-managers/bspwm/default.nix
+++ b/pkgs/applications/window-managers/bspwm/default.nix
@@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
name = "bspwm-${version}";
- version = "0.9.3";
+ version = "0.9.4";
src = fetchFromGitHub {
owner = "baskerville";
repo = "bspwm";
rev = version;
- sha256 = "144g0vg0jsy0lja2jv1qbdps8k05nk70pc7vslj3im61a21vnbis";
+ sha256 = "1srgsszp184zg123wdij0zp57c16m7lmal51rhflyx2c9fiiqm9l";
};
buildInputs = [ libxcb libXinerama xcbutil xcbutilkeysyms xcbutilwm ];
diff --git a/pkgs/applications/window-managers/i3/status-rust.nix b/pkgs/applications/window-managers/i3/status-rust.nix
index 0b86c0283e0..014434011af 100644
--- a/pkgs/applications/window-managers/i3/status-rust.nix
+++ b/pkgs/applications/window-managers/i3/status-rust.nix
@@ -2,13 +2,13 @@
rustPlatform.buildRustPackage rec {
name = "i3status-rust-${version}";
- version = "0.9.0.2018-01-15";
+ version = "0.9.0.2018-03-31";
src = fetchFromGitHub {
owner = "greshake";
repo = "i3status-rust";
- rev = "aa7bc98d945ba63358cd48c66e0261c201b999e4";
- sha256 = "1q2p53nl499yxsw0i81ryyc2ln80p8i3iii5hx7aiwfi4ybm55b1";
+ rev = "18f99299bcd5b63da4e315c8d78622c4bbf59c45";
+ sha256 = "1pfcq3f724ri6jzchkgf96zd7lb5mc882r64ffx634gqf3n8ch41";
};
cargoSha256 = "1197hp6d4z14j0r22bvw9ly294li0ivg6yfql4lgi27hbvzag71h";
diff --git a/pkgs/applications/window-managers/icewm/default.nix b/pkgs/applications/window-managers/icewm/default.nix
index ffd1d995e87..3329b3b69e0 100644
--- a/pkgs/applications/window-managers/icewm/default.nix
+++ b/pkgs/applications/window-managers/icewm/default.nix
@@ -34,6 +34,6 @@ stdenv.mkDerivation rec {
homepage = http://www.icewm.org/;
license = licenses.lgpl2;
maintainers = [ maintainers.AndersonTorres ];
- platforms = platforms.unix;
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/build-support/bintools-wrapper/default.nix b/pkgs/build-support/bintools-wrapper/default.nix
index ae910b76c70..5c0436b73dd 100644
--- a/pkgs/build-support/bintools-wrapper/default.nix
+++ b/pkgs/build-support/bintools-wrapper/default.nix
@@ -53,6 +53,7 @@ let
dynamicLinker =
/**/ if libc == null then null
else if targetPlatform.libc == "musl" then "${libc_lib}/lib/ld-musl-*"
+ else if targetPlatform.libc == "bionic" then "/system/bin/linker"
else if targetPlatform.system == "i686-linux" then "${libc_lib}/lib/ld-linux.so.2"
else if targetPlatform.system == "x86_64-linux" then "${libc_lib}/lib/ld-linux-x86-64.so.2"
# ARM with a wildcard, which can be "" or "-armhf".
diff --git a/pkgs/build-support/rust/build-rust-crate.nix b/pkgs/build-support/rust/build-rust-crate.nix
index 8a9a07fd7a8..b07a09d6355 100644
--- a/pkgs/build-support/rust/build-rust-crate.nix
+++ b/pkgs/build-support/rust/build-rust-crate.nix
@@ -19,7 +19,7 @@ let makeDeps = dependencies:
echo_build_heading() {
start=""
end=""
- if [[ x"${colors}" -eq x"always" ]]; then
+ if [[ "${colors}" == "always" ]]; then
start="$(printf '\033[0;1;32m')" #set bold, and set green.
end="$(printf '\033[0m')" #returns to "normal"
fi
@@ -34,7 +34,7 @@ let makeDeps = dependencies:
noisily() {
start=""
end=""
- if [[ x"${colors}" -eq x"always" ]]; then
+ if [[ "${colors}" == "always" ]]; then
start="$(printf '\033[0;1;32m')" #set bold, and set green.
end="$(printf '\033[0m')" #returns to "normal"
fi
@@ -194,7 +194,7 @@ let makeDeps = dependencies:
bold=""
green=""
boldgreen=""
- if [[ "${colors}" -eq "always" ]]; then
+ if [[ "${colors}" == "always" ]]; then
norm="$(printf '\033[0m')" #returns to "normal"
bold="$(printf '\033[0;1m')" #set bold
green="$(printf '\033[0;32m')" #set green
@@ -230,7 +230,7 @@ let makeDeps = dependencies:
${crateFeatures} --out-dir target/bin --emit=dep-info,link -L dependency=target/deps \
$LINK ${deps}$EXTRA_LIB --cap-lints allow \
$BUILD_OUT_DIR $EXTRA_BUILD $EXTRA_FEATURES --color ${colors}
- if [ "$crate_name_" -ne "$crate_name" ]; then
+ if [ "$crate_name_" != "$crate_name" ]; then
mv target/bin/$crate_name_ target/bin/$crate_name
fi
}
diff --git a/pkgs/data/documentation/stdman/default.nix b/pkgs/data/documentation/stdman/default.nix
index 59a7612c6aa..25df45258a6 100644
--- a/pkgs/data/documentation/stdman/default.nix
+++ b/pkgs/data/documentation/stdman/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "stdman-${version}";
- version = "2017.04.02";
+ version = "2018.03.11";
src = fetchFromGitHub {
owner = "jeaye";
repo = "stdman";
rev = "${version}";
- sha256 = "1wfxd9ca8b9l976rnlhjd0sp364skfm99wxi633swwwjvhy26sgm";
+ sha256 = "1017vwhcwlwi5sa8h6pkhj048in826wxnhl6qarykmzksvidff3r";
};
outputDevdoc = "out";
diff --git a/pkgs/data/fonts/emojione/default.nix b/pkgs/data/fonts/emojione/default.nix
index 560aed970bb..9d4c1e22e14 100644
--- a/pkgs/data/fonts/emojione/default.nix
+++ b/pkgs/data/fonts/emojione/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
description = "Open source emoji set";
homepage = http://emojione.com/;
license = licenses.cc-by-40;
- platforms = platforms.all;
+ platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}
diff --git a/pkgs/data/fonts/tex-gyre-math/default.nix b/pkgs/data/fonts/tex-gyre-math/default.nix
index e99e0bfb342..3f9726ee094 100644
--- a/pkgs/data/fonts/tex-gyre-math/default.nix
+++ b/pkgs/data/fonts/tex-gyre-math/default.nix
@@ -1,4 +1,4 @@
-{ variant, stdenv, fetchzip }:
+{ stdenv, fetchzip }:
let
variants = {
@@ -27,40 +27,43 @@ let
outputHash = "0pa433cgshlypbyrrlp3qq0wg972rngcp37pr8pxdfshgz13q1mm";
};
};
- current = variants."${variant}";
- dotless_version = builtins.replaceStrings ["."] [""] current.version;
-in stdenv.mkDerivation rec {
- name = "tex-gyre-${variant}-math-${current.version}";
- version = "${current.version}";
- src = fetchzip {
- url = "www.gust.org.pl/projects/e-foundry/tg-math/download/texgyre${variant}-math-${dotless_version}.zip";
- sha256 = current.sha256;
- };
+ mkVariant = variant: current:
+ let dotless_version = builtins.replaceStrings ["."] [""] current.version; in
+ stdenv.mkDerivation rec {
+ name = "tex-gyre-${variant}-math-${current.version}";
+ version = "${current.version}";
- installPhase = ''
- mkdir -p $out/share/fonts/opentype/
- mkdir -p $out/share/doc/${name}/
- cp -v opentype/*.otf $out/share/fonts/opentype/
- cp -v doc/*.txt $out/share/doc/${name}/
- '';
+ src = fetchzip {
+ url = "www.gust.org.pl/projects/e-foundry/tg-math/download/texgyre${variant}-math-${dotless_version}.zip";
+ sha256 = current.sha256;
+ };
- outputHashAlgo = "sha256";
- outputHashMode = "recursive";
- outputHash = current.outputHash;
+ installPhase = ''
+ mkdir -p $out/share/fonts/opentype/
+ mkdir -p $out/share/doc/${name}/
+ cp -v opentype/*.otf $out/share/fonts/opentype/
+ cp -v doc/*.txt $out/share/doc/${name}/
+ '';
- meta = with stdenv.lib; {
- longDescription = ''
- TeX Gyre ${current.displayName} Math is a math companion for the TeX Gyre
- ${current.displayName} family of fonts (see
- http://www.gust.org.pl/projects/e-foundry/tex-gyre/) in the OpenType format.
- '';
- homepage = http://www.gust.org.pl/projects/e-foundry/tg-math;
- # "The TeX Gyre Math fonts are licensed under the GUST Font License (GFL),
- # which is a free license, legally equivalent to the LaTeX Project Public
- # License (LPPL), version 1.3c or later." - GUST website
- license = licenses.lppl13c;
- maintainers = with maintainers; [ siddharthist ];
- platforms = platforms.all;
- };
-}
+ outputHashAlgo = "sha256";
+ outputHashMode = "recursive";
+ outputHash = current.outputHash;
+
+ meta = with stdenv.lib; {
+ longDescription = ''
+ TeX Gyre ${current.displayName} Math is a math companion for the TeX Gyre
+ ${current.displayName} family of fonts (see
+ http://www.gust.org.pl/projects/e-foundry/tex-gyre/) in the OpenType format.
+ '';
+ homepage = http://www.gust.org.pl/projects/e-foundry/tg-math;
+ # "The TeX Gyre Math fonts are licensed under the GUST Font License (GFL),
+ # which is a free license, legally equivalent to the LaTeX Project Public
+ # License (LPPL), version 1.3c or later." - GUST website
+ license = licenses.lppl13c;
+ maintainers = with maintainers; [ siddharthist ];
+ platforms = platforms.all;
+ };
+ };
+in
+ stdenv.lib.mapAttrs mkVariant variants
diff --git a/pkgs/data/misc/hackage/default.nix b/pkgs/data/misc/hackage/default.nix
index 792ff030492..b359f9ce7a6 100644
--- a/pkgs/data/misc/hackage/default.nix
+++ b/pkgs/data/misc/hackage/default.nix
@@ -1,6 +1,6 @@
{ fetchurl }:
fetchurl {
- url = "https://github.com/commercialhaskell/all-cabal-hashes/archive/6272b092cf23aa30154cd90ab0f5786c69bceb17.tar.gz";
- sha256 = "11qs8whpqkj1l3mhx9ibpwh5pwgwj0xb6r9r8c7wk414vdmaa5mw";
+ url = "https://github.com/commercialhaskell/all-cabal-hashes/archive/3f7d88041d19d251bca6330e9008175875c0ed4a.tar.gz";
+ sha256 = "18aymxbm7zhmh8jciq2p1hjdfwq5g31s5mmw3lqwaviigcisq22a";
}
diff --git a/pkgs/desktops/enlightenment/econnman.nix b/pkgs/desktops/enlightenment/econnman.nix
index 7739e2bd09e..60e63dc68ed 100644
--- a/pkgs/desktops/enlightenment/econnman.nix
+++ b/pkgs/desktops/enlightenment/econnman.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, efl, python2Packages, dbus, curl, makeWrapper }:
+{ stdenv, fetchurl, pkgconfig, efl, python2Packages, dbus, makeWrapper }:
stdenv.mkDerivation rec {
name = "econnman-${version}";
@@ -11,13 +11,12 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ makeWrapper pkgconfig python2Packages.wrapPython ];
- buildInputs = [ efl python2Packages.python dbus curl ];
+ buildInputs = [ efl python2Packages.python dbus ];
pythonPath = [ python2Packages.pythonefl python2Packages.dbus-python ];
postInstall = ''
wrapPythonPrograms
- wrapProgram $out/bin/econnman-bin --prefix LD_LIBRARY_PATH : ${curl.out}/lib
'';
meta = {
diff --git a/pkgs/desktops/enlightenment/efl.nix b/pkgs/desktops/enlightenment/efl.nix
index 190ee6c3574..1787737a156 100644
--- a/pkgs/desktops/enlightenment/efl.nix
+++ b/pkgs/desktops/enlightenment/efl.nix
@@ -70,6 +70,12 @@ stdenv.mkDerivation rec {
'Cflags: -I''${includedir}/eina-1/eina'"$modules"
'';
+ # EFL applications depend on libcurl, although it is linked at
+ # runtime by hand in code (it is dlopened).
+ postFixup = ''
+ patchelf --add-needed ${curl.out}/lib/libcurl.so $out/lib/libecore_con.so
+ '';
+
enableParallelBuilding = true;
meta = {
diff --git a/pkgs/desktops/enlightenment/enlightenment.nix b/pkgs/desktops/enlightenment/enlightenment.nix
index 5dc9e9a7262..9b782b94f7f 100644
--- a/pkgs/desktops/enlightenment/enlightenment.nix
+++ b/pkgs/desktops/enlightenment/enlightenment.nix
@@ -6,11 +6,11 @@
stdenv.mkDerivation rec {
name = "enlightenment-${version}";
- version = "0.22.2";
+ version = "0.22.3";
src = fetchurl {
url = "http://download.enlightenment.org/rel/apps/enlightenment/${name}.tar.xz";
- sha256 = "0b33w75s4w7xmz9cv8dyp8vy2gcffnrvjys20fhcpw26abw1wn2d";
+ sha256 = "16zydv7z94aw3rywmb9gr8ya85k7b75h22wng95lfx1x0y1yb0ad";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/enlightenment/ephoto.nix b/pkgs/desktops/enlightenment/ephoto.nix
index eef9eafae38..6a49852909e 100644
--- a/pkgs/desktops/enlightenment/ephoto.nix
+++ b/pkgs/desktops/enlightenment/ephoto.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, efl, pcre, curl, makeWrapper }:
+{ stdenv, fetchurl, pkgconfig, efl, pcre, makeWrapper }:
stdenv.mkDerivation rec {
name = "ephoto-${version}";
@@ -11,11 +11,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ (pkgconfig.override { vanilla = true; }) makeWrapper ];
- buildInputs = [ efl pcre curl ];
-
- postInstall = ''
- wrapProgram $out/bin/ephoto --prefix LD_LIBRARY_PATH : ${curl.out}/lib
- '';
+ buildInputs = [ efl pcre ];
meta = {
description = "Image viewer and editor written using the Enlightenment Foundation Libraries";
diff --git a/pkgs/desktops/enlightenment/rage.nix b/pkgs/desktops/enlightenment/rage.nix
index 9b3bdc90eb5..5de22522073 100644
--- a/pkgs/desktops/enlightenment/rage.nix
+++ b/pkgs/desktops/enlightenment/rage.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, meson, ninja, pkgconfig, efl, gst_all_1, pcre, curl, wrapGAppsHook }:
+{ stdenv, fetchurl, meson, ninja, pkgconfig, efl, gst_all_1, pcre, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "rage-${version}";
@@ -24,12 +24,7 @@ stdenv.mkDerivation rec {
gst_all_1.gst-plugins-bad
gst_all_1.gst-libav
pcre
- curl
- ];
-
- postInstall = ''
- wrapProgram $out/bin/rage --prefix LD_LIBRARY_PATH : ${curl.out}/lib
- '';
+ ];
meta = {
description = "Video + Audio player along the lines of mplayer";
diff --git a/pkgs/desktops/enlightenment/terminology.nix b/pkgs/desktops/enlightenment/terminology.nix
index 935546efa86..3a52707fcf4 100644
--- a/pkgs/desktops/enlightenment/terminology.nix
+++ b/pkgs/desktops/enlightenment/terminology.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, efl, pcre, curl, makeWrapper }:
+{ stdenv, fetchurl, pkgconfig, efl, pcre, makeWrapper }:
stdenv.mkDerivation rec {
name = "terminology-${version}";
@@ -17,15 +17,8 @@ stdenv.mkDerivation rec {
buildInputs = [
efl
pcre
- curl
];
- postInstall = ''
- for f in $out/bin/*; do
- wrapProgram $f --prefix LD_LIBRARY_PATH : ${curl.out}/lib
- done
- '';
-
meta = {
description = "The best terminal emulator written with the EFL";
homepage = http://enlightenment.org/;
diff --git a/pkgs/desktops/gnome-3/apps/gnome-music/default.nix b/pkgs/desktops/gnome-3/apps/gnome-music/default.nix
index 47ea6768a04..982cd9283ff 100644
--- a/pkgs/desktops/gnome-3/apps/gnome-music/default.nix
+++ b/pkgs/desktops/gnome-3/apps/gnome-music/default.nix
@@ -21,7 +21,7 @@ python3.pkgs.buildPythonApplication rec {
gdk_pixbuf gnome3.defaultIconTheme python3
grilo grilo-plugins libnotify
gnome3.gsettings-desktop-schemas tracker
- gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad
+ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly
];
propagatedBuildInputs = with python3.pkgs; [ pycairo dbus-python requests pygobject3 ];
diff --git a/pkgs/desktops/gnome-3/core/evince/default.nix b/pkgs/desktops/gnome-3/core/evince/default.nix
index c60087cf47b..59a7c6806ef 100644
--- a/pkgs/desktops/gnome-3/core/evince/default.nix
+++ b/pkgs/desktops/gnome-3/core/evince/default.nix
@@ -1,6 +1,6 @@
{ fetchurl, stdenv, pkgconfig, intltool, libxml2
, glib, gtk3, pango, atk, gdk_pixbuf, shared-mime-info, itstool, gnome3
-, poppler, ghostscriptX, djvulibre, libspectre, libsecret, wrapGAppsHook
+, poppler, ghostscriptX, djvulibre, libspectre, libarchive, libsecret, wrapGAppsHook
, librsvg, gobjectIntrospection, yelp-tools
, recentListSize ? null # 5 is not enough, allow passing a different number
, supportXPS ? false # Open XML Paper Specification via libgxps
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
buildInputs = [
glib gtk3 pango atk gdk_pixbuf libxml2
gnome3.gsettings-desktop-schemas
- poppler ghostscriptX djvulibre libspectre
+ poppler ghostscriptX djvulibre libspectre libarchive
libsecret librsvg gnome3.adwaita-icon-theme
] ++ stdenv.lib.optional supportXPS gnome3.libgxps;
diff --git a/pkgs/desktops/gnome-3/core/evolution-data-server/default.nix b/pkgs/desktops/gnome-3/core/evolution-data-server/default.nix
index 8abb51b56e7..7a01d73ebf4 100644
--- a/pkgs/desktops/gnome-3/core/evolution-data-server/default.nix
+++ b/pkgs/desktops/gnome-3/core/evolution-data-server/default.nix
@@ -32,6 +32,9 @@ stdenv.mkDerivation rec {
"-DCMAKE_SKIP_BUILD_RPATH=OFF"
];
+ postPatch = ''
+ cmakeFlags="-DINCLUDE_INSTALL_DIR=$dev/include $cmakeFlags"
+ '';
preFixup = ''
for f in $(find $out/libexec/ -type f -executable); do
diff --git a/pkgs/desktops/gnome-3/core/gnome-keyring/default.nix b/pkgs/desktops/gnome-3/core/gnome-keyring/default.nix
index 20ff00ff218..740748631ee 100644
--- a/pkgs/desktops/gnome-3/core/gnome-keyring/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-keyring/default.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
name = "gnome-keyring-${version}";
- version = "3.28.0.1";
+ version = "3.28.0.2";
src = fetchurl {
url = "mirror://gnome/sources/gnome-keyring/${gnome3.versionBranch version}/${name}.tar.xz";
- sha256 = "0qxxc3wx4abb07vmbhqy4gipdzilx3v8yba9hsfzpn8p15prjz6i";
+ sha256 = "0a52xz535vgfymjw3cxmryi3xn2ik24vwk6sixyb7q6jgmqi4bw8";
};
passthru = {
diff --git a/pkgs/desktops/gnome-3/core/gnome-shell-extensions/default.nix b/pkgs/desktops/gnome-3/core/gnome-shell-extensions/default.nix
index 0d856e494c3..7ba3545848f 100644
--- a/pkgs/desktops/gnome-3/core/gnome-shell-extensions/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-shell-extensions/default.nix
@@ -1,4 +1,5 @@
-{ stdenv, fetchurl, meson, ninja, gettext, pkgconfig, spidermonkey_52, glib, gnome3 }:
+{ stdenv, fetchurl, meson, ninja, gettext, pkgconfig, spidermonkey_52, glib
+, gnome3, substituteAll }:
stdenv.mkDerivation rec {
name = "gnome-shell-extensions-${version}";
@@ -16,6 +17,13 @@ stdenv.mkDerivation rec {
};
};
+ patches = [
+ (substituteAll {
+ src = ./fix_gmenu.patch;
+ gmenu_path = "${gnome3.gnome-menus}/lib/girepository-1.0";
+ })
+ ];
+
doCheck = true;
nativeBuildInputs = [ meson ninja pkgconfig gettext glib ];
@@ -23,6 +31,28 @@ stdenv.mkDerivation rec {
mesonFlags = [ "-Dextension_set=all" ];
+ preFixup = ''
+ # The meson build doesn't compile the schemas.
+ # Fixup adapted from export-zips.sh in the source.
+
+ extensiondir=$out/share/gnome-shell/extensions
+ schemadir=$out/share/gsettings-schemas/gnome-shell-extensions-3.28.0/glib-2.0/schemas/
+
+ glib-compile-schemas $schemadir
+
+ for f in $extensiondir/*; do
+ name=`basename ''${f%%@*}`
+ uuid=$name@gnome-shell-extensions.gcampax.github.com
+ schema=$schemadir/org.gnome.shell.extensions.$name.gschema.xml
+
+ if [ -f $schema ]; then
+ mkdir $f/schemas
+ ln -s $schema $f/schemas;
+ glib-compile-schemas $f/schemas
+ fi
+ done
+ '';
+
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Projects/GnomeShell/Extensions;
description = "Modify and extend GNOME Shell functionality and behavior";
diff --git a/pkgs/desktops/gnome-3/core/gnome-shell-extensions/fix_gmenu.patch b/pkgs/desktops/gnome-3/core/gnome-shell-extensions/fix_gmenu.patch
new file mode 100644
index 00000000000..c384826de61
--- /dev/null
+++ b/pkgs/desktops/gnome-3/core/gnome-shell-extensions/fix_gmenu.patch
@@ -0,0 +1,24 @@
+From f72924a59d4a30daefccf84526bd854ebbe65ac8 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Tor=20Hedin=20Br=C3=B8nner?=
+Date: Tue, 3 Apr 2018 14:13:12 +0200
+Subject: [PATCH] Fix gmenu typelib path
+
+---
+ extensions/apps-menu/extension.js | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/extensions/apps-menu/extension.js b/extensions/apps-menu/extension.js
+index 5b38213..d706f64 100644
+--- a/extensions/apps-menu/extension.js
++++ b/extensions/apps-menu/extension.js
+@@ -1,5 +1,7 @@
+ /* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
+
++imports.gi.GIRepository.Repository.prepend_search_path('@gmenu_path@');
++
+ const Atk = imports.gi.Atk;
+ const DND = imports.ui.dnd;
+ const GMenu = imports.gi.GMenu;
+--
+2.16.2
+
diff --git a/pkgs/desktops/gnome-3/core/gnome-themes-extra/default.nix b/pkgs/desktops/gnome-3/core/gnome-themes-extra/default.nix
index dd11da3b11e..0503d3baa6c 100644
--- a/pkgs/desktops/gnome-3/core/gnome-themes-extra/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-themes-extra/default.nix
@@ -3,13 +3,13 @@
let
pname = "gnome-themes-extra";
- version = "3.27.92";
+ version = "3.28";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
- sha256 = "04jwsg9f29vzhcmf146d3rr27c8ldra378m465ahsal9vaaiywcm";
+ sha256 = "06aqg9asq2vqi9wr29bs4v8z2bf4manhbhfghf4nvw01y2zs0jvw";
};
passthru = {
diff --git a/pkgs/desktops/gnome-3/core/libgweather/default.nix b/pkgs/desktops/gnome-3/core/libgweather/default.nix
index 7c513e9398a..fbae8fbcfbd 100644
--- a/pkgs/desktops/gnome-3/core/libgweather/default.nix
+++ b/pkgs/desktops/gnome-3/core/libgweather/default.nix
@@ -3,7 +3,7 @@
let
pname = "libgweather";
- version = "3.28.0";
+ version = "3.28.1";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
@@ -11,7 +11,7 @@ in stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
- sha256 = "13z12ra5fhn7xhsrskd7q8dnc2qnd1kylhndg6zlhk0brj6yfjsr";
+ sha256 = "1qqbfgmlfs0g0v92rdl96v2b44yr3sqj9x7zpqv1nx9aaf486yhm";
};
nativeBuildInputs = [ meson ninja pkgconfig gettext vala gtk-doc docbook_xsl gobjectIntrospection ];
diff --git a/pkgs/desktops/gnome-3/extensions/dash-to-dock/default.nix b/pkgs/desktops/gnome-3/extensions/dash-to-dock/default.nix
index 87e0d79dce6..152b9522bef 100644
--- a/pkgs/desktops/gnome-3/extensions/dash-to-dock/default.nix
+++ b/pkgs/desktops/gnome-3/extensions/dash-to-dock/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "gnome-shell-dash-to-dock-${version}";
- version = "v62";
+ version = "v63";
src = fetchFromGitHub {
owner = "micheleg";
repo = "dash-to-dock";
rev = "extensions.gnome.org-" + version;
- sha256 = "1kmf7vxhd1c1zgaim1pwmcmsg0kffng7hcl5gfcy5qb5yvb4dy5d";
+ sha256 = "140ih4l3nn2lbgw684xjvkhqxflr1xg2vm1m46z632bb0y3py4yg";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/gnome-3/extensions/impatience.nix b/pkgs/desktops/gnome-3/extensions/impatience.nix
index d82ff652bd0..24b4c1cf703 100644
--- a/pkgs/desktops/gnome-3/extensions/impatience.nix
+++ b/pkgs/desktops/gnome-3/extensions/impatience.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "gnome-shell-impatience-${version}";
- version = "6564c21e4caf4a6bc5fe2bf21116d7c15408d494";
+ version = "0.4.5";
src = fetchFromGitHub {
owner = "timbertson";
repo = "gnome-shell-impatience";
- rev = version;
- sha256 = "10zyj42i07dcvaciv47qgkcs5g5n2bpc8a0m6fsimfi0442iwlcn";
+ rev = "version-${version}";
+ sha256 = "0kvdhlz41fjyqdgcfw6mrr9nali6wg2qwji3dvykzfi0aypljzpx";
};
buildInputs = [
@@ -20,7 +20,8 @@ stdenv.mkDerivation rec {
'';
installPhase = ''
- cp -r impatience $out
+ mkdir -p $out/share/gnome-shell/extensions
+ cp -r impatience $out/share/gnome-shell/extensions/${uuid}
'';
uuid = "impatience@gfxmonk.net";
@@ -28,7 +29,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Speed up builtin gnome-shell animations";
license = licenses.gpl3Plus;
- maintainers = with maintainers; [ aneeshusa timbertson ];
+ maintainers = with maintainers; [ aneeshusa timbertson tiramiseb ];
homepage = http://gfxmonk.net/dist/0install/gnome-shell-impatience.xml;
};
}
diff --git a/pkgs/desktops/gnome-3/extensions/system-monitor.nix b/pkgs/desktops/gnome-3/extensions/system-monitor/default.nix
similarity index 51%
rename from pkgs/desktops/gnome-3/extensions/system-monitor.nix
rename to pkgs/desktops/gnome-3/extensions/system-monitor/default.nix
index 0c3e65633c8..eed34ae523d 100644
--- a/pkgs/desktops/gnome-3/extensions/system-monitor.nix
+++ b/pkgs/desktops/gnome-3/extensions/system-monitor/default.nix
@@ -1,18 +1,28 @@
-{ stdenv, fetchFromGitHub, glib }:
+{ config, stdenv, substituteAll, fetchFromGitHub, glib, glib_networking, libgtop, pkgs }:
stdenv.mkDerivation rec {
name = "gnome-shell-system-monitor-${version}";
- version = "8b31f070e9e59109d729661ced313d6a63e31787";
+ version = "33";
src = fetchFromGitHub {
owner = "paradoxxxzero";
repo = "gnome-shell-system-monitor-applet";
- rev = version;
- sha256 = "0fm5zb6qp53jjy2mnkb8ybxygzjwpb314giiq0ywq87hhrpch8m3";
+ rev = "v${version}";
+ sha256 = "0abqaanl5r26x8f0mm0jgrjsr86hcx7mk75dx5c3zz7csw4nclkk";
};
buildInputs = [
glib
+ glib_networking
+ libgtop
+ ];
+
+ patches = [
+ (substituteAll {
+ src = ./paths_and_nonexisting_dirs.patch;
+ gtop_path = "${libgtop}/lib/girepository-1.0";
+ glib_net_path = "${glib_networking}/lib/girepository-1.0";
+ })
];
buildPhase = ''
@@ -20,7 +30,8 @@ stdenv.mkDerivation rec {
'';
installPhase = ''
- cp -r ${uuid} $out
+ mkdir -p $out/share/gnome-shell/extensions
+ cp -r ${uuid} $out/share/gnome-shell/extensions
'';
uuid = "system-monitor@paradoxxx.zero.gmail.com";
@@ -28,7 +39,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Display system informations in gnome shell status bar";
license = licenses.gpl3Plus;
- maintainers = with maintainers; [ aneeshusa ];
+ maintainers = with maintainers; [ aneeshusa tiramiseb ];
homepage = https://github.com/paradoxxxzero/gnome-shell-system-monitor-applet;
};
}
diff --git a/pkgs/desktops/gnome-3/extensions/system-monitor/paths_and_nonexisting_dirs.patch b/pkgs/desktops/gnome-3/extensions/system-monitor/paths_and_nonexisting_dirs.patch
new file mode 100644
index 00000000000..82e3d7c541b
--- /dev/null
+++ b/pkgs/desktops/gnome-3/extensions/system-monitor/paths_and_nonexisting_dirs.patch
@@ -0,0 +1,23 @@
+diff --git a/system-monitor@paradoxxx.zero.gmail.com/extension.js b/system-monitor@paradoxxx.zero.gmail.com/extension.js
+index b4b7f15..d139135 100644
+--- a/system-monitor@paradoxxx.zero.gmail.com/extension.js
++++ b/system-monitor@paradoxxx.zero.gmail.com/extension.js
+@@ -18,6 +18,9 @@
+
+ // Author: Florian Mounier aka paradoxxxzero
+
++imports.gi.GIRepository.Repository.prepend_search_path('@gtop_path@');
++imports.gi.GIRepository.Repository.prepend_search_path('@glib_net_path@');
++
+ /* Ugly. This is here so that we don't crash old libnm-glib based shells unnecessarily
+ * by loading the new libnm.so. Should go away eventually */
+ const libnm_glib = imports.gi.GIRepository.Repository.get_default().is_registered("NMClient", "1.0");
+@@ -386,7 +389,7 @@ const smMountsMonitor = new Lang.Class({
+ connected: false,
+ _init: function () {
+ this._volumeMonitor = Gio.VolumeMonitor.get();
+- let sys_mounts = ['/home', '/tmp', '/boot', '/usr', '/usr/local'];
++ let sys_mounts = ['/home', '/tmp', '/boot'];
+ this.base_mounts = ['/'];
+ sys_mounts.forEach(Lang.bind(this, function (sMount) {
+ if (this.is_sys_mount(sMount + '/')) {
diff --git a/pkgs/desktops/gnome-3/misc/gnome-tweaks/default.nix b/pkgs/desktops/gnome-3/misc/gnome-tweaks/default.nix
index 75b5060d7b3..a690524b45a 100644
--- a/pkgs/desktops/gnome-3/misc/gnome-tweaks/default.nix
+++ b/pkgs/desktops/gnome-3/misc/gnome-tweaks/default.nix
@@ -24,6 +24,8 @@ in stdenv.mkDerivation rec {
libsoup gnome3.gnome-settings-daemon gnome3.nautilus
gnome3.mutter gnome3.gnome-desktop gobjectIntrospection
gnome3.nautilus
+ # Makes it possible to select user themes through the `user-theme` extension
+ gnome3.gnome-shell-extensions
];
postPatch = ''
diff --git a/pkgs/desktops/gnome-3/misc/gpaste/default.nix b/pkgs/desktops/gnome-3/misc/gpaste/default.nix
index b24b51a0c33..361b1ac97f6 100644
--- a/pkgs/desktops/gnome-3/misc/gpaste/default.nix
+++ b/pkgs/desktops/gnome-3/misc/gpaste/default.nix
@@ -2,12 +2,12 @@
, pango, gtk3, gnome3, dbus, clutter, appstream-glib, wrapGAppsHook, systemd, gobjectIntrospection }:
stdenv.mkDerivation rec {
- version = "3.28.0";
+ version = "3.28.1";
name = "gpaste-${version}";
src = fetchurl {
url = "https://github.com/Keruspe/GPaste/archive/v${version}.tar.gz";
- sha256 = "15zigqmhd2x58ml0rl6srgvpx8ms7a3dapphcr75563pacv46mir";
+ sha256 = "19rdi2syshrk32hqnjh63fm0wargw546j5wlsnsg1axml0x1xww9";
};
nativeBuildInputs = [ autoreconfHook pkgconfig vala wrapGAppsHook ];
diff --git a/pkgs/desktops/gnome-3/misc/libgnome-games-support/default.nix b/pkgs/desktops/gnome-3/misc/libgnome-games-support/default.nix
index 5712d612e9a..d777ec0baae 100644
--- a/pkgs/desktops/gnome-3/misc/libgnome-games-support/default.nix
+++ b/pkgs/desktops/gnome-3/misc/libgnome-games-support/default.nix
@@ -2,13 +2,13 @@
let
pname = "libgnome-games-support";
- version = "1.4.0";
+ version = "1.4.1";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
- sha256 = "0mhly6yhdc4kvg8ff09a0syabd6igvcmcm577ypfsjkxv92v328x";
+ sha256 = "1j7lfcnc29lgn8ppn13wkn9w2y1n3lsapagwp91zh3bf0h2h4hv1";
};
nativeBuildInputs = [ pkgconfig intltool ] ++ libintlOrEmpty;
diff --git a/pkgs/desktops/lxqt/base/libqtxdg/default.nix b/pkgs/desktops/lxqt/base/libqtxdg/default.nix
index 966566db7c8..7938e4fd9a1 100644
--- a/pkgs/desktops/lxqt/base/libqtxdg/default.nix
+++ b/pkgs/desktops/lxqt/base/libqtxdg/default.nix
@@ -16,7 +16,11 @@ stdenv.mkDerivation rec {
buildInputs = [ qt5.qtbase qt5.qtsvg ];
preConfigure = ''
- cmakeFlags+=" -DQTXDGX_ICONENGINEPLUGIN_INSTALL_PATH=$out/$qtPluginPrefix"
+ cmakeFlagsArray+=(
+ "-DQTXDGX_ICONENGINEPLUGIN_INSTALL_PATH=$out/$qtPluginPrefix"
+ "-DCMAKE_INSTALL_INCLUDEDIR=include"
+ "-DCMAKE_INSTALL_LIBDIR=lib"
+ )
'';
meta = with stdenv.lib; {
diff --git a/pkgs/desktops/mate/caja/default.nix b/pkgs/desktops/mate/caja/default.nix
index 070808504d1..bf0583189bc 100644
--- a/pkgs/desktops/mate/caja/default.nix
+++ b/pkgs/desktops/mate/caja/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "caja-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "05shyqqapqbz4w0gbhx0i3kj6xg7rcj80hkaq7wf5pyj91wmkxqg";
+ sha256 = "1qqqq3fi1aqjqg36y3v73z4d0bqkx7d5f79i6h9lxyh3s0876v9c";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/mate/libmatekbd/default.nix b/pkgs/desktops/mate/libmatekbd/default.nix
index 209edf1f363..fb7a8308ee5 100644
--- a/pkgs/desktops/mate/libmatekbd/default.nix
+++ b/pkgs/desktops/mate/libmatekbd/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "libmatekbd-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "1n2zphb3g6ai54nfr0r9s06vn3bmm361xpjga88hmq947fvbpx19";
+ sha256 = "1d80xnbb8w51cv9cziybdxca037lksqkc5bd8wqlyb2p79z77426";
};
nativeBuildInputs = [ pkgconfig intltool ];
diff --git a/pkgs/desktops/mate/marco/default.nix b/pkgs/desktops/mate/marco/default.nix
index e5a544ae33e..42c74aa1173 100644
--- a/pkgs/desktops/mate/marco/default.nix
+++ b/pkgs/desktops/mate/marco/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "marco-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "07asf8i15ih6ajkp5yapk720qyssi2cinxwg2z5q5j9m6mxax6lr";
+ sha256 = "1qnx47aibvl00qaf1jik457cwncxb71pf5pd1m3gdg7ky61ljkm4";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/mate/mate-applets/default.nix b/pkgs/desktops/mate/mate-applets/default.nix
index 0be643c9718..b9f9e0ece35 100644
--- a/pkgs/desktops/mate/mate-applets/default.nix
+++ b/pkgs/desktops/mate/mate-applets/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "mate-applets-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "1jmhswfcbawp9ax5p5h2dj8pyajadjdyxa0ac7ldvh7viv8qy52s";
+ sha256 = "1a119g49sr7jrd8i32bw7sn2qlsg3sdiwqdb2v36bm2999j261wc";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/mate/mate-calc/default.nix b/pkgs/desktops/mate/mate-calc/default.nix
index efe8adae678..7e501fcf379 100644
--- a/pkgs/desktops/mate/mate-calc/default.nix
+++ b/pkgs/desktops/mate/mate-calc/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "mate-calc-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "03cma6b00chd4026pbnh5i0ckpl8b1l7i1ppvcmbfbx0s3vpbc73";
+ sha256 = "00k063ia4dclvcpg1q733lbi56533s6mj8bgb1nrgna6y7zw4q87";
};
nativeBuildInputs = [
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
description = "Calculator for the MATE desktop";
homepage = http://mate-desktop.org;
license = [ licenses.gpl2Plus ];
- platforms = platforms.unix;
+ platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
};
}
diff --git a/pkgs/desktops/mate/mate-control-center/default.nix b/pkgs/desktops/mate/mate-control-center/default.nix
index fdee351aeed..6bde7d7a017 100644
--- a/pkgs/desktops/mate/mate-control-center/default.nix
+++ b/pkgs/desktops/mate/mate-control-center/default.nix
@@ -5,11 +5,11 @@
stdenv.mkDerivation rec {
name = "mate-control-center-${version}";
- version = "1.20.0";
+ version = "1.20.2";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "0qq3ln40w7lxa7qvbvbsgdq1c5ybzqw3bw2x4z6y6brl4c77sbh7";
+ sha256 = "1x40gxrz1hrzbdfl8vbag231g08h45vaky5z827k44qwl6pjd6nl";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/mate/mate-desktop/default.nix b/pkgs/desktops/mate/mate-desktop/default.nix
index 56c0ae4632c..f84b6b25420 100644
--- a/pkgs/desktops/mate/mate-desktop/default.nix
+++ b/pkgs/desktops/mate/mate-desktop/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "mate-desktop-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "0y5172sbj6f4dvimf4pmz74b9cfidbpmnwwb9f6vlc6fa0kp5l1n";
+ sha256 = "0jxhhf9w6mz8ha6ymgj2alzmiydylg4ngqslkjxx37vvpvms2dyx";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/mate/mate-icon-theme/default.nix b/pkgs/desktops/mate/mate-icon-theme/default.nix
index 93ad93b07b9..7291b475fe1 100644
--- a/pkgs/desktops/mate/mate-icon-theme/default.nix
+++ b/pkgs/desktops/mate/mate-icon-theme/default.nix
@@ -12,18 +12,18 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool iconnamingutils ];
buildInputs = [ librsvg hicolor-icon-theme ];
-
+
postInstall = ''
for theme in "$out"/share/icons/*; do
"${gtk3.out}/bin/gtk-update-icon-cache" "$theme"
done
'';
-
+
meta = {
description = "Icon themes from MATE";
homepage = http://mate-desktop.org;
license = stdenv.lib.licenses.lgpl3;
- platforms = stdenv.lib.platforms.unix;
+ platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.romildo ];
};
}
diff --git a/pkgs/desktops/mate/mate-panel/default.nix b/pkgs/desktops/mate/mate-panel/default.nix
index 0adcb58758c..df1c15bddd3 100644
--- a/pkgs/desktops/mate/mate-panel/default.nix
+++ b/pkgs/desktops/mate/mate-panel/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "mate-panel-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "0cz1pfwvsmrjcd0wa83cid9yjcygla6rhigyr7f75d75kiknlcm7";
+ sha256 = "1vmvn93apvq6r9m823zyrncbxgsjr4nmigw9k4s4n05z8zd8wy8k";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/mate/mate-power-manager/default.nix b/pkgs/desktops/mate/mate-power-manager/default.nix
index ddde6acf0e0..c056b1f62fb 100644
--- a/pkgs/desktops/mate/mate-power-manager/default.nix
+++ b/pkgs/desktops/mate/mate-power-manager/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "mate-power-manager-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "038c2q5kqvqmkp1i93p4pp9x8p6a9i7lyn3nv522mq06qsbynbww";
+ sha256 = "1s46jvjcrai6xb2k0dy7i121b9ihfl5h3y5809fg9fzrbvw6bafn";
};
buildInputs = [
diff --git a/pkgs/desktops/mate/mate-settings-daemon/default.nix b/pkgs/desktops/mate/mate-settings-daemon/default.nix
index b97b5294d39..490500fca69 100644
--- a/pkgs/desktops/mate/mate-settings-daemon/default.nix
+++ b/pkgs/desktops/mate/mate-settings-daemon/default.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
name = "mate-settings-daemon-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "0p4fr2sgkjcjsrmkdy579xmk20dl0sa6az40rzvm6fb2w6693sf5";
+ sha256 = "1hmc5qfr9yrvrlc1d2mmsqbhv0lhikbadaac18bxjynw9ff857iq";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/mate/pluma/default.nix b/pkgs/desktops/mate/pluma/default.nix
index d951c9f9bbd..bbff7d24697 100644
--- a/pkgs/desktops/mate/pluma/default.nix
+++ b/pkgs/desktops/mate/pluma/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "pluma-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "0w2x270n11rfa321cdlycfhcgncwxqpikjyl3lwmn4vkx8nhgq5f";
+ sha256 = "09arzypdz6q1zpxd1qqnsn1ykvhmzlf7nylkz2vpwlvnnd3x8ip3";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix b/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix
index 22e790784d5..7f259d66954 100644
--- a/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix
+++ b/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, perl, cmake, vala_0_38, pkgconfig, glib, gtk3, granite, gnome3, libnotify, gettext, makeWrapper, gobjectIntrospection }:
+{ stdenv, fetchurl, perl, cmake, vala_0_38, pkgconfig, glib, gtk3, granite, gnome3, libnotify, gettext, wrapGAppsHook, gobjectIntrospection }:
stdenv.mkDerivation rec {
majorVersion = "0.4";
@@ -9,19 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "0bfrqxig26i9qhm15kk7h9lgmzgnqada5snbbwqkp0n0pnyyh4ss";
};
- preConfigure = ''
- export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:${granite}/lib64/pkgconfig"
- '';
-
- preFixup = ''
- for f in $out/bin/*; do
- wrapProgram $f \
- --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$XDG_ICON_DIRS:$out/share"
- done
- '';
-
nativeBuildInputs = [
- perl cmake vala_0_38 pkgconfig makeWrapper
+ perl cmake vala_0_38 pkgconfig wrapGAppsHook
# For setup hook
gobjectIntrospection
];
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-mailwatch-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-mailwatch-plugin.nix
index 80153332934..541b30ec1b3 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-mailwatch-plugin.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-mailwatch-plugin.nix
@@ -21,6 +21,6 @@ stdenv.mkDerivation rec {
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
description = "Mailwatch plugin for Xfce panel";
platforms = platforms.linux;
- maintainers = [ maintainers.matthiasbeyer ];
+ maintainers = [ ];
};
}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-mpc-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-mpc-plugin.nix
index 8a602b8b4a1..5331c29a454 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-mpc-plugin.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-mpc-plugin.nix
@@ -21,6 +21,6 @@ stdenv.mkDerivation rec {
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
description = "MPD plugin for Xfce panel";
platforms = platforms.linux;
- maintainers = [ maintainers.matthiasbeyer ];
+ maintainers = [ ];
};
}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin.nix
index 1ba4340fcb5..c420c9fb643 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin.nix
@@ -25,6 +25,6 @@ stdenv.mkDerivation rec {
description = "Battery plugin for Xfce panel";
platforms = platforms.linux;
license = licenses.gpl2;
- maintainers = [ maintainers.matthiasbeyer ];
+ maintainers = [ ];
};
}
diff --git a/pkgs/development/compilers/binaryen/default.nix b/pkgs/development/compilers/binaryen/default.nix
index 2c2869f76e7..fc75fe92c73 100644
--- a/pkgs/development/compilers/binaryen/default.nix
+++ b/pkgs/development/compilers/binaryen/default.nix
@@ -1,11 +1,11 @@
{ stdenv, cmake, fetchFromGitHub, emscriptenRev ? null }:
let
- defaultVersion = "44";
+ defaultVersion = "45";
# Map from git revs to SHA256 hashes
sha256s = {
- "version_44" = "0zsqppc05fm62807w6vyccxkk2y2gar7kxbxxixq8zz3xsp6w84p";
+ "version_45" = "1wgzfzjjzkiaz0rf2lnwrcvlcsjvjhyvbyh58jxhqq43vi34zyjc";
"1.37.36" = "1wgzfzjjzkiaz0rf2lnwrcvlcsjvjhyvbyh58jxhqq43vi34zyjc";
};
in
diff --git a/pkgs/development/compilers/elm/default.nix b/pkgs/development/compilers/elm/default.nix
index 4520363a53b..8ed34cf9d1e 100644
--- a/pkgs/development/compilers/elm/default.nix
+++ b/pkgs/development/compilers/elm/default.nix
@@ -74,23 +74,26 @@ let
elm-format = self.callPackage ./packages/elm-format.nix { };
elm-interface-to-json = self.callPackage ./packages/elm-interface-to-json.nix {
aeson-pretty = self.aeson-pretty_0_7_2;
+ either = hlib.overrideCabal self.either (drv :{
+ jailbreak = true;
+ version = "4.4.1.1";
+ sha256 = "1lrlwqqnm6ibfcydlv5qvvssw7bm0c6yypy0rayjzv1znq7wp1xh";
+ libraryHaskellDepends = drv.libraryHaskellDepends or [] ++ [
+ self.exceptions self.free self.mmorph self.monad-control
+ self.MonadRandom self.profunctors self.transformers
+ self.transformers-base
+ ];
+ });
};
};
in elmPkgs // {
inherit elmPkgs;
elmVersion = elmRelease.version;
- # needed for elm-package
- http-client = hlib.overrideCabal super.http-client (drv: {
- version = "0.4.31.2";
- sha256 = "12yq2l6bvmxg5w6cw5ravdh39g8smwn1j44mv36pfmkhm5402h8n";
- });
- http-client-tls = hlib.overrideCabal super.http-client-tls (drv: {
- version = "0.2.4.1";
- sha256 = "18wbca7jg15p0ds3339f435nqv2ng0fqc4bylicjzlsww625ij4d";
- });
# https://github.com/elm-lang/elm-compiler/issues/1566
indents = hlib.overrideCabal super.indents (drv: {
version = "0.3.3";
+ #test dep tasty has a version mismatch
+ doCheck = false;
sha256 = "16lz21bp9j14xilnq8yym22p3saxvc9fsgfcf5awn2a6i6n527xn";
libraryHaskellDepends = drv.libraryHaskellDepends ++ [super.concatenative];
});
diff --git a/pkgs/development/compilers/elm/packages/elm-package.nix b/pkgs/development/compilers/elm/packages/elm-package.nix
index 4a60b3dfb38..49eddb58a14 100644
--- a/pkgs/development/compilers/elm/packages/elm-package.nix
+++ b/pkgs/development/compilers/elm/packages/elm-package.nix
@@ -1,6 +1,6 @@
{ mkDerivation, aeson, aeson-pretty_0_7_2, ansi-wl-pprint, base, binary
, bytestring, containers, directory, edit-distance, elm-compiler
-, fetchgit, filepath, HTTP, http-client, http-client-tls
+, fetchgit, fetchurl, filepath, HTTP, http-client, http-client-tls
, http-types, mtl, network, optparse-applicative, parallel-io
, pretty, stdenv, text, time, unordered-containers, vector
, zip-archive
@@ -13,6 +13,10 @@ mkDerivation {
sha256 = "19krnkjvfk02gmmic5h5i1i0lw7s30927bnd5g57cj8nqbigysv7";
rev = "8bd150314bacab5b6fc451927aa01deec2276fbf";
};
+ patches = fetchurl {
+ url = https://github.com/jerith666/elm-package/commit/40bab60c2fbff70812cc24cdd97f5e09db3844ad.patch;
+ sha256 = "0j6pi6cv3h9s6vz68bh0c73fysvk83yhhk56kgshvnrmnpcb3jib";
+ };
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
diff --git a/pkgs/development/compilers/gambit/bootstrap.nix b/pkgs/development/compilers/gambit/bootstrap.nix
index 7376aec2750..05e804a1f74 100644
--- a/pkgs/development/compilers/gambit/bootstrap.nix
+++ b/pkgs/development/compilers/gambit/bootstrap.nix
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
description = "Optimizing Scheme to C compiler, bootstrap step";
homepage = "http://gambitscheme.org";
license = stdenv.lib.licenses.lgpl2;
- platforms = stdenv.lib.platforms.linux;
+ platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ thoughtpolice raskin fare ];
};
}
diff --git a/pkgs/development/compilers/gambit/build.nix b/pkgs/development/compilers/gambit/build.nix
new file mode 100644
index 00000000000..202e5525422
--- /dev/null
+++ b/pkgs/development/compilers/gambit/build.nix
@@ -0,0 +1,70 @@
+{ stdenv, git, openssl, autoconf, pkgs, makeStaticLibraries, version, git-version, SRC }:
+
+stdenv.mkDerivation rec {
+ name = "gambit-${version}";
+ src = SRC;
+
+ bootstrap = import ./bootstrap.nix ( pkgs );
+
+ # Use makeStaticLibraries to enable creation of statically linked binaries
+ buildInputs = [ git autoconf bootstrap openssl (makeStaticLibraries openssl)];
+
+ configurePhase = ''
+ options=(
+ --prefix=$out
+ --enable-single-host
+ --enable-c-opt=-O2
+ --enable-gcc-opts
+ --enable-shared
+ --enable-absolute-shared-libs # Yes, NixOS will want an absolute path, and fix it.
+ --enable-poll
+ --enable-openssl
+ --enable-default-runtime-options="f8,-8,t8" # Default to UTF-8 for source and all I/O
+ #--enable-debug # Nope: enables plenty of good stuff, but also the costly console.log
+
+ #--enable-multiple-versions # Nope, NixOS already does version multiplexing
+ #--enable-guide
+ #--enable-track-scheme
+ #--enable-high-res-timing
+ #--enable-max-processors=4
+ #--enable-multiple-vms
+ #--enable-dynamic-tls
+ #--enable-multiple-vms
+ #--enable-multiple-threaded-vms ## when SMP branch is merged in
+ #--enable-thread-system=posix ## default when --enable-multiple-vms is on.
+ #--enable-profile
+ #--enable-coverage
+ #--enable-inline-jumps
+ #--enable-char-size=1" ; default is 4
+ )
+ ./configure ''${options[@]}
+ '';
+
+ buildPhase = ''
+ # Make bootstrap compiler, from release bootstrap
+ mkdir -p boot &&
+ cp -rp ${bootstrap}/. boot/. &&
+ chmod -R u+w boot &&
+ cd boot &&
+ cp ../gsc/makefile.in ../gsc/*.scm gsc && # */
+ ./configure &&
+ for i in lib gsi gsc ; do (cd $i ; make ) ; done &&
+ cd .. &&
+ cp boot/gsc/gsc gsc-boot &&
+
+ # Now use the bootstrap compiler to build the real thing!
+ make -j2 from-scratch
+ '';
+
+ doCheck = true;
+
+ meta = {
+ description = "Optimizing Scheme to C compiler";
+ homepage = "http://gambitscheme.org";
+ license = stdenv.lib.licenses.lgpl2;
+ # NB regarding platforms: only actually tested on Linux, *should* work everywhere,
+ # but *might* need adaptation e.g. on macOS.
+ platforms = stdenv.lib.platforms.unix;
+ maintainers = with stdenv.lib.maintainers; [ thoughtpolice raskin fare ];
+ };
+}
diff --git a/pkgs/development/compilers/gambit/default.nix b/pkgs/development/compilers/gambit/default.nix
index 95e8dba762a..0996d0c3078 100644
--- a/pkgs/development/compilers/gambit/default.nix
+++ b/pkgs/development/compilers/gambit/default.nix
@@ -1,75 +1,13 @@
-{ stdenv, fetchurl, fetchgit, git, openssl, autoconf, pkgs, makeStaticLibraries }:
+{ callPackage, fetchgit }:
-# TODO: distinct packages for gambit-release and gambit-devel
-
-stdenv.mkDerivation rec {
- name = "gambit-${version}";
+callPackage ./build.nix {
version = "4.8.9";
- bootstrap = import ./bootstrap.nix ( pkgs );
+ # TODO: for next version, prefer the unpatched tarball for the stable/default gambit.
+ git-version = "4.8.9-8-g793679bd";
- src = fetchgit {
+ SRC = fetchgit {
url = "https://github.com/feeley/gambit.git";
rev = "dd54a71dfc0bd09813592f1645d755867a02195d";
sha256 = "120kg73k39gshrwas8a3xcrxgnq1c7ww92wgy4d3mmrwy3j9nzzc";
};
-
- # Use makeStaticLibraries to enable creation of statically linked binaries
- buildInputs = [ git autoconf bootstrap openssl (makeStaticLibraries openssl)];
-
- configurePhase = ''
- options=(
- --prefix=$out
- --enable-single-host
- --enable-c-opt=-O2
- --enable-gcc-opts
- --enable-shared
- --enable-absolute-shared-libs # Yes, NixOS will want an absolute path, and fix it.
- --enable-poll
- --enable-openssl
- --enable-default-runtime-options="f8,-8,t8" # Default to UTF-8 for source and all I/O
- #--enable-debug # Nope: enables plenty of good stuff, but also the costly console.log
-
- #--enable-multiple-versions # Nope, NixOS already does version multiplexing
- #--enable-guide
- #--enable-track-scheme
- #--enable-high-res-timing
- #--enable-max-processors=4
- #--enable-multiple-vms
- #--enable-dynamic-tls
- #--enable-multiple-vms
- #--enable-multiple-threaded-vms ## when SMP branch is merged in
- #--enable-thread-system=posix ## default when --enable-multiple-vms is on.
- #--enable-profile
- #--enable-coverage
- #--enable-inline-jumps
- #--enable-char-size=1" ; default is 4
- )
- ./configure ''${options[@]}
- '';
-
- buildPhase = ''
- # Make bootstrap compiler, from release bootstrap
- mkdir -p boot &&
- cp -rp ${bootstrap}/. boot/. &&
- chmod -R u+w boot &&
- cd boot &&
- cp ../gsc/makefile.in ../gsc/*.scm gsc && # */
- ./configure &&
- for i in lib gsi gsc ; do (cd $i ; make ) ; done &&
- cd .. &&
- cp boot/gsc/gsc gsc-boot &&
-
- # Now use the bootstrap compiler to build the real thing!
- make -j2 from-scratch
- '';
-
- doCheck = true;
-
- meta = {
- description = "Optimizing Scheme to C compiler";
- homepage = "http://gambitscheme.org";
- license = stdenv.lib.licenses.lgpl2;
- platforms = stdenv.lib.platforms.linux;
- maintainers = with stdenv.lib.maintainers; [ thoughtpolice raskin fare ];
- };
}
diff --git a/pkgs/development/compilers/gambit/unstable.nix b/pkgs/development/compilers/gambit/unstable.nix
new file mode 100644
index 00000000000..f98fd5ca935
--- /dev/null
+++ b/pkgs/development/compilers/gambit/unstable.nix
@@ -0,0 +1,11 @@
+{ callPackage, fetchgit }:
+
+callPackage ./build.nix {
+ version = "unstable-2018-03-26";
+ git-version = "4.8.9-8-g793679bd";
+ SRC = fetchgit {
+ url = "https://github.com/feeley/gambit.git";
+ rev = "793679bd57eb6275cb06e6570b05f4a78df61bf9";
+ sha256 = "0bippvmrc8vcaa6ka3mhzfgkagb6a1616g7nxk0i0wapxai5cngj";
+ };
+}
diff --git a/pkgs/development/compilers/gerbil/build.nix b/pkgs/development/compilers/gerbil/build.nix
new file mode 100644
index 00000000000..5609de15d4c
--- /dev/null
+++ b/pkgs/development/compilers/gerbil/build.nix
@@ -0,0 +1,88 @@
+{ stdenv, lib, makeStaticLibraries,
+ coreutils, rsync, bash,
+ openssl, zlib, sqlite, libxml2, libyaml, mysql, lmdb, leveldb, postgresql,
+ version, git-version, GAMBIT, SRC }:
+
+# TODO: distinct packages for gerbil-release and gerbil-devel
+# TODO: make static compilation work
+
+stdenv.mkDerivation rec {
+ name = "gerbil-${version}";
+ src = SRC;
+
+ # Use makeStaticLibraries to enable creation of statically linked binaries
+ buildInputs_libraries = [ openssl zlib sqlite libxml2 libyaml mysql.connector-c lmdb leveldb postgresql ];
+ buildInputs_staticLibraries = map makeStaticLibraries buildInputs_libraries;
+
+ buildInputs = [ GAMBIT coreutils rsync bash ]
+ ++ buildInputs_libraries ++ buildInputs_staticLibraries;
+
+ NIX_CFLAGS_COMPILE = [ "-I${mysql.connector-c}/include/mysql" "-L${mysql.connector-c}/lib/mysql" ];
+
+ postPatch = ''
+ echo '(define (gerbil-version-string) "v${git-version}")' > src/gerbil/runtime/gx-version.scm
+
+ patchShebangs .
+
+ find . -type f -executable -print0 | while IFS= read -r -d ''$'\0' f; do
+ substituteInPlace "$f" --replace '#!/usr/bin/env' '#!${coreutils}/bin/env'
+ done
+
+ cat > etc/gerbil_static_libraries.sh < $out/bin/gxi < src/gerbil/runtime/gx-version.scm
-
- patchShebangs .
-
- find . -type f -executable -print0 | while IFS= read -r -d ''$'\0' f; do
- substituteInPlace "$f" --replace '#!/usr/bin/env' '#!${coreutils}/bin/env'
- done
-
- cat > etc/gerbil_static_libraries.sh < $out/bin/gxi < gmp != null;
+
+let
+ inherit (bootPkgs) ghc;
+
+ # TODO(@Ericson2314) Make unconditional
+ targetPrefix = stdenv.lib.optionalString
+ (targetPlatform != hostPlatform)
+ "${targetPlatform.config}-";
+
+ buildMK = ''
+ DYNAMIC_GHC_PROGRAMS = ${if enableShared then "YES" else "NO"}
+ '' + stdenv.lib.optionalString enableIntegerSimple ''
+ INTEGER_LIBRARY = integer-simple
+ '' + stdenv.lib.optionalString (targetPlatform != hostPlatform) ''
+ BuildFlavour = perf-cross
+ Stage1Only = YES
+ HADDOCK_DOCS = NO
+ BUILD_SPHINX_HTML = NO
+ BUILD_SPHINX_PDF = NO
+ '' + stdenv.lib.optionalString enableRelocatedStaticLibs ''
+ GhcLibHcOpts += -fPIC
+ GhcRtsHcOpts += -fPIC
+ '';
+
+ # Splicer will pull out correct variations
+ libDeps = platform: [ ncurses ]
+ ++ stdenv.lib.optional (!enableIntegerSimple) gmp
+ ++ stdenv.lib.optional (platform.libc != "glibc") libiconv;
+
+ toolsForTarget =
+ if hostPlatform == buildPlatform then
+ [ targetPackages.stdenv.cc ] ++ stdenv.lib.optional useLLVM llvmPackages.llvm
+ else assert targetPlatform == hostPlatform; # build != host == target
+ [ stdenv.cc ] ++ stdenv.lib.optional useLLVM buildLlvmPackages.llvm;
+
+ targetCC = builtins.head toolsForTarget;
+
+in
+stdenv.mkDerivation rec {
+ inherit version;
+ inherit (src) rev;
+ name = "${targetPrefix}ghc-${version}";
+
+ src = fetchgit {
+ url = "git://git.haskell.org/ghc.git";
+ rev = "6d7eecff7948ad77854f834f55b4d4f942276ad3";
+ sha256 = "0aqy5x0b6qxhyvxw1q9pssf1xvhbyviglqkjrx4gvhbr3nax3wxp";
+ };
+
+ enableParallelBuilding = true;
+
+ outputs = [ "out" "doc" ];
+
+ postPatch = "patchShebangs .";
+
+ # GHC is a bit confused on its cross terminology.
+ preConfigure = ''
+ for env in $(env | grep '^TARGET_' | sed -E 's|\+?=.*||'); do
+ export "''${env#TARGET_}=''${!env}"
+ done
+ # GHC is a bit confused on its cross terminology, as these would normally be
+ # the *host* tools.
+ export CC="${targetCC}/bin/${targetCC.targetPrefix}cc"
+ export CXX="${targetCC}/bin/${targetCC.targetPrefix}cxx"
+ # Use gold to work around https://sourceware.org/bugzilla/show_bug.cgi?id=16177
+ export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld${stdenv.lib.optionalString targetPlatform.isArm ".gold"}"
+ export AS="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}as"
+ export AR="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}ar"
+ export NM="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}nm"
+ export RANLIB="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}ranlib"
+ export READELF="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}readelf"
+ export STRIP="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}strip"
+
+ echo -n "${buildMK}" > mk/build.mk
+ echo ${version} >VERSION
+ echo ${src.rev} >GIT_COMMIT_ID
+ ./boot
+ sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
+ '' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
+ export NIX_LDFLAGS+=" -rpath $out/lib/ghc-${version}"
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ export NIX_LDFLAGS+=" -no_dtrace_dof"
+ '';
+
+ # TODO(@Ericson2314): Always pass "--target" and always prefix.
+ configurePlatforms = [ "build" "host" ]
+ ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
+ # `--with` flags for libraries needed for RTS linker
+ configureFlags = [
+ "--datadir=$doc/share/doc/ghc"
+ "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
+ ] ++ stdenv.lib.optional (targetPlatform == hostPlatform && ! enableIntegerSimple) [
+ "--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
+ ] ++ stdenv.lib.optional (targetPlatform == hostPlatform && hostPlatform.libc != "glibc") [
+ "--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib"
+ ] ++ stdenv.lib.optionals (targetPlatform != hostPlatform) [
+ "--enable-bootstrap-with-devel-snapshot"
+ ] ++ stdenv.lib.optionals (targetPlatform.isArm) [
+ "CFLAGS=-fuse-ld=gold"
+ "CONF_GCC_LINKER_OPTS_STAGE1=-fuse-ld=gold"
+ "CONF_GCC_LINKER_OPTS_STAGE2=-fuse-ld=gold"
+ ] ++ stdenv.lib.optionals (targetPlatform.isDarwin && targetPlatform.isAarch64) [
+ # fix for iOS: https://www.reddit.com/r/haskell/comments/4ttdz1/building_an_osxi386_to_iosarm64_cross_compiler/d5qvd67/
+ "--disable-large-address-space"
+ ];
+
+ # Hack to make sure we never to the relaxation `$PATH` and hooks support for
+ # compatability. This will be replaced with something clearer in a future
+ # masss-rebuild.
+ crossConfig = true;
+
+ nativeBuildInputs = [ ghc perl autoconf automake m4 happy alex python3 ];
+
+ # For building runtime libs
+ depsBuildTarget = toolsForTarget;
+
+ buildInputs = libDeps hostPlatform;
+
+ propagatedBuildInputs = [ targetPackages.stdenv.cc ]
+ ++ stdenv.lib.optional useLLVM llvmPackages.llvm;
+
+ depsTargetTarget = map stdenv.lib.getDev (libDeps targetPlatform);
+ depsTargetTargetPropagated = map (stdenv.lib.getOutput "out") (libDeps targetPlatform);
+
+ # required, because otherwise all symbols from HSffi.o are stripped, and
+ # that in turn causes GHCi to abort
+ stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!targetPlatform.isDarwin) "--keep-file-symbols";
+
+ checkTarget = "test";
+
+ # zsh and other shells are smart about `{ghc}` but bash isn't, and doesn't
+ # treat that as a unary `{x,y,z,..}` repetition.
+ postInstall = ''
+ paxmark m $out/lib/${name}/bin/${if targetPlatform != hostPlatform then "ghc" else "{ghc,haddock}"}
+
+ # Install the bash completion file.
+ install -D -m 444 utils/completion/ghc.bash $out/share/bash-completion/completions/${targetPrefix}ghc
+
+ # Patch scripts to include "readelf" and "cat" in $PATH.
+ for i in "$out/bin/"*; do
+ test ! -h $i || continue
+ egrep --quiet '^#!' <(head -n 1 $i) || continue
+ sed -i -e '2i export PATH="$PATH:${stdenv.lib.makeBinPath [ targetPackages.stdenv.cc.bintools coreutils ]}"' $i
+ done
+ '';
+
+ passthru = {
+ inherit bootPkgs targetPrefix;
+
+ inherit llvmPackages;
+
+ # Our Cabal compiler name
+ haskellCompilerName = "ghc-8.4.2";
+ };
+
+ meta = {
+ homepage = http://haskell.org/ghc;
+ description = "The Glasgow Haskell Compiler";
+ maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ];
+ inherit (ghc.meta) license platforms;
+ };
+
+}
diff --git a/pkgs/development/compilers/ghcjs/base.nix b/pkgs/development/compilers/ghcjs/base.nix
index 3aac2d70e13..07662d32d25 100644
--- a/pkgs/development/compilers/ghcjs/base.nix
+++ b/pkgs/development/compilers/ghcjs/base.nix
@@ -189,7 +189,7 @@ in mkDerivation (rec {
description = "A Haskell to JavaScript compiler that uses the GHC API";
license = stdenv.lib.licenses.bsd3;
platforms = ghc.meta.platforms;
- maintainers = with stdenv.lib.maintainers; [ jwiegley cstrahan dmjio ];
+ maintainers = with stdenv.lib.maintainers; [ jwiegley cstrahan dmjio elvishjerricco ];
hydraPlatforms = if broken then [] else ghc.meta.platforms;
inherit broken;
})
diff --git a/pkgs/development/compilers/ghcjs/default.nix b/pkgs/development/compilers/ghcjs/default.nix
index b5a7a7f7cfc..7f3cc944001 100644
--- a/pkgs/development/compilers/ghcjs/default.nix
+++ b/pkgs/development/compilers/ghcjs/default.nix
@@ -2,5 +2,4 @@
bootPkgs.callPackage ./base.nix {
inherit bootPkgs cabal-install;
- broken = true; # https://hydra.nixos.org/build/70552553
}
diff --git a/pkgs/development/compilers/glslang/default.nix b/pkgs/development/compilers/glslang/default.nix
index 151f42a7aa7..ca1e2f54df9 100644
--- a/pkgs/development/compilers/glslang/default.nix
+++ b/pkgs/development/compilers/glslang/default.nix
@@ -1,21 +1,35 @@
-{ stdenv, fetchFromGitHub, cmake, bison }:
+{ stdenv, fetchFromGitHub, cmake, bison, spirv-tools, jq }:
stdenv.mkDerivation rec {
name = "glslang-git-${version}";
- version = "2017-08-31";
+ version = "2018-02-05";
# `vulkan-loader` requires a specific version of `glslang` as specified in
# `/external_revisions/glslang_revision`.
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "glslang";
- rev = "3a21c880500eac21cdf79bef5b80f970a55ac6af";
- sha256 = "1i15m17r0acmzjrkybris2rgw15il05a4w5h7vhhsiyngcvajcyn";
+ rev = "2651ccaec8";
+ sha256 = "0x5x5i07n9g809rzf5jgw70mmwck31ishdmxnmi0wxx737jjqwaq";
};
- buildInputs = [ cmake bison ];
+ buildInputs = [ cmake bison jq ] ++ spirv-tools.buildInputs;
enableParallelBuilding = true;
+ patchPhase = ''
+ cp --no-preserve=mode -r "${spirv-tools.src}" External/spirv-tools
+ ln -s "${spirv-tools.headers}" External/spirv-tools/external/spirv-headers
+ '';
+
+ preConfigure = ''
+ HEADERS_COMMIT=$(jq -r < known_good.json '.commits|map(select(.name=="spirv-tools/external/spirv-headers"))[0].commit')
+ TOOLS_COMMIT=$(jq -r < known_good.json '.commits|map(select(.name=="spirv-tools"))[0].commit')
+ if [ "$HEADERS_COMMIT" != "${spirv-tools.headers.rev}" ] || [ "$TOOLS_COMMIT" != "${spirv-tools.src.rev}" ]; then
+ echo "ERROR: spirv-tools commits do not match expected versions";
+ exit 1;
+ fi
+ '';
+
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Khronos reference front-end for GLSL and ESSL";
diff --git a/pkgs/development/compilers/go/1.10.nix b/pkgs/development/compilers/go/1.10.nix
index 145f6a17978..173d7a32fdc 100644
--- a/pkgs/development/compilers/go/1.10.nix
+++ b/pkgs/development/compilers/go/1.10.nix
@@ -25,13 +25,13 @@ in
stdenv.mkDerivation rec {
name = "go-${version}";
- version = "1.10";
+ version = "1.10.1";
src = fetchFromGitHub {
owner = "golang";
repo = "go";
rev = "go${version}";
- sha256 = "1dzs1mz3zxgg1qyi2lrlxdz1lsvazxvmj9cb69pgqnwjlh3jpw0l";
+ sha256 = "1wqwy52ibb343a4v7b9q26xa6r5jk4khfxd90wbpcayws8cxly8m";
};
# perl is used for testing go vet
diff --git a/pkgs/development/compilers/go/1.9.nix b/pkgs/development/compilers/go/1.9.nix
index c866212170c..631e61c2305 100644
--- a/pkgs/development/compilers/go/1.9.nix
+++ b/pkgs/development/compilers/go/1.9.nix
@@ -25,13 +25,13 @@ in
stdenv.mkDerivation rec {
name = "go-${version}";
- version = "1.9.4";
+ version = "1.9.5";
src = fetchFromGitHub {
owner = "golang";
repo = "go";
rev = "go${version}";
- sha256 = "15d9lfiy1cjfz6nqnig5884ykqckx58cynd1bva1xna7bwcwwp2r";
+ sha256 = "15dx1b71xv7b265gqk9nv02pirggpw7d83apikhrza2qkj64ydd0";
};
# perl is used for testing go vet
diff --git a/pkgs/development/compilers/icedtea-web/default.nix b/pkgs/development/compilers/icedtea-web/default.nix
index fb03d98dbdc..9390cbde637 100644
--- a/pkgs/development/compilers/icedtea-web/default.nix
+++ b/pkgs/development/compilers/icedtea-web/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "icedtea-web-${version}";
- version = "1.6.2";
+ version = "1.7.1";
src = fetchurl {
url = "http://icedtea.wildebeest.org/download/source/${name}.tar.gz";
- sha256 = "004kwrngyxxlrlzby4vzxjr0xcyngcdc9dfgnvi61ffnjr006ryf";
+ sha256 = "1b9z0i9b1dsc2qpfdzbn2fi4vi3idrhm7ig45g1ny40ymvxcwwn9";
};
nativeBuildInputs = [ pkgconfig bc perl ];
diff --git a/pkgs/development/compilers/julia/0.6.nix b/pkgs/development/compilers/julia/0.6.nix
index 36bbb7d817f..6fad8e5259c 100644
--- a/pkgs/development/compilers/julia/0.6.nix
+++ b/pkgs/development/compilers/julia/0.6.nix
@@ -172,10 +172,14 @@ stdenv.mkDerivation rec {
'';
postInstall = ''
- for prog in "$out/bin/julia" "$out/bin/julia-debug"; do
- wrapProgram "$prog" \
- --prefix LD_LIBRARY_PATH : "$LD_LIBRARY_PATH:$out/lib/julia" \
- --prefix PATH : "${stdenv.lib.makeBinPath [ curl ]}"
+ # Symlink shared libraries from LD_LIBRARY_PATH into lib/julia,
+ # as using a wrapper with LD_LIBRARY_PATH causes segmentation
+ # faults when program returns an error:
+ # $ julia -e 'throw(Error())'
+ find $(echo $LD_LIBRARY_PATH | sed 's|:| |g') -maxdepth 1 -name '*.${if stdenv.isDarwin then "dylib" else "so"}*' | while read lib; do
+ if [[ ! -e $out/lib/julia/$(basename $lib) ]]; then
+ ln -sv $lib $out/lib/julia/$(basename $lib)
+ fi
done
'';
diff --git a/pkgs/development/compilers/llvm/3.4/llvm.nix b/pkgs/development/compilers/llvm/3.4/llvm.nix
index 30f2dba2883..0b29b04825a 100644
--- a/pkgs/development/compilers/llvm/3.4/llvm.nix
+++ b/pkgs/development/compilers/llvm/3.4/llvm.nix
@@ -90,6 +90,6 @@ in stdenv.mkDerivation rec {
homepage = http://llvm.org/;
license = stdenv.lib.licenses.ncsa;
maintainers = with stdenv.lib.maintainers; [ lovek323 raskin viric ];
- platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin"];
+ platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" "armv7l-linux"];
};
}
diff --git a/pkgs/development/compilers/llvm/3.5/llvm.nix b/pkgs/development/compilers/llvm/3.5/llvm.nix
index 4d0cb8930f5..7dc134b4fcf 100644
--- a/pkgs/development/compilers/llvm/3.5/llvm.nix
+++ b/pkgs/development/compilers/llvm/3.5/llvm.nix
@@ -98,7 +98,7 @@ in stdenv.mkDerivation rec {
homepage = http://llvm.org/;
license = stdenv.lib.licenses.ncsa;
maintainers = with stdenv.lib.maintainers; [ lovek323 raskin viric ];
- platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin"];
+ platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" "armv7l-linux"];
};
}
diff --git a/pkgs/development/compilers/openjdk/10.nix b/pkgs/development/compilers/openjdk/10.nix
index d84b0c30242..9cc774727b7 100644
--- a/pkgs/development/compilers/openjdk/10.nix
+++ b/pkgs/development/compilers/openjdk/10.nix
@@ -4,8 +4,7 @@
, libjpeg, giflib
, setJavaClassPath
, minimal ? false
-#, enableInfinality ? true # font rendering patch
-, enableGnome2 ? true, gtk2, gnome_vfs, glib, GConf
+, enableGnome2 ? true, gtk3, gnome_vfs, glib, GConf
}:
let
@@ -20,18 +19,16 @@ let
update = "10";
build = "46";
- baseurl = "http://hg.openjdk.java.net/jdk/jdk10";
repover = "jdk-${update}+${build}";
paxflags = if stdenv.isi686 then "msp" else "m";
- jdk10 = fetchurl {
- url = "${baseurl}/archive/${repover}.tar.gz";
- sha256 = "1n5jccf2rw15hzwppnvy87bysb84g3fcnkxbjhj8gi0iv79dxlc7";
- };
+
openjdk10 = stdenv.mkDerivation {
name = "openjdk-${update}-b${build}";
- srcs = [ jdk10 ];
- sourceRoot = ".";
+ src = fetchurl {
+ url = "http://hg.openjdk.java.net/jdk-updates/jdk10u/archive/${repover}.tar.gz";
+ sha256 = "1a2cjad816qilsigkq035rqzfhzmq5vaz1klilrrws456flbsjlg";
+ };
outputs = [ "out" "jre" ];
@@ -41,13 +38,9 @@ let
libjpeg giflib libX11 libICE libXext libXrender libXtst libXt libXtst
libXi libXinerama libXcursor lndir fontconfig
] ++ lib.optionals (!minimal && enableGnome2) [
- gtk2 gnome_vfs GConf glib
+ gtk3 gnome_vfs GConf glib
];
- prePatch = ''
- cd jdk10*
- '';
-
patches = [
./fix-java-home-jdk10.patch
./read-truststore-from-env-jdk10.patch
@@ -87,7 +80,7 @@ let
NIX_LDFLAGS= lib.optionals (!minimal) [
"-lfontconfig" "-lcups" "-lXinerama" "-lXrandr" "-lmagic"
] ++ lib.optionals (!minimal && enableGnome2) [
- "-lgtk-x11-2.0" "-lgio-2.0" "-lgnomevfs-2" "-lgconf-2"
+ "-lgtk-3" "-lgio-2.0" "-lgnomevfs-2" "-lgconf-2"
];
buildFlags = [ "all" ];
@@ -120,18 +113,12 @@ let
rm -rf $out/lib/openjdk/demo
${lib.optionalString minimal ''
for d in $out/lib/openjdk/lib $jre/lib/openjdk/jre/lib; do
- rm ''${d}/{libjsound,libjsoundalsa,libawt*,libfontmanager}.so
+ rm ''${d}/{libjsound,libjsoundalsa,libfontmanager}.so
done
''}
lndir $jre/lib/openjdk/jre $out/lib/openjdk/jre
- # Make sure cmm/*.pf are not symlinks:
- # https://youtrack.jetbrains.com/issue/IDEA-147272
- # in 9, it seems no *.pf files end up in $out ... ?
- # rm -rf $out/lib/openjdk/jre/lib/cmm
- # ln -s {$jre,$out}/lib/openjdk/jre/lib/cmm
-
# Set PaX markings
exes=$(file $out/lib/openjdk/bin/* $jre/lib/openjdk/jre/bin/* 2> /dev/null | grep -E 'ELF.*(executable|shared object)' | sed -e 's/: .*$//')
echo "to mark: *$exes*"
@@ -148,13 +135,6 @@ let
fi
done
- # Generate certificates.
- (
- cd $jre/lib/openjdk/jre/lib/security
- rm cacerts
- perl ${./generate-cacerts.pl} $jre/lib/openjdk/jre/bin/keytool ${cacert}/etc/ssl/certs/ca-bundle.crt
- )
-
ln -s $out/lib/openjdk/bin $out/bin
ln -s $jre/lib/openjdk/jre/bin $jre/bin
ln -s $jre/lib/openjdk/jre $out/jre
diff --git a/pkgs/development/compilers/openjdk/7.nix b/pkgs/development/compilers/openjdk/7.nix
deleted file mode 100644
index 13f8bcfdb1d..00000000000
--- a/pkgs/development/compilers/openjdk/7.nix
+++ /dev/null
@@ -1,244 +0,0 @@
-{ stdenv, fetchurl, unzip, zip, procps, coreutils, alsaLib, ant, freetype
-, which, bootjdk, nettools, xorg, file, cups
-, fontconfig, cpio, cacert, perl, setJavaClassPath
-, minimal ? false
-}:
-
-let
-
- /**
- * The JRE libraries are in directories that depend on the CPU.
- */
- architecture =
- if stdenv.system == "i686-linux" then
- "i386"
- else if stdenv.system == "x86_64-linux" then
- "amd64"
- else
- throw "openjdk requires i686-linux or x86_64 linux";
-
- update = "111";
-
- build = "01";
-
- # On x86 for heap sizes over 700MB disable SEGMEXEC and PAGEEXEC as well.
- paxflags = if stdenv.isi686 then "msp" else "m";
-
- baseurl = "http://hg.openjdk.java.net/jdk7u/jdk7u";
- repover = "jdk7u${update}-b${build}";
- jdk7 = fetchurl {
- url = "${baseurl}/archive/${repover}.tar.gz";
- sha256 = "0wgb7hr2gipx1jg28fnsjh7xa744sh1mgr6z3xivmnsfy3dm91gi";
- };
- langtools = fetchurl {
- url = "${baseurl}/langtools/archive/${repover}.tar.gz";
- sha256 = "0x1xs923h6sma02cbp1whg735x8vcndh5k01b7rkf714g6rxwa0y";
- };
- hotspot = fetchurl {
- url = "${baseurl}/hotspot/archive/${repover}.tar.gz";
- sha256 = "187apnsvnd4cfa7ss5g59dbh7x5ah8f1lwa2wvjfv055h2cmphpn";
- };
- corba = fetchurl {
- url = "${baseurl}/corba/archive/${repover}.tar.gz";
- sha256 = "0vmxf5sgjcmkm7i1scanaa2x75a1byj8b36vcajlr6j7qmdx6r8c";
- };
- jdk = fetchurl {
- url = "${baseurl}/jdk/archive/${repover}.tar.gz";
- sha256 = "1f8f2dgrjhx8aw1gzawrf8qggf5j0dygsla08bbsxhx5mc5a6cka";
- };
- jaxws = fetchurl {
- url = "${baseurl}/jaxws/archive/${repover}.tar.gz";
- sha256 = "03982ajxm0hzany1jg009ym84vryx7a8qfi6wcgjxyxvk8vnz37c";
- };
- jaxp = fetchurl {
- url = "${baseurl}/jaxp/archive/${repover}.tar.gz";
- sha256 = "0578h04y1ha60yjplsa8lqdjds9s2lxzgs9ybm9rs1rqzxmm0xmy";
- };
- openjdk = stdenv.mkDerivation rec {
- name = "openjdk-7u${update}b${build}";
-
- srcs = [ jdk7 langtools hotspot corba jdk jaxws jaxp ];
- sourceRoot = ".";
-
- outputs = [ "out" "jre" ];
-
- buildInputs =
- [ unzip procps ant which zip cpio nettools alsaLib
- xorg.libX11 xorg.libXt xorg.libXext xorg.libXrender xorg.libXtst
- xorg.libXi xorg.libXinerama xorg.libXcursor xorg.lndir
- fontconfig perl file bootjdk
- ];
-
- NIX_CFLAGS_COMPILE = [
- "-Wno-error=deprecated-declarations"
- "-Wno-error=format-overflow" # newly detected by gcc7
- ];
-
- NIX_LDFLAGS = if minimal then null else "-lfontconfig -lXcursor -lXinerama";
-
- postUnpack = ''
- ls | grep jdk | grep -v '^jdk7u' | awk -F- '{print $1}' | while read p; do
- mv $p-* $(ls | grep '^jdk7u')/$p
- done
- cd jdk7u-*
-
- sed -i -e "s@/usr/bin/test@${coreutils}/bin/test@" \
- -e "s@/bin/ls@${coreutils}/bin/ls@" \
- hotspot/make/linux/makefiles/sa.make
-
- sed -i "s@/bin/echo -e@${coreutils}/bin/echo -e@" \
- {jdk,corba}/make/common/shared/Defs-utils.gmk
-
- tar xf ${cups.src}
- cupsDir=$(echo $(pwd)/cups-*)
- makeFlagsArray+=(CUPS_HEADERS_PATH=$cupsDir)
- '';
-
- patches = [
- ./cppflags-include-fix.patch
- ./fix-java-home.patch
- ./paxctl.patch
- ./read-truststore-from-env.patch
- ./currency-date-range.patch
- ];
-
- NIX_NO_SELF_RPATH = true;
-
- makeFlags = [
- "SORT=${coreutils}/bin/sort"
- "ALSA_INCLUDE=${alsaLib.dev}/include/alsa/version.h"
- "FREETYPE_HEADERS_PATH=${freetype.dev}/include"
- "FREETYPE_LIB_PATH=${freetype.out}/lib"
- "MILESTONE=${update}"
- "BUILD_NUMBER=b${build}"
- "USRBIN_PATH="
- "COMPILER_PATH="
- "DEVTOOLS_PATH="
- "UNIXCOMMAND_PATH="
- "BOOTDIR=${bootjdk.home}"
- "STATIC_CXX=false"
- "UNLIMITED_CRYPTO=1"
- "FULL_DEBUG_SYMBOLS=0"
- ] ++ stdenv.lib.optional minimal "BUILD_HEADLESS=1";
-
- configurePhase = "true";
-
- preBuild = ''
- # We also need to PaX-mark in the middle of the build
- substituteInPlace hotspot/make/linux/makefiles/launcher.make \
- --replace XXX_PAXFLAGS_XXX ${paxflags}
- substituteInPlace jdk/make/common/Program.gmk \
- --replace XXX_PAXFLAGS_XXX ${paxflags}
- '';
-
- installPhase = ''
- mkdir -p $out/lib/openjdk $out/share $jre/lib/openjdk
-
- cp -av build/*/j2sdk-image/* $out/lib/openjdk
-
- # Move some stuff to top-level.
- mv $out/lib/openjdk/include $out/include
- mv $out/lib/openjdk/man $out/share/man
-
- # jni.h expects jni_md.h to be in the header search path.
- ln -s $out/include/linux/*_md.h $out/include/
-
- # Remove some broken manpages.
- rm -rf $out/share/man/ja*
-
- # Remove crap from the installation.
- rm -rf $out/lib/openjdk/demo $out/lib/openjdk/sample
-
- # Move the JRE to a separate output.
- mv $out/lib/openjdk/jre $jre/lib/openjdk/
- mkdir $out/lib/openjdk/jre
- lndir $jre/lib/openjdk/jre $out/lib/openjdk/jre
-
- rm -rf $out/lib/openjdk/jre/bin
- ln -s $out/lib/openjdk/bin $out/lib/openjdk/jre/bin
-
- # Set PaX markings
- exes=$(file $out/lib/openjdk/bin/* $jre/lib/openjdk/jre/bin/* 2> /dev/null | grep -E 'ELF.*(executable|shared object)' | sed -e 's/: .*$//')
- echo "to mark: *$exes*"
- for file in $exes; do
- echo "marking *$file*"
- paxmark ${paxflags} "$file"
- done
-
- # Remove duplicate binaries.
- for i in $(cd $out/lib/openjdk/bin && echo *); do
- if [ "$i" = java ]; then continue; fi
- if cmp -s $out/lib/openjdk/bin/$i $jre/lib/openjdk/jre/bin/$i; then
- ln -sfn $jre/lib/openjdk/jre/bin/$i $out/lib/openjdk/bin/$i
- fi
- done
-
- # Generate certificates.
- pushd $jre/lib/openjdk/jre/lib/security
- rm cacerts
- perl ${./generate-cacerts.pl} $jre/lib/openjdk/jre/bin/keytool ${cacert}/etc/ssl/certs/ca-bundle.crt
- popd
-
- ln -s $out/lib/openjdk/bin $out/bin
- ln -s $jre/lib/openjdk/jre/bin $jre/bin
- ''; # */
-
- # FIXME: this is unnecessary once the multiple-outputs branch is merged.
- preFixup = ''
- prefix=$jre stripDirs "$stripDebugList" "''${stripDebugFlags:--S}"
- patchELF $jre
- propagatedBuildInputs+=" $jre"
-
- # Propagate the setJavaClassPath setup hook from the JRE so that
- # any package that depends on the JRE has $CLASSPATH set up
- # properly.
- mkdir -p $jre/nix-support
- printWords ${setJavaClassPath} > $jre/nix-support/propagated-build-inputs
-
- # Set JAVA_HOME automatically.
- mkdir -p $out/nix-support
- cat < $out/nix-support/setup-hook
- if [ -z "\$JAVA_HOME" ]; then export JAVA_HOME=$out/lib/openjdk; fi
- EOF
- '';
-
- postFixup = ''
- # Build the set of output library directories to rpath against
- LIBDIRS=""
- for output in $outputs; do
- LIBDIRS="$(find $(eval echo \$$output) -name \*.so\* -exec dirname {} \; | sort | uniq | tr '\n' ':'):$LIBDIRS"
- done
-
- # Add the local library paths to remove dependencies on the bootstrap
- for output in $outputs; do
- OUTPUTDIR="$(eval echo \$$output)"
- BINLIBS="$(find $OUTPUTDIR/bin/ -type f; find $OUTPUTDIR -name \*.so\*)"
- echo "$BINLIBS" | while read i; do
- patchelf --set-rpath "$LIBDIRS:$(patchelf --print-rpath "$i")" "$i" || true
- patchelf --shrink-rpath "$i" || true
- done
- done
-
- # Test to make sure that we don't depend on the bootstrap
- for output in $outputs; do
- if grep -q -r '${bootjdk}' $(eval echo \$$output); then
- echo "Extraneous references to ${bootjdk} detected"
- exit 1
- fi
- done
- '';
-
- meta = {
- homepage = http://openjdk.java.net/;
- license = stdenv.lib.licenses.gpl2;
- description = "The open-source Java Development Kit";
- maintainers = [ stdenv.lib.maintainers.eelco ];
- platforms = stdenv.lib.platforms.linux;
- };
-
- passthru = {
- inherit architecture;
- home = "${openjdk}/lib/openjdk";
- };
- };
-in openjdk
diff --git a/pkgs/development/compilers/openjdk/8.nix b/pkgs/development/compilers/openjdk/8.nix
index 24cf1b8a0c9..705898a74f3 100644
--- a/pkgs/development/compilers/openjdk/8.nix
+++ b/pkgs/development/compilers/openjdk/8.nix
@@ -93,7 +93,7 @@ let
./004_add-fontconfig.patch
./005_enable-infinality.patch
] ++ lib.optionals (!minimal && enableGnome2) [
- ./swing-use-gtk.patch
+ ./swing-use-gtk-jdk8.patch
];
preConfigure = ''
diff --git a/pkgs/development/compilers/openjdk/9.nix b/pkgs/development/compilers/openjdk/9.nix
deleted file mode 100644
index 7ac3931c93d..00000000000
--- a/pkgs/development/compilers/openjdk/9.nix
+++ /dev/null
@@ -1,262 +0,0 @@
-{ stdenv, lib, fetchurl, bash, cpio, pkgconfig, file, which, unzip, zip, cups, freetype
-, alsaLib, bootjdk, cacert, perl, liberation_ttf, fontconfig, zlib, lndir
-, libX11, libICE, libXrender, libXext, libXt, libXtst, libXi, libXinerama, libXcursor
-, libjpeg, giflib
-, setJavaClassPath
-, minimal ? false
-#, enableInfinality ? true # font rendering patch
-, enableGnome2 ? true, gtk2, gnome_vfs, glib, GConf
-}:
-
-let
-
- /**
- * The JRE libraries are in directories that depend on the CPU.
- */
- architecture =
- if stdenv.system == "i686-linux" then
- "i386"
- else if stdenv.system == "x86_64-linux" then
- "amd64"
- else
- throw "openjdk requires i686-linux or x86_64 linux";
-
- update = "9.0.4";
- build = "12";
- baseurl = "http://hg.openjdk.java.net/jdk-updates/jdk9u";
- repover = "jdk-${update}+${build}";
- paxflags = if stdenv.isi686 then "msp" else "m";
- jdk9 = fetchurl {
- url = "${baseurl}/archive/${repover}.tar.gz";
- sha256 = "06hnrzkwxgrfq26il1mjyl6wgb7x3qym69pjbddhl9m29n2si3jh";
- };
- langtools = fetchurl {
- url = "${baseurl}/langtools/archive/${repover}.tar.gz";
- sha256 = "16xqnqn773p6ywcdjx801vbng2skjal7svydn0s7wf3ldqzx64mi";
- };
- hotspot = fetchurl {
- url = "${baseurl}/hotspot/archive/${repover}.tar.gz";
- sha256 = "0g5ddffl2qykrjf17ac9as60rd4sfyv7s2fpgjn86k4a69gkx93v";
- };
- corba = fetchurl {
- url = "${baseurl}/corba/archive/${repover}.tar.gz";
- sha256 = "14585dzs2mfzgzrnbvc062pigngs35hajwpr22m6fzbm7580vnqk";
- };
- jdk = fetchurl {
- url = "${baseurl}/jdk/archive/${repover}.tar.gz";
- sha256 = "16595jdg3y9zy70q8i615a7d6w0zzbydfxylvaq42wrsc7jw733h";
- };
- jaxws = fetchurl {
- url = "${baseurl}/jaxws/archive/${repover}.tar.gz";
- sha256 = "1m1aspc1hq74w0bkasrfvp8ygs6psbc1l61vfw9244j2vgfahjgn";
- };
- jaxp = fetchurl {
- url = "${baseurl}/jaxp/archive/${repover}.tar.gz";
- sha256 = "06ns2giw366vjivb6d46gqwfvfzkaddrgd1x6y8w37ywygp50lxm";
- };
- nashorn = fetchurl {
- url = "${baseurl}/nashorn/archive/${repover}.tar.gz";
- sha256 = "0z6mlzvz1hh1yzli69qjlrcwqdjnivbjbqqrqi4hhpls6z0a2ch7";
- };
- openjdk9 = stdenv.mkDerivation {
- name = "openjdk-${update}-b${build}";
-
- srcs = [ jdk9 langtools hotspot corba jdk jaxws jaxp nashorn ];
- sourceRoot = ".";
-
- outputs = [ "out" "jre" ];
-
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [
- cpio file which unzip zip perl bootjdk zlib cups freetype alsaLib
- libjpeg giflib libX11 libICE libXext libXrender libXtst libXt libXtst
- libXi libXinerama libXcursor lndir fontconfig
- ] ++ lib.optionals (!minimal && enableGnome2) [
- gtk2 gnome_vfs GConf glib
- ];
-
- #move the seven other source dirs under the main jdk8u directory,
- #with version suffixes removed, as the remainder of the build will expect
- prePatch = ''
- mainDir=$(find . -maxdepth 1 -name jdk9\*);
- find . -maxdepth 1 -name \*jdk\* -not -name jdk9\* | awk -F- '{print $1}' | while read p; do
- mv $p-* $mainDir/$p
- done
- cd $mainDir
- '';
-
- patches = [
- ./fix-java-home-jdk9.patch
- ./read-truststore-from-env-jdk9.patch
- ./currency-date-range-jdk8.patch
- #] ++ lib.optionals (!minimal && enableInfinality) [
- # ./004_add-fontconfig.patch
- # ./005_enable-infinality.patch
- ] ++ lib.optionals (!minimal && enableGnome2) [
- ./swing-use-gtk-jdk9.patch
- ];
-
- preConfigure = ''
- chmod +x configure
- substituteInPlace configure --replace /bin/bash "${bash}/bin/bash"
-
- configureFlagsArray=(
- "--with-boot-jdk=${bootjdk.home}"
- "--with-update-version=${update}"
- "--with-build-number=${build}"
- "--with-milestone=fcs"
- "--enable-unlimited-crypto"
- "--disable-debug-symbols"
- "--disable-freetype-bundling"
- "--with-zlib=system"
- "--with-giflib=system"
- "--with-stdc++lib=dynamic"
-
- # glibc 2.24 deprecated readdir_r so we need this
- # See https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg49006.html
- "--with-extra-cflags=-Wno-error=deprecated-declarations -Wno-error=format-contains-nul -Wno-error=unused-result"
- ''
- + lib.optionalString minimal "\"--enable-headless-only\""
- + ");"
- # https://bugzilla.redhat.com/show_bug.cgi?id=1306558
- # https://github.com/JetBrains/jdk8u/commit/eaa5e0711a43d64874111254d74893fa299d5716
- + stdenv.lib.optionalString stdenv.cc.isGNU ''
- NIX_CFLAGS_COMPILE+=" -fno-lifetime-dse -fno-delete-null-pointer-checks -std=gnu++98 -Wno-error"
- '';
-
- NIX_LDFLAGS= lib.optionals (!minimal) [
- "-lfontconfig" "-lcups" "-lXinerama" "-lXrandr" "-lmagic"
- ] ++ lib.optionals (!minimal && enableGnome2) [
- "-lgtk-x11-2.0" "-lgio-2.0" "-lgnomevfs-2" "-lgconf-2"
- ];
-
- buildFlags = [ "all" ];
-
- installPhase = ''
- mkdir -p $out/lib/openjdk $out/share $jre/lib/openjdk
-
- cp -av build/*/images/jdk/* $out/lib/openjdk
-
- # Remove some broken manpages.
- rm -rf $out/lib/openjdk/man/ja*
-
- # Mirror some stuff in top-level.
- mkdir $out/include $out/share/man
- ln -s $out/lib/openjdk/include/* $out/include/
- ln -s $out/lib/openjdk/man/* $out/share/man/
-
- # jni.h expects jni_md.h to be in the header search path.
- ln -s $out/include/linux/*_md.h $out/include/
-
- # Copy the JRE to a separate output and setup fallback fonts
- cp -av build/*/images/jre $jre/lib/openjdk/
- mkdir $out/lib/openjdk/jre
- ${lib.optionalString (!minimal) ''
- mkdir -p $jre/lib/openjdk/jre/lib/fonts/fallback
- lndir ${liberation_ttf}/share/fonts/truetype $jre/lib/openjdk/jre/lib/fonts/fallback
- ''}
-
- # Remove crap from the installation.
- rm -rf $out/lib/openjdk/demo
- ${lib.optionalString minimal ''
- for d in $out/lib/openjdk/lib $jre/lib/openjdk/jre/lib; do
- rm ''${d}/{libjsound,libjsoundalsa,libawt*,libfontmanager}.so
- done
- ''}
-
- lndir $jre/lib/openjdk/jre $out/lib/openjdk/jre
-
- # Make sure cmm/*.pf are not symlinks:
- # https://youtrack.jetbrains.com/issue/IDEA-147272
- # in 9, it seems no *.pf files end up in $out ... ?
- # rm -rf $out/lib/openjdk/jre/lib/cmm
- # ln -s {$jre,$out}/lib/openjdk/jre/lib/cmm
-
- # Set PaX markings
- exes=$(file $out/lib/openjdk/bin/* $jre/lib/openjdk/jre/bin/* 2> /dev/null | grep -E 'ELF.*(executable|shared object)' | sed -e 's/: .*$//')
- echo "to mark: *$exes*"
- for file in $exes; do
- echo "marking *$file*"
- paxmark ${paxflags} "$file"
- done
-
- # Remove duplicate binaries.
- for i in $(cd $out/lib/openjdk/bin && echo *); do
- if [ "$i" = java ]; then continue; fi
- if cmp -s $out/lib/openjdk/bin/$i $jre/lib/openjdk/jre/bin/$i; then
- ln -sfn $jre/lib/openjdk/jre/bin/$i $out/lib/openjdk/bin/$i
- fi
- done
-
- # Generate certificates.
- (
- cd $jre/lib/openjdk/jre/lib/security
- rm cacerts
- perl ${./generate-cacerts.pl} $jre/lib/openjdk/jre/bin/keytool ${cacert}/etc/ssl/certs/ca-bundle.crt
- )
-
- ln -s $out/lib/openjdk/bin $out/bin
- ln -s $jre/lib/openjdk/jre/bin $jre/bin
- ln -s $jre/lib/openjdk/jre $out/jre
- '';
-
- # FIXME: this is unnecessary once the multiple-outputs branch is merged.
- preFixup = ''
- prefix=$jre stripDirs "$stripDebugList" "''${stripDebugFlags:--S}"
- patchELF $jre
- propagatedBuildInputs+=" $jre"
-
- # Propagate the setJavaClassPath setup hook from the JRE so that
- # any package that depends on the JRE has $CLASSPATH set up
- # properly.
- mkdir -p $jre/nix-support
- #TODO or printWords? cf https://github.com/NixOS/nixpkgs/pull/27427#issuecomment-317293040
- echo -n "${setJavaClassPath}" > $jre/nix-support/propagated-build-inputs
-
- # Set JAVA_HOME automatically.
- mkdir -p $out/nix-support
- cat < $out/nix-support/setup-hook
- if [ -z "\$JAVA_HOME" ]; then export JAVA_HOME=$out/lib/openjdk; fi
- EOF
- '';
-
- postFixup = ''
- # Build the set of output library directories to rpath against
- LIBDIRS=""
- for output in $outputs; do
- LIBDIRS="$(find $(eval echo \$$output) -name \*.so\* -exec dirname {} \+ | sort | uniq | tr '\n' ':'):$LIBDIRS"
- done
-
- # Add the local library paths to remove dependencies on the bootstrap
- for output in $outputs; do
- OUTPUTDIR=$(eval echo \$$output)
- BINLIBS=$(find $OUTPUTDIR/bin/ -type f; find $OUTPUTDIR -name \*.so\*)
- echo "$BINLIBS" | while read i; do
- patchelf --set-rpath "$LIBDIRS:$(patchelf --print-rpath "$i")" "$i" || true
- patchelf --shrink-rpath "$i" || true
- done
- done
-
- # Test to make sure that we don't depend on the bootstrap
- for output in $outputs; do
- if grep -q -r '${bootjdk}' $(eval echo \$$output); then
- echo "Extraneous references to ${bootjdk} detected"
- exit 1
- fi
- done
- '';
-
- meta = with stdenv.lib; {
- homepage = http://openjdk.java.net/;
- license = licenses.gpl2;
- description = "The open-source Java Development Kit";
- maintainers = with maintainers; [ edwtjo ];
- platforms = platforms.linux;
- };
-
- passthru = {
- inherit architecture;
- home = "${openjdk9}/lib/openjdk";
- };
- };
-in openjdk9
diff --git a/pkgs/development/compilers/openjdk/bootstrap.nix b/pkgs/development/compilers/openjdk/bootstrap.nix
index 668ca552adf..3c29df7ec78 100644
--- a/pkgs/development/compilers/openjdk/bootstrap.nix
+++ b/pkgs/development/compilers/openjdk/bootstrap.nix
@@ -1,5 +1,5 @@
{ stdenv
-, runCommand, fetchurl, file
+, runCommand, fetchurl, file, zlib
, version
}:
@@ -7,30 +7,19 @@
assert stdenv.hostPlatform.libc == "glibc";
let
- # !!! These should be on nixos.org
+ fetchboot = version: arch: sha256: fetchurl {
+ name = "openjdk${version}-bootstrap-${arch}-linux.tar.xz";
+ url = "http://tarballs.nixos.org/openjdk/2018-03-31/${version}/${arch}-linux.tar.xz";
+ inherit sha256;
+ };
+
src = if stdenv.hostPlatform.system == "x86_64-linux" then
- (if version == "8" then
- fetchurl {
- url = "https://www.dropbox.com/s/a0lsq2ig4uguky5/openjdk8-bootstrap-x86_64-linux.tar.xz?dl=1";
- sha256 = "18zqx6jhm3lizn9hh6ryyqc9dz3i96pwaz8f6nxfllk70qi5gvks";
- }
- else if version == "7" then
- fetchurl {
- url = "https://www.dropbox.com/s/rssfbeommrfbsjf/openjdk7-bootstrap-x86_64-linux.tar.xz?dl=1";
- sha256 = "024gg2sgg4labxbc1nhn8lxls2p7d9h3b82hnsahwaja2pm1hbra";
- }
+ (if version == "10" then fetchboot "10" "x86_64" "08085fsxc1qhqiv3yi38w8lrg3vm7s0m2yvnwr1c92v019806yq2"
+ else if version == "8" then fetchboot "8" "x86_64" "18zqx6jhm3lizn9hh6ryyqc9dz3i96pwaz8f6nxfllk70qi5gvks"
else throw "No bootstrap for version")
else if stdenv.hostPlatform.system == "i686-linux" then
- (if version == "8" then
- fetchurl {
- url = "https://www.dropbox.com/s/rneqjhlerijsw74/openjdk8-bootstrap-i686-linux.tar.xz?dl=1";
- sha256 = "1yx04xh8bqz7amg12d13rw5vwa008rav59mxjw1b9s6ynkvfgqq9";
- }
- else if version == "7" then
- fetchurl {
- url = "https://www.dropbox.com/s/6xe64td7eg2wurs/openjdk7-bootstrap-i686-linux.tar.xz?dl=1";
- sha256 = "0xwqjk1zx8akziw8q9sbjc1rs8s7c0w6mw67jdmmi26cwwp8ijnx";
- }
+ (if version == "10" then fetchboot "10" "i686" "1blb9gyzp8gfyggxvggqgpcgfcyi00ndnnskipwgdm031qva94p7"
+ else if version == "8" then fetchboot "8" "i686" "1yx04xh8bqz7amg12d13rw5vwa008rav59mxjw1b9s6ynkvfgqq9"
else throw "No bootstrap for version")
else throw "No bootstrap for system";
@@ -45,7 +34,7 @@ let
find "$out" -type f -print0 | while IFS= read -r -d "" elf; do
isELF "$elf" || continue
patchelf --set-interpreter $(cat "${stdenv.cc}/nix-support/dynamic-linker") "$elf" || true
- patchelf --set-rpath "${stdenv.cc.libc}/lib:${stdenv.cc.cc.lib}/lib:$LIBDIRS" "$elf" || true
+ patchelf --set-rpath "${stdenv.cc.libc}/lib:${stdenv.cc.cc.lib}/lib:${zlib}/lib:$LIBDIRS" "$elf" || true
done
# Temporarily, while NixOS's OpenJDK bootstrap tarball doesn't have PaX markings:
diff --git a/pkgs/development/compilers/openjdk/cppflags-include-fix.patch b/pkgs/development/compilers/openjdk/cppflags-include-fix.patch
deleted file mode 100644
index 8931c122538..00000000000
--- a/pkgs/development/compilers/openjdk/cppflags-include-fix.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -Naur openjdk-orig/jdk/make/sun/awt/mawt.gmk openjdk/jdk/make/sun/awt/mawt.gmk
---- openjdk-orig/jdk/make/sun/awt/mawt.gmk 2012-08-28 19:13:16.000000000 -0400
-+++ openjdk/jdk/make/sun/awt/mawt.gmk 2013-01-22 11:56:22.315418708 -0500
-@@ -234,12 +234,6 @@
- endif # !HEADLESS
- endif # PLATFORM
-
--ifeq ($(PLATFORM), linux)
-- # Checking for the X11/extensions headers at the additional location
-- CPPFLAGS += -I$(firstword $(wildcard $(OPENWIN_HOME)/include/X11/extensions) \
-- $(wildcard /usr/include/X11/extensions))
--endif
--
- ifeq ($(PLATFORM), macosx))
- CPPFLAGS += -I$(OPENWIN_HOME)/include/X11/extensions \
- -I$(OPENWIN_HOME)/include
diff --git a/pkgs/development/compilers/openjdk/currency-date-range.patch b/pkgs/development/compilers/openjdk/currency-date-range.patch
deleted file mode 100644
index b1c461591d1..00000000000
--- a/pkgs/development/compilers/openjdk/currency-date-range.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -Naur openjdk-7u65-b32-upstream/jdk/make/tools/src/build/tools/generatecurrencydata/GenerateCurrencyData.java openjdk-7u65-b32/jdk/make/tools/src/build/tools/generatecurrencydata/GenerateCurrencyData.java
---- openjdk-7u65-b32-upstream/jdk/make/tools/src/build/tools/generatecurrencydata/GenerateCurrencyData.java 2014-07-17 05:42:14.000000000 -0430
-+++ openjdk-7u65-b32/jdk/make/tools/src/build/tools/generatecurrencydata/GenerateCurrencyData.java 2014-12-30 10:15:50.327905933 -0430
-@@ -281,8 +281,8 @@
- checkCurrencyCode(newCurrency);
- String timeString = currencyInfo.substring(4, length - 4);
- long time = format.parse(timeString).getTime();
-- if (Math.abs(time - System.currentTimeMillis()) > ((long) 10) * 365 * 24 * 60 * 60 * 1000) {
-- throw new RuntimeException("time is more than 10 years from present: " + time);
-+ if (Math.abs(time - System.currentTimeMillis()) > ((long) 20) * 365 * 24 * 60 * 60 * 1000) {
-+ throw new RuntimeException("time is more than 20 years from present: " + time);
- }
- specialCaseCutOverTimes[specialCaseCount] = time;
- specialCaseOldCurrencies[specialCaseCount] = oldCurrency;
diff --git a/pkgs/development/compilers/openjdk/fix-java-home-jdk9.patch b/pkgs/development/compilers/openjdk/fix-java-home-jdk9.patch
deleted file mode 100644
index f9755d58e48..00000000000
--- a/pkgs/development/compilers/openjdk/fix-java-home-jdk9.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/hotspot/src/os/linux/vm/os_linux.cpp 2017-07-04 23:09:02.533972226 -0400
-+++ b/hotspot/src/os/linux/vm/os_linux.cpp 2017-07-04 23:07:52.118338845 -0400
-@@ -2318,10 +2318,7 @@
- assert(ret, "cannot locate libjvm");
- char *rp = NULL;
- if (ret && dli_fname[0] != '\0') {
-- rp = realpath(dli_fname, buf);
-- }
-- if (rp == NULL) {
-- return;
-+ snprintf(buf, buflen, "%s", dli_fname);
- }
-
- if (Arguments::sun_java_launcher_is_altjvm()) {
diff --git a/pkgs/development/compilers/openjdk/fix-java-home.patch b/pkgs/development/compilers/openjdk/fix-java-home.patch
deleted file mode 100644
index 5def344f171..00000000000
--- a/pkgs/development/compilers/openjdk/fix-java-home.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -ru -x '*~' openjdk-orig/hotspot/src/os/linux/vm/os_linux.cpp openjdk/hotspot/src/os/linux/vm/os_linux.cpp
---- openjdk-orig/hotspot/src/os/linux/vm/os_linux.cpp 2013-09-06 20:22:03.000000000 +0200
-+++ openjdk/hotspot/src/os/linux/vm/os_linux.cpp 2014-01-24 22:44:08.223857012 +0100
-@@ -2358,12 +2358,10 @@
- CAST_FROM_FN_PTR(address, os::jvm_path),
- dli_fname, sizeof(dli_fname), NULL);
- assert(ret, "cannot locate libjvm");
- char *rp = NULL;
- if (ret && dli_fname[0] != '\0') {
-- rp = realpath(dli_fname, buf);
-+ snprintf(buf, buflen, "%s", dli_fname);
- }
-- if (rp == NULL)
-- return;
-
- if (Arguments::created_by_gamma_launcher()) {
- // Support for the gamma launcher. Typical value for buf is
diff --git a/pkgs/development/compilers/openjdk/paxctl.patch b/pkgs/development/compilers/openjdk/paxctl.patch
deleted file mode 100644
index 12528a601cc..00000000000
--- a/pkgs/development/compilers/openjdk/paxctl.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff --git a/hotspot/make/linux/makefiles/launcher.make b/hotspot/make/linux/makefiles/launcher.make
-index 34bbcd6..41b9332 100644
---- a/hotspot/make/linux/makefiles/launcher.make
-+++ b/hotspot/make/linux/makefiles/launcher.make
-@@ -83,6 +83,8 @@ $(LAUNCHER): $(OBJS) $(LIBJVM) $(LAUNCHER_MAPFILE)
- $(QUIETLY) echo Linking launcher...
- $(QUIETLY) $(LINK_LAUNCHER/PRE_HOOK)
- $(QUIETLY) $(LINK_LAUNCHER) $(LFLAGS_LAUNCHER) -o $@ $(OBJS) $(LIBS_LAUNCHER)
-+ paxctl -c $(LAUNCHER)
-+ paxctl -zex -XXX_PAXFLAGS_XXX $(LAUNCHER)
- $(QUIETLY) $(LINK_LAUNCHER/POST_HOOK)
-
- $(LAUNCHER): $(LAUNCHER_SCRIPT)
-diff --git a/jdk/make/common/Program.gmk b/jdk/make/common/Program.gmk
-index 091800d..1de8cb4 100644
---- a/jdk/make/common/Program.gmk
-+++ b/jdk/make/common/Program.gmk
-@@ -60,6 +60,10 @@ ACTUAL_PROGRAM = $(ACTUAL_PROGRAM_DIR)/$(ACTUAL_PROGRAM_NAME)
- program_default_rule: all
-
- program: $(ACTUAL_PROGRAM)
-+ if [[ "$(PROGRAM)" = "java" ]]; then \
-+ paxctl -c $(ACTUAL_PROGRAM); \
-+ paxctl -zex -XXX_PAXFLAGS_XXX $(ACTUAL_PROGRAM); \
-+ fi
-
- # Work-around for missing processor specific mapfiles
- ifndef CROSS_COMPILE_ARCH
diff --git a/pkgs/development/compilers/openjdk/read-truststore-from-env-jdk9.patch b/pkgs/development/compilers/openjdk/read-truststore-from-env-jdk9.patch
deleted file mode 100644
index cb8d59ff806..00000000000
--- a/pkgs/development/compilers/openjdk/read-truststore-from-env-jdk9.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/jdk/src/java.base/share/classes/sun/security/ssl/TrustStoreManager.java 2017-06-26 21:48:25.000000000 -0400
-+++ b/jdk/src/java.base/share/classes/sun/security/ssl/TrustStoreManager.java.new 2017-07-05 20:45:57.491295030 -0400
-@@ -71,6 +71,7 @@
- *
- * The preference of the default trusted KeyStore is:
- * javax.net.ssl.trustStore
-+ * system environment variable JAVAX_NET_SSL_TRUSTSTORE
- * jssecacerts
- * cacerts
- */
-@@ -144,6 +145,9 @@
- String temporaryName = "";
- File temporaryFile = null;
- long temporaryTime = 0L;
-+ if (storePropName == null){
-+ storePropName = System.getenv("JAVAX_NET_SSL_TRUSTSTORE");
-+ }
- if (!"NONE".equals(storePropName)) {
- String[] fileNames =
- new String[] {storePropName, defaultStore};
diff --git a/pkgs/development/compilers/openjdk/read-truststore-from-env.patch b/pkgs/development/compilers/openjdk/read-truststore-from-env.patch
deleted file mode 100644
index 8fb0f409d0a..00000000000
--- a/pkgs/development/compilers/openjdk/read-truststore-from-env.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -ur openjdk-7u65-b32/jdk/src/share/classes/sun/security/ssl/TrustManagerFactoryImpl.java openjdk-7u65-b32.new/jdk/src/share/classes/sun/security/ssl/TrustManagerFactoryImpl.java
---- openjdk-7u65-b32/jdk/src/share/classes/sun/security/ssl/TrustManagerFactoryImpl.java 2014-07-17 12:12:14.000000000 +0200
-+++ openjdk-7u65-b32.new/jdk/src/share/classes/sun/security/ssl/TrustManagerFactoryImpl.java 2014-12-09 13:31:27.821960372 +0100
-@@ -158,6 +158,7 @@
- /*
- * Try:
- * javax.net.ssl.trustStore (if this variable exists, stop)
-+ * system environment variable JAVAX_NET_SSL_TRUSTSTORE
- * jssecacerts
- * cacerts
- *
-@@ -165,6 +166,9 @@
- */
-
- storeFileName = props.get("trustStore");
-+ if (storeFileName == null) {
-+ storeFileName = System.getenv("JAVAX_NET_SSL_TRUSTSTORE");
-+ }
- if (!"NONE".equals(storeFileName)) {
- if (storeFileName != null) {
- storeFile = new File(storeFileName);
diff --git a/pkgs/development/compilers/openjdk/swing-use-gtk.patch b/pkgs/development/compilers/openjdk/swing-use-gtk-jdk8.patch
similarity index 100%
rename from pkgs/development/compilers/openjdk/swing-use-gtk.patch
rename to pkgs/development/compilers/openjdk/swing-use-gtk-jdk8.patch
diff --git a/pkgs/development/compilers/openjdk/swing-use-gtk-jdk9.patch b/pkgs/development/compilers/openjdk/swing-use-gtk-jdk9.patch
deleted file mode 100644
index 07d95ba71b8..00000000000
--- a/pkgs/development/compilers/openjdk/swing-use-gtk-jdk9.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff -ru3 a/jdk/src/share/classes/javax/swing/UIManager.java b/jdk/src/share/classes/javax/swing/UIManager.java
---- a/jdk/src/java.desktop/share/classes/javax/swing/UIManager.java 2016-07-26 00:41:37.000000000 +0300
-+++ b/jdk/src/java.desktop/share/classes/javax/swing/UIManager.java 2016-10-02 22:46:01.890071761 +0300
-@@ -607,11 +607,9 @@
- if (osType == OSInfo.OSType.WINDOWS) {
- return "com.sun.java.swing.plaf.windows.WindowsLookAndFeel";
- } else {
-- String desktop = AccessController.doPrivileged(new GetPropertyAction("sun.desktop"));
- Toolkit toolkit = Toolkit.getDefaultToolkit();
-- if ("gnome".equals(desktop) &&
-- toolkit instanceof SunToolkit &&
-- ((SunToolkit) toolkit).isNativeGTKAvailable()) {
-+ if (toolkit instanceof SunToolkit &&
-+ ((SunToolkit) toolkit).isNativeGTKAvailable()) {
- // May be set on Linux and Solaris boxs.
- return "com.sun.java.swing.plaf.gtk.GTKLookAndFeel";
- }
-@@ -1341,7 +1339,7 @@
- lafName = (String) lafData.remove("defaultlaf");
- }
- if (lafName == null) {
-- lafName = getCrossPlatformLookAndFeelClassName();
-+ lafName = getSystemLookAndFeelClassName();
- }
- lafName = swingProps.getProperty(defaultLAFKey, lafName);
-
diff --git a/pkgs/development/compilers/oraclejdk/jdk9-linux.nix b/pkgs/development/compilers/oraclejdk/jdk9-linux.nix
deleted file mode 100644
index 87f2e49b443..00000000000
--- a/pkgs/development/compilers/oraclejdk/jdk9-linux.nix
+++ /dev/null
@@ -1,158 +0,0 @@
-{ swingSupport ? true
-, stdenv
-, requireFile
-, makeWrapper
-, unzip
-, file
-, xorg ? null
-, packageType ? "JDK" # JDK, JRE, or ServerJRE
-, pluginSupport ? true
-, glib
-, libxml2
-, ffmpeg_2
-, libxslt
-, libGL
-, freetype
-, fontconfig
-, gtk2
-, pango
-, cairo
-, alsaLib
-, atk
-, gdk_pixbuf
-, zlib
-, elfutils
-, setJavaClassPath
-}:
-
-assert stdenv.system == "x86_64-linux";
-assert swingSupport -> xorg != null;
-
-let
- version = "9.0.4";
-
- downloadUrlBase = http://www.oracle.com/technetwork/java/javase/downloads;
-
- rSubPaths = [
- "lib/jli"
- "lib/server"
- "lib"
- ];
-
-in
-
-let result = stdenv.mkDerivation rec {
- name = if packageType == "JDK" then "oraclejdk-${version}"
- else if packageType == "JRE" then "oraclejre-${version}"
- else if packageType == "ServerJRE" then "oracleserverjre-${version}"
- else abort "unknown package Type ${packageType}";
-
- src =
- if packageType == "JDK" then
- requireFile {
- name = "jdk-${version}_linux-x64_bin.tar.gz";
- url = "${downloadUrlBase}/jdk9-downloads-3848520.html";
- sha256 = "18nsjn64wkfmyb09wf2k7lvhazf83cs3dyichr038vl1gs3ymi4h";
- }
- else if packageType == "JRE" then
- requireFile {
- name = "jre-${version}_linux-x64_bin.tar.gz";
- url = "${downloadUrlBase}/jre9-downloads-3848532.html";
- sha256 = "01fp079mr04nniyf06w8vd47qxr6rly1lbh8dqkddb8fp9h6a79k";
- }
- else if packageType == "ServerJRE" then
- requireFile {
- name = "serverjre-${version}_linux-x64_bin.tar.gz";
- url = "${downloadUrlBase}/server-jre9-downloads-3848530.html";
- sha256 = "1jlpa4mn306hx0p9jcw3i6cpdvnng29dwjsymgcan56810q6p6yj";
- }
- else abort "unknown package Type ${packageType}";
-
- nativeBuildInputs = [ file ];
-
- buildInputs = [ makeWrapper ];
-
- # See: https://github.com/NixOS/patchelf/issues/10
- dontStrip = 1;
-
- installPhase = ''
- cd ..
-
- # Set PaX markings
- exes=$(file $sourceRoot/bin/* 2> /dev/null | grep -E 'ELF.*(executable|shared object)' | sed -e 's/: .*$//')
- for file in $exes; do
- paxmark m "$file"
- # On x86 for heap sizes over 700MB disable SEGMEXEC and PAGEEXEC as well.
- ${stdenv.lib.optionalString stdenv.isi686 ''paxmark msp "$file"''}
- done
-
- mv $sourceRoot $out
-
- shopt -s extglob
- for file in $out/*
- do
- if test -f $file ; then
- rm $file
- fi
- done
-
- if test -z "$pluginSupport"; then
- rm -f $out/bin/javaws
- fi
-
- mkdir $out/lib/plugins
- ln -s $out/lib/libnpjp2.so $out/lib/plugins
-
- # for backward compatibility
- ln -s $out $out/jre
-
- mkdir -p $out/nix-support
- printWords ${setJavaClassPath} > $out/nix-support/propagated-build-inputs
-
- # Set JAVA_HOME automatically.
- cat <> $out/nix-support/setup-hook
- if [ -z "\$JAVA_HOME" ]; then export JAVA_HOME=$out; fi
- EOF
- '';
-
- postFixup = ''
- rpath+="''${rpath:+:}${stdenv.lib.concatStringsSep ":" (map (a: "$out/${a}") rSubPaths)}"
-
- # set all the dynamic linkers
- find $out -type f -perm -0100 \
- -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
- --set-rpath "$rpath" {} \;
-
- find $out -name "*.so" -exec patchelf --set-rpath "$rpath" {} \;
-
- # Oracle Java Mission Control needs to know where libgtk-x11 and related is
- if test -x $out/bin/jmc; then
- wrapProgram "$out/bin/jmc" \
- --suffix-each LD_LIBRARY_PATH ':' "$rpath"
- fi
- '';
-
- /**
- * libXt is only needed on amd64
- */
- libraries =
- [stdenv.cc.libc glib libxml2 ffmpeg_2 libxslt libGL xorg.libXxf86vm alsaLib fontconfig freetype pango gtk2 cairo gdk_pixbuf atk zlib elfutils] ++
- (if swingSupport then [xorg.libX11 xorg.libXext xorg.libXtst xorg.libXi xorg.libXp xorg.libXt xorg.libXrender stdenv.cc.cc] else []);
-
- rpath = stdenv.lib.strings.makeLibraryPath libraries;
-
- passthru.mozillaPlugin = "/lib/plugins";
-
- passthru.jre = result; # FIXME: use multiple outputs or return actual JRE package
-
- passthru.home = result;
-
- # for backward compatibility
- passthru.architecture = "";
-
- meta = with stdenv.lib; {
- license = licenses.unfree;
- platforms = [ "x86_64-linux" ]; # some inherit jre.meta.platforms
- };
-
-}; in result
diff --git a/pkgs/development/compilers/purescript/psc-package/default.nix b/pkgs/development/compilers/purescript/psc-package/default.nix
index 451722aea06..2d8a051a811 100644
--- a/pkgs/development/compilers/purescript/psc-package/default.nix
+++ b/pkgs/development/compilers/purescript/psc-package/default.nix
@@ -4,13 +4,13 @@ with lib;
mkDerivation rec {
pname = "psc-package";
- version = "0.2.5";
+ version = "0.3.2-pre";
src = fetchFromGitHub {
owner = "purescript";
repo = pname;
rev = "v${version}";
- sha256 = "15g0l8g8l6m5x4f73w68r9iav091x12b3wjxh0rx3ggnj093g6j1";
+ sha256 = "0vriyvq0mad3px4lhbqg6xrym2z6wnhr81101mx8cg1lgql1wgwk";
};
isLibrary = false;
diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix
index 39b84ae6a36..0da3e9f0fd1 100644
--- a/pkgs/development/compilers/sbcl/default.nix
+++ b/pkgs/development/compilers/sbcl/default.nix
@@ -9,11 +9,11 @@
stdenv.mkDerivation rec {
name = "sbcl-${version}";
- version = "1.4.4";
+ version = "1.4.6";
src = fetchurl {
url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${name}-source.tar.bz2";
- sha256 = "1k6v5b8qv7vyxvh8asx6phf2hbapx5pp5p5j47hgnq123fwnh4fa";
+ sha256 = "0y46zgg3lamaqqhxbqmbwzvdakzvc9j07d0ci8f57pfl549v04a4";
};
patchPhase = ''
diff --git a/pkgs/development/compilers/swift/default.nix b/pkgs/development/compilers/swift/default.nix
index fc142a4026b..abbfdd2abb7 100644
--- a/pkgs/development/compilers/swift/default.nix
+++ b/pkgs/development/compilers/swift/default.nix
@@ -37,7 +37,7 @@
}:
let
- v_major = "4.0.3";
+ v_major = "4.1";
version = "${v_major}-RELEASE";
version_friendly = "${v_major}";
@@ -55,15 +55,15 @@ let
# For more inforation, see: https://github.com/apple/swift/pull/3594#issuecomment-234169759
clang = fetch {
repo = "swift-clang";
- sha256 = "0zm624iwiprk3c3nzqf4p1fd9zqic4yi3jv51cw3249ax4x6vy10";
+ sha256 = "0j8bi6jv4m4hqiib02q5cvnxd9j6bwiri853x6px86vai3mdff0h";
};
llvm = fetch {
repo = "swift-llvm";
- sha256 = "11vw6461c0cdvwm1wna1a5709fjj14hzp6br6jg94p4f6jp3yv4d";
+ sha256 = "03558f5zbchqvdabi3x9ahyz4xkmj7w69gazivz372832lgr9zfh";
};
compilerrt = fetch {
repo = "swift-compiler-rt";
- sha256 = "1hj4qaj4c9n2wzg2cvarbyl0n708zd1dlw4zkzq07fjxxqs36nfa";
+ sha256 = "1wkymmxi2v759xkwlzfrq9rivndjfvp6ikrzz10mvvrvyvrgwqnl";
};
cmark = fetch {
repo = "swift-cmark";
@@ -71,32 +71,32 @@ let
};
lldb = fetch {
repo = "swift-lldb";
- sha256 = "0yk5qg85008vcn63vn2jpn5ls9pdhda222p2w1cfkrj27k5k8vqr";
+ sha256 = "09x3d3bc6rn9g6jpi3fb120c4r2carsmqla4bq4scjrs0867jz9m";
};
llbuild = fetch {
repo = "swift-llbuild";
- sha256 = "0jffw6z1s6ck1i05brw59x6vsg7zrxbz5n2wz72fj29rh3nppc7a";
+ sha256 = "04y0ihfyam2n671vmpk9gy0gb9lb3ivh6mr19862p5kg5bmrcic1";
};
pm = fetch {
repo = "swift-package-manager";
- sha256 = "0xj070b8fii7ijfsnyq4fxgv6569vdrg0yippi85h2p1l7s9aagh";
+ sha256 = "08d87fc29qq7m92jaxkiczsa7b567pwbibiwwkzdrj6a0gr11qn3";
};
xctest = fetch {
repo = "swift-corelibs-xctest";
- sha256 = "0l355wq8zfwrpv044xf4smjwbm0bmib360748n8cwls3vkr9l2yv";
+ sha256 = "1alkgxx8jsr2jjv2kchnjaaddb1byjwim015m1z3qxh6lknqm0k5";
};
foundation = fetch {
repo = "swift-corelibs-foundation";
- sha256 = "0s7yc5gsbd96a4bs8c6q24dyfjm4xhcr2nzhl2ics8dmi60j15s4";
+ sha256 = "06pbhb7wg4q5qgprhiyzbqy6hssga7xxjclhlh81gd6rvfd6bxvw";
};
libdispatch = fetch {
repo = "swift-corelibs-libdispatch";
- sha256 = "0x8zzq3shhvmhq4sbhaaa0ddiv3nw347pz6ayym6jyzq7j9n15ia";
+ sha256 = "198vskbajch8s168a649qz5an92i2mxmmmzcjlgxlzh38fgxri0n";
fetchSubmodules = true;
};
swift = fetch {
repo = "swift";
- sha256 = "0a1gq0k5701i418f0qi7kywv16q7vh4a4wp0f6fpyv4sjkq27msx";
+ sha256 = "1flvr12bg8m4k44yq0xy9qrllv5rpxgxisjgbpakk5p3myfsx7ky";
};
};
@@ -132,19 +132,6 @@ let
install_destdir=$SWIFT_INSTALL_DIR \
extra_cmake_options="${stdenv.lib.concatStringsSep "," cmakeFlags}"'';
- # from llvm/4/llvm.nix
- sigaltstackPatch = fetchpatch {
- name = "sigaltstack.patch"; # for glibc-2.26
- url = https://github.com/llvm-mirror/compiler-rt/commit/8a5e425a68d.diff;
- sha256 = "0h4y5vl74qaa7dl54b1fcyqalvlpd8zban2d1jxfkxpzyi7m8ifi";
- };
-
- # https://bugs.swift.org/browse/SR-6409
- sigunusedPatch = fetchpatch {
- name = "sigunused.patch";
- url = "https://github.com/apple/swift-llbuild/commit/303a89bc6da606c115560921a452686aa0655f5e.diff";
- sha256 = "04sw7ym1grzggj1v3xrzr2ljxz8rf9rnn9n5fg1xjbwlrdagkc7m";
- };
in
stdenv.mkDerivation rec {
name = "swift-${version_friendly}";
@@ -179,7 +166,7 @@ stdenv.mkDerivation rec {
configurePhase = ''
cd ..
-
+
export INSTALLABLE_PACKAGE=$PWD/swift.tar.gz
mkdir build install
@@ -236,20 +223,18 @@ stdenv.mkDerivation rec {
'' + ''
patch -p1 -d swift -i ${./patches/0001-build-presets-linux-don-t-require-using-Ninja.patch}
patch -p1 -d swift -i ${./patches/0002-build-presets-linux-allow-custom-install-prefix.patch}
- patch -p1 -d swift -i ${./patches/0003-build-presets-linux-disable-tests.patch}
patch -p1 -d swift -i ${./patches/0004-build-presets-linux-plumb-extra-cmake-options.patch}
- # https://sourceware.org/glibc/wiki/Release/2.26#Removal_of_.27xlocale.h.27
- patch -p1 -i ${./patches/remove_xlocale.patch}
- # https://bugs.swift.org/browse/SR-4633
- patch -p1 -d swift -i ${./patches/icu59.patch}
+
+ sed -i swift/utils/build-presets.ini \
+ -e 's/^test-installable-package$/# \0/' \
+ -e 's/^test$/# \0/' \
+ -e 's/^validation-test$/# \0/' \
+ -e 's/^long-test$/# \0/'
# https://bugs.swift.org/browse/SR-5779
sed -i -e 's|"-latomic"|"-Wl,-rpath,${clang.cc.gcc.lib}/lib" "-L${clang.cc.gcc.lib}/lib" "-latomic"|' swift/cmake/modules/AddSwift.cmake
- # https://bugs.swift.org/browse/SR-4838
- sed -i -e '30i#include ' lldb/include/lldb/Utility/TaskPool.h
-
- substituteInPlace clang/lib/Driver/ToolChains.cpp \
+ substituteInPlace clang/lib/Driver/ToolChains/Linux.cpp \
--replace ' addPathIfExists(D, SysRoot + "/usr/lib", Paths);' \
' addPathIfExists(D, SysRoot + "/usr/lib", Paths); addPathIfExists(D, "${glibc}/lib", Paths);'
patch -p1 -d clang -i ${./purity.patch}
@@ -258,19 +243,15 @@ stdenv.mkDerivation rec {
sed -i 's,curses,ncurses,' llbuild/*/*/CMakeLists.txt
# This test fails on one of my machines, not sure why.
- # Disabling for now.
+ # Disabling for now.
rm llbuild/tests/Examples/buildsystem-capi.llbuild
PREFIX=''${out/#\/}
substituteInPlace swift-corelibs-xctest/build_script.py \
--replace usr "$PREFIX"
substituteInPlace swiftpm/Utilities/bootstrap \
- --replace "usr" "$PREFIX"
- '' + stdenv.lib.optionalString (stdenv ? glibc) ''
- patch -p1 -d compiler-rt -i ${sigaltstackPatch}
- patch -p1 -d compiler-rt -i ${./patches/sigaltstack.patch}
- patch -p1 -d llbuild -i ${sigunusedPatch}
- patch -p1 -i ${./patches/sigunused.patch}
+ --replace \"usr\" \"$PREFIX\" \
+ --replace usr/lib "$PREFIX/lib"
'';
doCheck = false;
@@ -305,7 +286,8 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ dtzWill ];
license = licenses.asl20;
# Swift doesn't support 32bit Linux, unknown on other platforms.
- platforms = [ "x86_64-linux" ];
+ platforms = platforms.linux;
+ badPlatforms = platforms.i686;
};
}
diff --git a/pkgs/development/compilers/swift/patches/0003-build-presets-linux-disable-tests.patch b/pkgs/development/compilers/swift/patches/0003-build-presets-linux-disable-tests.patch
deleted file mode 100644
index f647d9189dd..00000000000
--- a/pkgs/development/compilers/swift/patches/0003-build-presets-linux-disable-tests.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From fcc7c216da6cd255f884b7aa39f361786e3afa6a Mon Sep 17 00:00:00 2001
-From: Will Dietz
-Date: Tue, 28 Mar 2017 15:02:18 -0500
-Subject: [PATCH 3/4] build-presets: (linux) disable tests.
-
----
- utils/build-presets.ini | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/utils/build-presets.ini b/utils/build-presets.ini
-index 1095cbaab7..1739e91dc2 100644
---- a/utils/build-presets.ini
-+++ b/utils/build-presets.ini
-@@ -700,7 +700,7 @@ build-swift-stdlib-unittest-extra
-
- # Executes the lit tests for the installable package that is created
- # Assumes the swift-integration-tests repo is checked out
--test-installable-package
-+# test-installable-package
-
- # Path to the root of the installation filesystem.
- install-destdir=%(install_destdir)s
-@@ -713,9 +713,9 @@ mixin-preset=mixin_linux_installation
- build-subdir=buildbot_linux
- lldb
- release
--test
--validation-test
--long-test
-+#test
-+#validation-test
-+#long-test
- foundation
- libdispatch
- lit-args=-v
---
-2.12.2
-
diff --git a/pkgs/development/compilers/swift/patches/icu59.patch b/pkgs/development/compilers/swift/patches/icu59.patch
deleted file mode 100644
index 26337814caf..00000000000
--- a/pkgs/development/compilers/swift/patches/icu59.patch
+++ /dev/null
@@ -1,113 +0,0 @@
---- a/stdlib/public/stubs/UnicodeNormalization.cpp
-+++ b/stdlib/public/stubs/UnicodeNormalization.cpp
-@@ -86,11 +86,8 @@ ASCIICollation() {
- for (unsigned char c = 0; c < 128; ++c) {
- UErrorCode ErrorCode = U_ZERO_ERROR;
- intptr_t NumCollationElts = 0;
--#if defined(__CYGWIN__) || defined(_MSC_VER)
- UChar Buffer[1];
--#else
-- uint16_t Buffer[1];
--#endif
-+
- Buffer[0] = c;
-
- UCollationElements *CollationIterator =
-@@ -127,18 +124,9 @@ swift::_swift_stdlib_unicode_compare_utf16_utf16(const uint16_t *LeftString,
- int32_t LeftLength,
- const uint16_t *RightString,
- int32_t RightLength) {
--#if defined(__CYGWIN__) || defined(_MSC_VER)
-- // ICU UChar type is platform dependent. In Cygwin, it is defined
-- // as wchar_t which size is 2. It seems that the underlying binary
-- // representation is same with swift utf16 representation.
- return ucol_strcoll(GetRootCollator(),
- reinterpret_cast(LeftString), LeftLength,
- reinterpret_cast(RightString), RightLength);
--#else
-- return ucol_strcoll(GetRootCollator(),
-- LeftString, LeftLength,
-- RightString, RightLength);
--#endif
- }
-
- /// Compares the strings via the Unicode Collation Algorithm on the root locale.
-@@ -156,12 +144,8 @@ swift::_swift_stdlib_unicode_compare_utf8_utf16(const unsigned char *LeftString,
- UErrorCode ErrorCode = U_ZERO_ERROR;
-
- uiter_setUTF8(&LeftIterator, reinterpret_cast(LeftString), LeftLength);
--#if defined(__CYGWIN__) || defined(_MSC_VER)
- uiter_setString(&RightIterator, reinterpret_cast(RightString),
- RightLength);
--#else
-- uiter_setString(&RightIterator, RightString, RightLength);
--#endif
-
- uint32_t Diff = ucol_strcollIter(GetRootCollator(),
- &LeftIterator, &RightIterator, &ErrorCode);
-@@ -199,14 +183,10 @@ swift::_swift_stdlib_unicode_compare_utf8_utf8(const unsigned char *LeftString,
- void *swift::_swift_stdlib_unicodeCollationIterator_create(
- const __swift_uint16_t *Str, __swift_uint32_t Length) {
- UErrorCode ErrorCode = U_ZERO_ERROR;
--#if defined(__CYGWIN__) || defined(_MSC_VER)
- UCollationElements *CollationIterator = ucol_openElements(
- GetRootCollator(), reinterpret_cast(Str), Length,
- &ErrorCode);
--#else
-- UCollationElements *CollationIterator = ucol_openElements(
-- GetRootCollator(), Str, Length, &ErrorCode);
--#endif
-+
- if (U_FAILURE(ErrorCode)) {
- swift::crash("_swift_stdlib_unicodeCollationIterator_create: ucol_openElements() failed.");
- }
-@@ -244,17 +224,12 @@ swift::_swift_stdlib_unicode_strToUpper(uint16_t *Destination,
- const uint16_t *Source,
- int32_t SourceLength) {
- UErrorCode ErrorCode = U_ZERO_ERROR;
--#if defined(__CYGWIN__) || defined(_MSC_VER)
- uint32_t OutputLength = u_strToUpper(reinterpret_cast(Destination),
- DestinationCapacity,
- reinterpret_cast(Source),
- SourceLength,
- "", &ErrorCode);
--#else
-- uint32_t OutputLength = u_strToUpper(Destination, DestinationCapacity,
-- Source, SourceLength,
-- "", &ErrorCode);
--#endif
-+
- if (U_FAILURE(ErrorCode) && ErrorCode != U_BUFFER_OVERFLOW_ERROR) {
- swift::crash("u_strToUpper: Unexpected error uppercasing unicode string.");
- }
-@@ -271,17 +246,12 @@ swift::_swift_stdlib_unicode_strToLower(uint16_t *Destination,
- const uint16_t *Source,
- int32_t SourceLength) {
- UErrorCode ErrorCode = U_ZERO_ERROR;
--#if defined(__CYGWIN__) || defined(_MSC_VER)
- uint32_t OutputLength = u_strToLower(reinterpret_cast(Destination),
- DestinationCapacity,
- reinterpret_cast(Source),
- SourceLength,
- "", &ErrorCode);
--#else
-- uint32_t OutputLength = u_strToLower(Destination, DestinationCapacity,
-- Source, SourceLength,
-- "", &ErrorCode);
--#endif
-+
- if (U_FAILURE(ErrorCode) && ErrorCode != U_BUFFER_OVERFLOW_ERROR) {
- swift::crash("u_strToLower: Unexpected error lowercasing unicode string.");
- }
-@@ -300,9 +300,9 @@
-
- swift::__swift_stdlib_UBreakIterator *swift::__swift_stdlib_ubrk_open(
- swift::__swift_stdlib_UBreakIteratorType type, const char *locale,
-- const UChar *text, int32_t textLength, __swift_stdlib_UErrorCode *status) {
-+ const __swift_stdlib_UChar * text, __swift_int32_t textLength, __swift_stdlib_UErrorCode *status) {
- return ptr_cast(
-- ubrk_open(static_cast(type), locale, text, textLength,
-+ ubrk_open(static_cast(type), locale, reinterpret_cast(text), textLength,
- ptr_cast(status)));
- }
-
diff --git a/pkgs/development/compilers/swift/patches/remove_xlocale.patch b/pkgs/development/compilers/swift/patches/remove_xlocale.patch
deleted file mode 100644
index 8ef7e391696..00000000000
--- a/pkgs/development/compilers/swift/patches/remove_xlocale.patch
+++ /dev/null
@@ -1,54 +0,0 @@
---- a/swift/stdlib/public/SDK/os/os_trace_blob.c
-+++ b/swift/stdlib/public/SDK/os/os_trace_blob.c
-@@ -14,7 +14,6 @@
- #include
- #include
- #include
--#include
- #include "os_trace_blob.h"
-
- OS_NOINLINE
-
---- a/swift/stdlib/public/stubs/Stubs.cpp
-+++ b/swift/stdlib/public/stubs/Stubs.cpp
-@@ -61,7 +61,6 @@
- #define strtof_l swift_strtof_l
- #define strtold_l swift_strtold_l
- #else
--#include
- #endif
- #include
- #include "llvm/ADT/StringExtras.h"
-
---- a/swift-corelibs-foundation/CoreFoundation/String.subproj/CFStringDefaultEncoding.h
-+++ b/swift-corelibs-foundation/CoreFoundation/String.subproj/CFStringDefaultEncoding.h
-@@ -20,7 +20,6 @@
- #include
- #include
- #include
--#include
-
- CF_EXTERN_C_BEGIN
-
-
---- a/swift-corelibs-foundation/CoreFoundation/String.subproj/CFStringEncodings.c
-+++ b/swift-corelibs-foundation/CoreFoundation/String.subproj/CFStringEncodings.c
-@@ -24,7 +24,6 @@
- #include
- #include
- #include
--#include
- #include
- #endif
-
-
---- a/swift-corelibs-foundation/CoreFoundation/Base.subproj/CFInternal.h
-+++ b/swift-corelibs-foundation/CoreFoundation/Base.subproj/CFInternal.h
-@@ -95,7 +95,6 @@
- #if DEPLOYMENT_TARGET_MACOSX || DEPLOYMENT_TARGET_EMBEDDED || DEPLOYMENT_TARGET_EMBEDDED_MINI || DEPLOYMENT_TARGET_LINUX || DEPLOYMENT_TARGET_FREEBSD
- #if TARGET_OS_CYGWIN
- #else
--#include
- #endif
- #include
- #include
diff --git a/pkgs/development/compilers/swift/patches/sigaltstack.patch b/pkgs/development/compilers/swift/patches/sigaltstack.patch
deleted file mode 100644
index c529fa3777b..00000000000
--- a/pkgs/development/compilers/swift/patches/sigaltstack.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/lib/esan/esan_sideline_linux.cpp
-+++ b/lib/esan/esan_sideline_linux.cpp
-@@ -70,7 +70,7 @@ int SidelineThread::runSideline(void *Arg) {
-
- // Set up a signal handler on an alternate stack for safety.
- InternalScopedBuffer StackMap(SigAltStackSize);
-- struct sigaltstack SigAltStack;
-+ stack_t SigAltStack;
- SigAltStack.ss_sp = StackMap.data();
- SigAltStack.ss_size = SigAltStackSize;
- SigAltStack.ss_flags = 0;
diff --git a/pkgs/development/compilers/swift/patches/sigunused.patch b/pkgs/development/compilers/swift/patches/sigunused.patch
deleted file mode 100644
index 2701d1a3ae2..00000000000
--- a/pkgs/development/compilers/swift/patches/sigunused.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/swiftpm/Sources/Basic/Process.swift
-+++ b/swiftpm/Sources/Basic/Process.swift
-@@ -258,7 +258,7 @@ public func launch() throws {
- // modify, so we have to take care about the set we use.
- var mostSignals = sigset_t()
- sigemptyset(&mostSignals)
-- for i in 1 ..< SIGUNUSED {
-+ for i in 1 ..< SIGSYS {
- if i == SIGKILL || i == SIGSTOP {
- continue
- }
diff --git a/pkgs/development/compilers/swift/purity.patch b/pkgs/development/compilers/swift/purity.patch
index f5fb4c73af4..b30d0d0b5d5 100644
--- a/pkgs/development/compilers/swift/purity.patch
+++ b/pkgs/development/compilers/swift/purity.patch
@@ -1,6 +1,17 @@
---- a/lib/Driver/Tools.cpp 2016-08-25 15:48:05.187553443 +0200
-+++ b/lib/Driver/Tools.cpp 2016-08-25 15:48:47.534468882 +0200
-@@ -9420,13 +9420,6 @@
+From 4add81bba40dcec62c4ea4481be8e35ac53e89d8 Mon Sep 17 00:00:00 2001
+From: Will Dietz
+Date: Thu, 18 May 2017 11:56:12 -0500
+Subject: [PATCH] "purity" patch for 5.0
+
+---
+ lib/Driver/ToolChains/Gnu.cpp | 7 -------
+ 1 file changed, 7 deletions(-)
+
+diff --git a/lib/Driver/ToolChains/Gnu.cpp b/lib/Driver/ToolChains/Gnu.cpp
+index fe3c0191bb..c6a482bece 100644
+--- a/lib/Driver/ToolChains/Gnu.cpp
++++ b/lib/Driver/ToolChains/Gnu.cpp
+@@ -494,13 +494,6 @@ void tools::gnutools::Linker::ConstructJob(Compilation &C, const JobAction &JA,
if (!Args.hasArg(options::OPT_static)) {
if (Args.hasArg(options::OPT_rdynamic))
CmdArgs.push_back("-export-dynamic");
@@ -14,3 +25,6 @@
}
CmdArgs.push_back("-o");
+--
+2.11.0
+
diff --git a/pkgs/development/eclipse/ecj/default.nix b/pkgs/development/eclipse/ecj/default.nix
deleted file mode 100644
index b6bee8aead0..00000000000
--- a/pkgs/development/eclipse/ecj/default.nix
+++ /dev/null
@@ -1,59 +0,0 @@
-{ stdenv, fetchurl, unzip, ant, jdk7, makeWrapper }:
-
-let
- version = "3.7.2";
- date = "201202080800";
-in
-
-stdenv.mkDerivation rec {
- name = "ecj-${version}";
-
- src = fetchurl {
- url = "http://eclipse.ialto.org/eclipse/downloads/drops/R-${version}-${date}/ecjsrc-${version}.jar";
- sha256 = "0swyysbyfmv068x8q1c5jqpwk5zb4xahg17aypx5rwb660f8fpbm";
- };
-
- buildInputs = [ unzip ant jdk7 makeWrapper ];
-
- unpackPhase = ''
- mkdir "${name}"
- cd "${name}"
- unzip "$src"
- '';
-
- # Use whatever compiler Ant knows.
- buildPhase = "ant build";
-
- installPhase = ''
- mkdir -pv $out/share/java
- cp -v *.jar $out/share/java
-
- mkdir -pv $out/bin
- makeWrapper ${jdk7.jre}/bin/java $out/bin/ecj \
- --add-flags "-cp $out/share/java/ecj.jar org.eclipse.jdt.internal.compiler.batch.Main"
-
- # Add a setup hook that causes Ant to use the ECJ.
- mkdir -p $out/nix-support
- cat < $out/nix-support/setup-hook
- export NIX_ANT_ARGS="-Dbuild.compiler=org.eclipse.jdt.core.JDTCompilerAdapter \$NIX_ANT_ARGS"
- EOF
- '';
-
- meta = {
- description = "The Eclipse Compiler for Java (ECJ)";
-
- longDescription = ''
- ECJ is an incremental Java compiler. Implemented as an Eclipse
- builder, it is based on technology evolved from VisualAge for Java
- compiler. In particular, it allows users to run and debug code which
- still contains unresolved errors.
- '';
-
- homepage = http://www.eclipse.org/jdt/core/index.php;
-
- # http://www.eclipse.org/legal/epl-v10.html (free software, copyleft)
- license = stdenv.lib.licenses.epl10;
-
- platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
- };
-}
diff --git a/pkgs/development/go-modules/generic/default.nix b/pkgs/development/go-modules/generic/default.nix
index a6d83fc770c..77c2687e291 100644
--- a/pkgs/development/go-modules/generic/default.nix
+++ b/pkgs/development/go-modules/generic/default.nix
@@ -98,7 +98,7 @@ go.stdenv.mkDerivation (
rmdir goPath
'') + (lib.optionalString (extraSrcPaths != []) ''
- ${rsync}/bin/rsync -a ${lib.concatMapStrings (p: "${p}/src") extraSrcPaths} go
+ ${rsync}/bin/rsync -a ${lib.concatMapStringsSep " " (p: "${p}/src") extraSrcPaths} go
'') + ''
export GOPATH=$NIX_BUILD_TOP/go:$GOPATH
diff --git a/pkgs/development/guile-modules/guile-fibers/default.nix b/pkgs/development/guile-modules/guile-fibers/default.nix
index 5f82a93c513..cfb56790221 100644
--- a/pkgs/development/guile-modules/guile-fibers/default.nix
+++ b/pkgs/development/guile-modules/guile-fibers/default.nix
@@ -23,6 +23,6 @@ in stdenv.mkDerivation {
homepage = https://github.com/wingo/fibers;
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ vyp ];
- platforms = platforms.all;
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 71d7f96aa85..6d33dfd940b 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -32,8 +32,10 @@ self: super: {
# compiled on Linux. We provide the name to avoid evaluation errors.
unbuildable = throw "package depends on meta package 'unbuildable'";
- # hackage-security's test suite does not compile with Cabal 2.x.
- # See https://github.com/haskell/hackage-security/issues/188.
+ # Use the latest version of the Cabal library.
+ cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_1; });
+
+ # The test suite depends on old versions of tasty and QuickCheck.
hackage-security = dontCheck super.hackage-security;
# Link statically to avoid runtime dependency on GHC.
@@ -959,37 +961,37 @@ self: super: {
hledger = overrideCabal super.hledger (drv: {
postInstall = ''
for i in $(seq 1 9); do
- for j in $data/share/${self.ghc.name}/*-${self.ghc.name}/*/*.$i $data/share/${self.ghc.name}/*-${self.ghc.name}/*/.otherdocs/*.$i; do
+ for j in embeddedfiles/*.$i; do
mkdir -p $out/share/man/man$i
- cp $j $out/share/man/man$i/
+ cp -v $j $out/share/man/man$i/
done
done
mkdir -p $out/share/info
- cp $data/share/${self.ghc.name}/*-${self.ghc.name}/*/*.info $out/share/info/
+ cp -v embeddedfiles/*.info* $out/share/info/
'';
});
hledger-ui = overrideCabal super.hledger-ui (drv: {
postInstall = ''
for i in $(seq 1 9); do
- for j in $data/share/${self.ghc.name}/*-${self.ghc.name}/*/*.$i $data/share/${self.ghc.name}/*-${self.ghc.name}/*/.otherdocs/*.$i; do
+ for j in *.$i; do
mkdir -p $out/share/man/man$i
- cp $j $out/share/man/man$i/
+ cp -v $j $out/share/man/man$i/
done
done
mkdir -p $out/share/info
- cp $data/share/${self.ghc.name}/*-${self.ghc.name}/*/*.info $out/share/info/
+ cp -v *.info* $out/share/info/
'';
});
hledger-web = overrideCabal super.hledger-web (drv: {
postInstall = ''
for i in $(seq 1 9); do
- for j in $data/share/${self.ghc.name}/*-${self.ghc.name}/*/*.$i $data/share/${self.ghc.name}/*-${self.ghc.name}/*/.otherdocs/*.$i; do
+ for j in *.$i; do
mkdir -p $out/share/man/man$i
- cp $j $out/share/man/man$i/
+ cp -v $j $out/share/man/man$i/
done
done
mkdir -p $out/share/info
- cp $data/share/${self.ghc.name}/*-${self.ghc.name}/*/*.info $out/share/info/
+ cp -v *.info* $out/share/info/
'';
});
@@ -1008,4 +1010,34 @@ self: super: {
# https://github.com/strake/lenz-template.hs/issues/1
lenz-template = doJailbreak super.lenz-template;
+ # https://github.com/haskell-hvr/resolv/issues/1
+ resolv = dontCheck super.resolv;
+
+ # spdx 0.2.2.0 needs older tasty
+ # was fixed in spdx master (4288df6e4b7840eb94d825dcd446b42fef25ef56)
+ spdx = dontCheck super.spdx;
+
+ # The test suite does not know how to find the 'alex' binary.
+ alex = overrideCabal super.alex (drv: {
+ testSystemDepends = (drv.testSystemDepends or []) ++ [pkgs.which];
+ preCheck = ''export PATH="$PWD/dist/build/alex:$PATH"'';
+ });
+
}
+
+//
+
+(let
+ amazonkaOverrides = self: super: {
+ conduit = self.conduit_1_2_13_1;
+ conduit-extra = self.conduit-extra_1_2_3_2;
+ resourcet = self.resourcet_1_1_11;
+ xml-conduit = self.xml-conduit_1_7_1_2;
+ http-conduit = self.http-conduit_2_2_4;
+ };
+ amazonka-core = super.amazonka-core.overrideScope amazonkaOverrides;
+ amazonka = super.amazonka.overrideScope amazonkaOverrides;
+ amazonka-test = super.amazonka-test.overrideScope amazonkaOverrides;
+in {
+ inherit amazonka amazonka-core amazonka-test;
+})
\ No newline at end of file
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
index a071a6aa866..15220c24b4f 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -173,10 +173,6 @@ self: super: {
# https://github.com/thoughtpolice/hs-ed25519/issues/13
ed25519 = dontCheck super.ed25519;
- # https://github.com/well-typed/hackage-security/issues/157
- # https://github.com/well-typed/hackage-security/issues/158
- hackage-security = dontHaddock (dontCheck super.hackage-security);
-
# Breaks a dependency cycle between QuickCheck and semigroups
hashable = dontCheck super.hashable;
unordered-containers = dontCheck super.unordered-containers;
@@ -223,4 +219,15 @@ self: super: {
chr-pretty = doJailbreak super.chr-pretty;
chr-parse = doJailbreak super.chr-parse;
+ # The autogenerated Nix expressions don't take into
+ # account `if impl(ghc >= x.y)`, which is a common method to depend
+ # on `semigroups` or `fail` when building with GHC < 8.0.
+ system-filepath = addBuildDepend super.system-filepath self.semigroups;
+ haskell-src-exts = addBuildDepend super.haskell-src-exts self.semigroups;
+ free = addBuildDepend super.free self.fail;
+
+ # Newer versions don't build without base-4.9
+ resourcet = self.resourcet_1_1_11;
+ conduit = self.conduit_1_2_13_1;
+
}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
index 757c1d8c32d..7924a39fa96 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
@@ -66,7 +66,15 @@ self: super: {
inline-c = super.inline-c_0_5_6_1;
inline-c-cpp = super.inline-c-cpp_0_1_0_0;
+ # test dep hedgehog pulls in concurrent-output, which does not build
+ # due to processing version mismatch
+ either = dontCheck super.either;
+
+ # test dep tasty has a version mismatch
+ indents = dontCheck super.indents;
+
# Newer versions require GHC 8.2.
+ haddock-library = self.haddock-library_1_4_3;
haddock-api = self.haddock-api_2_17_4;
haddock = self.haddock_2_17_5;
}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
index e37c7bb2d3e..b6fdb75e550 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
@@ -41,9 +41,6 @@ self: super: {
prePatch = "sed -i -e 's/process.*< 1.5,/process,/g' Cabal.cabal";
});
- # cabal-install can use the native Cabal library.
- cabal-install = super.cabal-install.override { Cabal = null; };
-
# jailbreak-cabal doesn't seem to work right with the native Cabal version.
jailbreak-cabal = pkgs.haskell.packages.ghc802.jailbreak-cabal;
@@ -87,12 +84,12 @@ self: super: {
purescript = doJailbreak (super.purescript);
# These packages need Cabal 2.2.x, which is not the default.
- distribution-nixpkgs = super.distribution-nixpkgs.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_0; });
- hackage-db_2_0_1 = super.hackage-db_2_0_1.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_0; });
- cabal2nix = super.cabal2nix.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_0; });
- cabal2spec = super.cabal2spec.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_0; });
+ distribution-nixpkgs = super.distribution-nixpkgs.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_1; });
+ hackage-db_2_0_1 = super.hackage-db_2_0_1.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_1; });
+ cabal2nix = super.cabal2nix.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_1; });
+ cabal2spec = super.cabal2spec.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_1; });
stylish-cabal = dontCheck (super.stylish-cabal.overrideScope (self: super: {
- Cabal = self.Cabal_2_2_0_0;
+ Cabal = self.Cabal_2_2_0_1;
haddock-library = dontHaddock (dontCheck self.haddock-library_1_5_0_1);
}));
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
index 11de2835422..7538c369741 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
@@ -8,9 +8,6 @@ self: super: {
inherit (pkgs) llvmPackages;
# Disable GHC 8.4.x core libraries.
- #
- # Verify against:
- # ls /nix/store/wnh3kxra586h9wvxrn62g4lmsri2akds-ghc-8.4.20180115/lib/ghc-8.4.20180115/ -1 | sort | grep -e '-' | grep -Ev '(txt|h|targets)$'
array = null;
base = null;
binary = null;
@@ -20,12 +17,11 @@ self: super: {
deepseq = null;
directory = null;
filepath = null;
- bin-package-db = null;
ghc-boot = null;
ghc-boot-th = null;
ghc-compact = null;
- ghci = null;
ghc-prim = null;
+ ghci = null;
haskeline = null;
hpc = null;
integer-gmp = null;
@@ -33,6 +29,7 @@ self: super: {
parsec = null;
pretty = null;
process = null;
+ rts = null;
stm = null;
template-haskell = null;
terminfo = null;
@@ -121,41 +118,6 @@ self: super: {
## On Hackage:
- ## Upstreamed, awaiting a Hackage release
- cabal-install = overrideCabal super.cabal-install (drv: {
- ## Setup: Encountered missing dependencies:
- ## Cabal >=2.0.1.0 && <2.1, base >=4.5 && <4.11
- src = pkgs.fetchFromGitHub {
- owner = "haskell";
- repo = "cabal";
- rev = "728ad1a1e066da453ae13ee479629c00d8c2f32d";
- sha256 = "0943xpva0fjlx8fanqvb6bg7myim2pki7q8hz3q0ijnf73bgzf7p";
- };
- prePatch = "cd cabal-install; ";
- ## Setup: Encountered missing dependencies:
- ## network >=2.4 && <2.6, resolv >=0.1.1 && <0.2
- libraryHaskellDepends = (drv.libraryHaskellDepends or []) ++ (with self; [ network resolv ]);
- });
-
- ## Upstreamed, awaiting a Hackage release
- hackage-security = overrideCabal super.hackage-security (drv: {
- ## Setup: Encountered missing dependencies:
- ## Cabal >=1.14 && <1.26,
- ## directory >=1.1.0.2 && <1.3,
- ## time >=1.2 && <1.7
- src = pkgs.fetchFromGitHub {
- owner = "haskell";
- repo = "hackage-security";
- rev = "21519f4f572b9547485285ebe44c152e1230fd76";
- sha256 = "1ijwmps4pzyhsxfhc8mrnc3ldjvpisnmr457vvhgymwhdrr95k0z";
- };
- prePatch = "cd hackage-security; ";
- ## https://github.com/haskell/hackage-security/issues/211
- jailbreak = true;
- ## error: while evaluating ‘overrideCabal’ at nixpkgs://pkgs/development/haskell-modules/lib.nix:37:24, called from /home/deepfire/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix:217:22:
- editedCabalFile = null;
- });
-
## Upstreamed, awaiting a Hackage release
haskell-gi = overrideCabal super.haskell-gi (drv: {
## Setup: Encountered missing dependencies:
@@ -620,14 +582,8 @@ self: super: {
jailbreak = true;
});
- # Fix missing semigroup instance.
- data-inttrie = appendPatch super.data-inttrie (pkgs.fetchpatch
- { url = https://github.com/luqui/data-inttrie/pull/5.patch;
- sha256 = "1wwdzrbsjqb7ih4nl28sq5bbj125mxf93a74yh4viv5gmxwj606a";
- });
-
# Older versions don't compile.
- brick = self.brick_0_35_1;
+ brick = self.brick_0_36;
HaTeX = self.HaTeX_3_19_0_0;
matrix = self.matrix_0_3_6_1;
pandoc = self.pandoc_2_1_3;
@@ -642,4 +598,16 @@ self: super: {
# https://github.com/xmonad/xmonad-contrib/issues/235
xmonad-contrib = doJailbreak (appendPatch super.xmonad-contrib ./patches/xmonad-contrib-ghc-8.4.1-fix.patch);
+ # Contributed by Bertram Felgenhauer .
+ arrows = appendPatch super.arrows (pkgs.fetchpatch {
+ url = https://raw.githubusercontent.com/lambdabot/lambdabot/ghc-8.4.1/patches/arrows-0.4.4.1.patch;
+ sha256 = "0j859vclcfnz8n2mw466mv00kjsa9gdbrppjc1m3b68jbypdmfvr";
+ });
+
+ # Contributed by Bertram Felgenhauer .
+ flexible-defaults = appendPatch super.flexible-defaults (pkgs.fetchpatch {
+ url = https://raw.githubusercontent.com/lambdabot/lambdabot/ghc-8.4.1/patches/flexible-defaults-0.0.1.2.patch;
+ sha256 = "1bpsqq80h6nxm04wddgcgyzn0fjfsmhccmqb211jqswv5209znx8";
+ });
+
}
diff --git a/pkgs/development/haskell-modules/configuration-ghcjs.nix b/pkgs/development/haskell-modules/configuration-ghcjs.nix
index bd35c1cb3ae..7a6416b9e13 100644
--- a/pkgs/development/haskell-modules/configuration-ghcjs.nix
+++ b/pkgs/development/haskell-modules/configuration-ghcjs.nix
@@ -53,19 +53,6 @@ self: super:
terminfo = self.terminfo_0_4_0_2;
xhtml = self.xhtml_3000_2_1;
- # Cabal isn't part of the stage1 packages which form the default package-db
- # that GHCJS provides.
- # Almost all packages require Cabal to build their Setup.hs,
- # but usually they don't declare it explicitly as they don't need to for normal GHC.
- # To account for that we add Cabal by default.
- mkDerivation = args: super.mkDerivation (args // {
- setupHaskellDepends = (args.setupHaskellDepends or []) ++
- (if args.pname == "Cabal" then [ ]
- # Break the dependency cycle between Cabal and hscolour
- else if args.pname == "hscolour" then [ (dontHyperlinkSource self.Cabal) ]
- else [ self.Cabal ]);
- });
-
## OTHER PACKAGES
# haddock throws the error: No input file(s).
diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
index ae79162e29b..82dab3ac0a8 100644
--- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
+++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
@@ -38,7 +38,7 @@ core-packages:
- ghcjs-base-0
default-package-overrides:
- # LTS Haskell 11.2
+ # LTS Haskell 11.3
- abstract-deque ==0.3
- abstract-deque-tests ==0.3
- abstract-par ==0.3.3
@@ -81,7 +81,7 @@ default-package-overrides:
- airship ==0.9.3
- alarmclock ==0.4.0.3
- alerts ==0.1.0.0
- - alex ==3.2.3
+ - alex ==3.2.4
- algebra ==4.3.1
- algebraic-graphs ==0.0.5
- alsa-core ==0.5.0.1
@@ -141,7 +141,7 @@ default-package-overrides:
- avwx ==0.3.0.2
- axiom ==0.4.6
- b9 ==0.5.41
- - backprop ==0.1.3.0
+ - backprop ==0.1.5.0
- bank-holidays-england ==0.1.0.6
- barrier ==0.1.1
- base16-bytestring ==0.1.1.6
@@ -219,7 +219,7 @@ default-package-overrides:
- Boolean ==0.2.4
- boolean-like ==0.1.1.0
- boolsimplifier ==0.1.8
- - boomerang ==1.4.5.3
+ - boomerang ==1.4.5.5
- bordacount ==0.1.0.0
- both ==0.1.1.0
- bound ==2.0.1
@@ -257,7 +257,7 @@ default-package-overrides:
- Cabal ==2.0.1.1
- cabal-doctest ==1.0.6
- cabal-file-th ==0.2.4
- - cabal-rpm ==0.12.1
+ - cabal-rpm ==0.12.2
- cabal-toolkit ==0.0.5
- cache ==0.1.0.1
- cairo ==0.13.4.2
@@ -378,7 +378,7 @@ default-package-overrides:
- convertible ==1.1.1.0
- cookie ==0.4.4
- countable ==1.0
- - country ==0.1.4
+ - country ==0.1.5
- courier ==0.1.1.5
- cpphs ==1.20.8
- cprng-aes ==0.6.1
@@ -449,7 +449,7 @@ default-package-overrides:
- data-fix ==0.2.0
- data-has ==0.3.0.0
- data-hash ==0.2.0.1
- - data-inttrie ==0.1.2
+ - data-inttrie ==0.1.4
- data-lens-light ==0.1.2.2
- data-memocombinators ==0.5.1
- data-msgpack ==0.0.11
@@ -519,7 +519,7 @@ default-package-overrides:
- doctemplates ==0.2.2.1
- doctest ==0.13.0
- doctest-discover ==0.1.0.7
- - doctest-driver-gen ==0.2.0.1
+ - doctest-driver-gen ==0.2.0.2
- do-list ==1.0.1
- dom-parser ==3.0.0
- dotenv ==0.5.2.4
@@ -596,7 +596,7 @@ default-package-overrides:
- exceptional ==0.3.0.0
- exception-mtl ==0.4.0.1
- exceptions ==0.8.3
- - exception-transformers ==0.4.0.5
+ - exception-transformers ==0.4.0.6
- executable-hash ==0.2.0.4
- executable-path ==0.0.3.1
- exhaustive ==1.1.5
@@ -623,7 +623,7 @@ default-package-overrides:
- FenwickTree ==0.1.2.1
- fft ==0.1.8.6
- fgl ==5.6.0.0
- - filecache ==0.3.1
+ - filecache ==0.3.2
- file-embed ==0.0.10.1
- filelock ==0.1.1.2
- filemanip ==0.3.6.3
@@ -632,7 +632,7 @@ default-package-overrides:
- filter-logger ==0.6.0.0
- FindBin ==0.0.5
- find-clumpiness ==0.2.3.1
- - fingertree ==0.1.3.1
+ - fingertree ==0.1.4.1
- fingertree-psqueue ==0.3
- finite-typelits ==0.1.3.0
- fitspec ==0.4.4
@@ -792,18 +792,18 @@ default-package-overrides:
- H ==0.9.0.1
- h2c ==1.0.0
- hackage-db ==2.0
- - hackage-security ==0.5.2.2
+ - hackage-security ==0.5.3.0
- haddock-library ==1.4.5
- hailgun ==0.4.1.6
- hailgun-simple ==0.1.0.0
- - hakyll ==4.12.0.1
+ - hakyll ==4.12.1.0
- half ==0.2.2.3
- hamilton ==0.1.0.2
- HandsomeSoup ==0.4.2
- handwriting ==0.1.0.3
- hapistrano ==0.3.5.3
- happstack-jmacro ==7.0.12
- - happstack-server ==7.5.0.1
+ - happstack-server ==7.5.1
- happstack-server-tls ==7.1.6.5
- happy ==1.19.9
- hasbolt ==0.1.3.0
@@ -834,7 +834,7 @@ default-package-overrides:
- haskell-tools-refactor ==1.0.1.2
- haskell-tools-rewrite ==1.0.1.1
- haskintex ==0.8.0.0
- - hasmin ==1.0.1
+ - hasmin ==1.0.2
- hasql ==1.1.1
- hasql-migration ==0.1.3
- hasql-optparse-applicative ==0.3
@@ -892,7 +892,7 @@ default-package-overrides:
- hlibgit2 ==0.18.0.16
- hlibsass ==0.1.6.1
- hmatrix ==0.18.2.0
- - hmatrix-backprop ==0.1.0.0
+ - hmatrix-backprop ==0.1.2.0
- hmatrix-gsl ==0.18.2.0
- hmatrix-gsl-stats ==0.4.1.7
- hmatrix-morpheus ==0.1.1.1
@@ -914,7 +914,7 @@ default-package-overrides:
- hpc-coveralls ==1.0.10
- HPDF ==1.4.10
- hpio ==0.9.0.5
- - hpp ==0.5.1
+ - hpp ==0.5.2
- hpqtypes ==1.5.2.0
- hquantlib ==0.0.4.0
- hreader ==1.1.0
@@ -927,8 +927,8 @@ default-package-overrides:
- hsdns ==1.7.1
- hsebaysdk ==0.4.0.0
- hsemail ==2
- - hset ==2.2.0
- HSet ==0.0.1
+ - hset ==2.2.0
- hsexif ==0.6.1.5
- hs-GeoIP ==0.3
- hsignal ==0.2.7.5
@@ -978,7 +978,7 @@ default-package-overrides:
- HTTP ==4000.3.11
- http2 ==1.6.3
- http-api-data ==0.3.7.2
- - http-client ==0.5.11
+ - http-client ==0.5.12
- http-client-openssl ==0.2.1.1
- http-client-tls ==0.3.5.3
- http-common ==0.8.2.0
@@ -1001,7 +1001,7 @@ default-package-overrides:
- hweblib ==0.6.3
- hw-excess ==0.2.0.0
- hw-fingertree ==0.1.0.1
- - hw-fingertree-strict ==0.1.0.2
+ - hw-fingertree-strict ==0.1.0.3
- hw-hedgehog ==0.1.0.1
- hw-hspec-hedgehog ==0.1.0.2
- hw-int ==0.0.0.3
@@ -1014,7 +1014,7 @@ default-package-overrides:
- hw-rankselect-base ==0.2.0.2
- hw-string-parse ==0.0.0.4
- hw-succinct ==0.1.0.1
- - hw-xml ==0.1.0.1
+ - hw-xml ==0.1.0.3
- hxt ==9.3.1.16
- hxt-charproperties ==9.2.0.1
- hxt-css ==0.1.0.3
@@ -1111,7 +1111,7 @@ default-package-overrides:
- json-builder ==0.3
- json-rpc-generic ==0.2.1.3
- json-schema ==0.7.4.1
- - json-stream ==0.4.2.0
+ - json-stream ==0.4.2.2
- JuicyPixels ==3.2.9.5
- JuicyPixels-extra ==0.3.0
- JuicyPixels-scale-dct ==0.1.1.2
@@ -1234,7 +1234,7 @@ default-package-overrides:
- mandrill ==0.5.3.3
- mapquest-api ==0.3.1
- map-syntax ==0.2.0.2
- - markdown ==0.1.17
+ - markdown ==0.1.17.1
- markdown-unlit ==0.5.0
- markov-chain ==0.0.3.4
- markup ==4.0.4
@@ -1301,13 +1301,13 @@ default-package-overrides:
- moesocks ==1.0.0.44
- mole ==0.0.6
- monad-control ==1.0.2.3
- - monad-control-aligned ==0.0.1
+ - monad-control-aligned ==0.0.1.1
- monad-coroutine ==0.9.0.4
- monad-extras ==0.6.0
- monadic-arrays ==0.2.2
- monad-journal ==0.8.1
- monadloc ==0.7.1
- - monad-logger ==0.3.28.2
+ - monad-logger ==0.3.28.3
- monad-logger-json ==0.1.0.0
- monad-logger-prefix ==0.1.9
- monad-logger-syslog ==0.1.4.0
@@ -1374,17 +1374,17 @@ default-package-overrides:
- netlib-ffi ==0.0.1
- netpbm ==1.0.2
- nettle ==0.2.0
- - netwire ==5.0.2
+ - netwire ==5.0.3
- netwire-input ==0.0.7
- netwire-input-glfw ==0.0.8
- - network ==2.6.3.4
+ - network ==2.6.3.5
- network-anonymous-i2p ==0.10.0
- network-anonymous-tor ==0.11.0
- network-attoparsec ==0.12.2
- network-carbon ==1.0.11
- network-conduit-tls ==1.3.0
- network-house ==0.1.0.2
- - network-info ==0.2.0.9
+ - network-info ==0.2.0.10
- network-ip ==0.3.0.2
- network-multicast ==0.2.0
- Network-NineP ==0.4.2
@@ -1442,7 +1442,7 @@ default-package-overrides:
- openexr-write ==0.1.0.1
- OpenGL ==3.0.2.1
- OpenGLRaw ==3.2.7.0
- - openpgp-asciiarmor ==0.1
+ - openpgp-asciiarmor ==0.1.1
- opensource ==0.1.0.0
- openssl-streams ==1.2.1.3
- open-witness ==0.4.0.1
@@ -1501,7 +1501,7 @@ default-package-overrides:
- pem ==0.2.4
- perf ==0.3.1.1
- perfect-hash-generator ==0.2.0.6
- - persistable-record ==0.6.0.2
+ - persistable-record ==0.6.0.3
- persistable-types-HDBC-pg ==0.0.1.5
- persistent ==2.8.1
- persistent-mongoDB ==2.8.0
@@ -1555,7 +1555,7 @@ default-package-overrides:
- pomaps ==0.0.0.3
- pooled-io ==0.0.2.1
- PortMidi ==0.1.6.1
- - posix-paths ==0.2.1.3
+ - posix-paths ==0.2.1.4
- postgresql-binary ==0.12.1
- postgresql-libpq ==0.9.4.1
- postgresql-schema ==0.1.14
@@ -1564,7 +1564,7 @@ default-package-overrides:
- postgresql-simple-queue ==1.0.1
- postgresql-simple-url ==0.2.1.0
- postgresql-transactional ==1.1.1
- - postgresql-typed ==0.5.2
+ - postgresql-typed ==0.5.3.0
- post-mess-age ==0.2.1.0
- pptable ==0.2.0.0
- pqueue ==1.4.1.1
@@ -1613,7 +1613,7 @@ default-package-overrides:
- proto-lens-arbitrary ==0.1.1.1
- proto-lens-descriptors ==0.2.2.0
- proto-lens-optparse ==0.1.1.0
- - protolude ==0.2.1
+ - protolude ==0.2.2
- proxied ==0.3
- psql-helpers ==0.1.0.0
- PSQueue ==1.1
@@ -1658,7 +1658,7 @@ default-package-overrides:
- rank1dynamic ==0.4.0
- rank2classes ==1.0.2
- rank-product ==0.2.0.1
- - Rasterific ==0.7.2.3
+ - Rasterific ==0.7.3
- rasterific-svg ==0.3.3.1
- ratel ==1.0.3
- ratel-wai ==1.0.2
@@ -1682,7 +1682,7 @@ default-package-overrides:
- ref-fd ==0.4.0.1
- refined ==0.1.2.1
- reflection ==2.1.3
- - reform ==0.2.7.1
+ - reform ==0.2.7.2
- reform-blaze ==0.2.4.3
- reform-hamlet ==0.0.5.3
- reform-happstack ==0.2.5.2
@@ -1716,8 +1716,8 @@ default-package-overrides:
- resourcet ==1.2.0
- rest-core ==0.39
- rest-snap ==0.3.0.0
- - rest-stringmap ==0.2.0.6
- - rest-types ==1.14.1.1
+ - rest-stringmap ==0.2.0.7
+ - rest-types ==1.14.1.2
- result ==0.2.6.0
- rethinkdb-client-driver ==0.0.25
- retry ==0.7.6.2
@@ -1842,7 +1842,7 @@ default-package-overrides:
- skein ==1.0.9.4
- skeletons ==0.4.0
- skylighting ==0.6
- - slack-web ==0.2.0.3
+ - slack-web ==0.2.0.4
- slave-thread ==1.0.2
- slug ==0.1.7
- smallcheck ==1.1.3.1
@@ -1883,10 +1883,10 @@ default-package-overrides:
- Spock-lucid ==0.4.0.1
- Spock-worker ==0.3.1.0
- spreadsheet ==0.1.3.7
- - sqlite-simple ==0.4.14.0
+ - sqlite-simple ==0.4.15.0
- sql-words ==0.1.5.1
- squeal-postgresql ==0.1.1.4
- - srcloc ==0.5.1.1
+ - srcloc ==0.5.1.2
- stache ==1.2.1
- stack-type ==0.1.0.0
- starter ==0.2.1
@@ -1922,7 +1922,7 @@ default-package-overrides:
- streaming ==0.2.1.0
- streaming-bytestring ==0.1.5
- streaming-commons ==0.1.19
- - streamly ==0.1.1
+ - streamly ==0.1.2
- streamproc ==1.6.2
- streams ==3.3
- strict ==0.3.2
@@ -1950,7 +1950,7 @@ default-package-overrides:
- swagger2 ==2.2.1
- swish ==0.9.2.1
- syb ==0.7
- - syb-with-class ==0.6.1.8
+ - syb-with-class ==0.6.1.9
- symbol ==0.2.4
- symengine ==0.1.2.0
- sysinfo ==0.1.1
@@ -2068,7 +2068,7 @@ default-package-overrides:
- timespan ==0.3.0.0
- timezone-olson ==0.1.9
- timezone-series ==0.1.9
- - tinylog ==0.14.0
+ - tinylog ==0.14.1
- tinytemplate ==0.1.2.0
- titlecase ==1.0.1
- tldr ==0.3.0
@@ -2112,8 +2112,8 @@ default-package-overrides:
- type-level-integers ==0.0.1
- type-level-kv-list ==1.1.0
- type-level-numbers ==0.1.1.1
- - typelits-witnesses ==0.3.0.1
- - type-of-html ==1.3.3.0
+ - typelits-witnesses ==0.3.0.2
+ - type-of-html ==1.3.3.2
- type-operators ==0.1.0.4
- type-spec ==0.3.0.1
- typography-geometry ==1.0.0.1
@@ -2249,13 +2249,13 @@ default-package-overrides:
- web-routes-boomerang ==0.28.4.2
- web-routes-happstack ==0.23.11
- web-routes-hsp ==0.24.6.1
- - web-routes-th ==0.22.6.2
+ - web-routes-th ==0.22.6.3
- web-routes-wai ==0.24.3.1
- webrtc-vad ==0.1.0.3
- websockets ==0.12.4.0
- websockets-rpc ==0.6.0
- websockets-simple ==0.0.6.3
- - websockets-snap ==0.10.2.4
+ - websockets-snap ==0.10.2.5
- weigh ==0.0.7
- wide-word ==0.1.0.6
- wikicfp-scraper ==0.1.0.9
@@ -2304,7 +2304,7 @@ default-package-overrides:
- xenstore ==0.1.1
- xhtml ==3000.2.2
- xls ==0.1.1
- - xlsx ==0.7.1
+ - xlsx ==0.7.2
- xlsx-tabular ==0.2.2.1
- xml ==1.3.14
- xml-basic ==0.1.3
@@ -2328,7 +2328,7 @@ default-package-overrides:
- xturtle ==0.2.0.0
- xxhash ==0.0.2
- xxhash-ffi ==0.2.0.0
- - yaml ==0.8.28
+ - yaml ==0.8.29
- Yampa ==0.10.7
- YampaSynth ==0.2
- yeshql ==3.0.1.3
@@ -3043,6 +3043,7 @@ dont-distribute-packages:
aws-sdk-text-converter: [ i686-linux, x86_64-linux, x86_64-darwin ]
aws-sdk-xml-unordered: [ i686-linux, x86_64-linux, x86_64-darwin ]
aws-sdk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-ses-easy: [ i686-linux, x86_64-linux, x86_64-darwin ]
aws-sign4: [ i686-linux, x86_64-linux, x86_64-darwin ]
aws-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
aws-sns: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -3966,8 +3967,10 @@ dont-distribute-packages:
dfsbuild: [ i686-linux, x86_64-linux, x86_64-darwin ]
dgim: [ i686-linux, x86_64-linux, x86_64-darwin ]
dgs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dhall-bash: [ i686-linux, x86_64-linux, x86_64-darwin ]
dhall-check: [ i686-linux, x86_64-linux, x86_64-darwin ]
dhall-nix: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dhall-to-cabal: [ i686-linux, x86_64-linux, x86_64-darwin ]
dhcp-lease-parser: [ i686-linux, x86_64-linux, x86_64-darwin ]
diagrams-boolean: [ i686-linux, x86_64-linux, x86_64-darwin ]
diagrams-braille: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -4745,6 +4748,7 @@ dont-distribute-packages:
github-backup: [ i686-linux, x86_64-linux, x86_64-darwin ]
github-data: [ i686-linux, x86_64-linux, x86_64-darwin ]
github-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ githud: [ i686-linux, x86_64-linux, x86_64-darwin ]
gitignore: [ i686-linux, x86_64-linux, x86_64-darwin ]
gitit: [ i686-linux, x86_64-linux, x86_64-darwin ]
gitlib-cmdline: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -4916,6 +4920,7 @@ dont-distribute-packages:
google-html5-slide: [ i686-linux, x86_64-linux, x86_64-darwin ]
google-mail-filters: [ i686-linux, x86_64-linux, x86_64-darwin ]
google-maps-geocoding: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ google-oauth2-easy: [ i686-linux, x86_64-linux, x86_64-darwin ]
google-oauth2: [ i686-linux, x86_64-linux, x86_64-darwin ]
google-search: [ i686-linux, x86_64-linux, x86_64-darwin ]
google-server-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -5926,6 +5931,8 @@ dont-distribute-packages:
huttons-razor: [ i686-linux, x86_64-linux, x86_64-darwin ]
huzzy: [ i686-linux, x86_64-linux, x86_64-darwin ]
hVOIDP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hw-json-lens: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hw-json: [ i686-linux, x86_64-linux, x86_64-darwin ]
hw-kafka-avro: [ i686-linux, x86_64-linux, x86_64-darwin ]
hw-xml: [ i686-linux, x86_64-linux, x86_64-darwin ]
hwall-auth-iitk: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -6390,6 +6397,7 @@ dont-distribute-packages:
lens-prelude: [ i686-linux, x86_64-linux, x86_64-darwin ]
lens-text-encoding: [ i686-linux, x86_64-linux, x86_64-darwin ]
lens-time: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lens-toml-parser: [ i686-linux, x86_64-linux, x86_64-darwin ]
lens-tutorial: [ i686-linux, x86_64-linux, x86_64-darwin ]
lens-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
lenses: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -6561,6 +6569,7 @@ dont-distribute-packages:
lscabal: [ i686-linux, x86_64-linux, x86_64-darwin ]
LslPlus: [ i686-linux, x86_64-linux, x86_64-darwin ]
lsystem: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ltext: [ i686-linux, x86_64-linux, x86_64-darwin ]
ltk: [ i686-linux, x86_64-linux, x86_64-darwin ]
lua-bc: [ i686-linux, x86_64-linux, x86_64-darwin ]
luachunk: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -7497,9 +7506,11 @@ dont-distribute-packages:
potato-tool: [ i686-linux, x86_64-linux, x86_64-darwin ]
potoki-cereal: [ i686-linux, x86_64-linux, x86_64-darwin ]
potoki-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ potoki-hasql: [ i686-linux, x86_64-linux, x86_64-darwin ]
potoki: [ i686-linux, x86_64-linux, x86_64-darwin ]
potrace-diagrams: [ i686-linux, x86_64-linux, x86_64-darwin ]
powerpc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ powerqueue-distributed: [ i686-linux, x86_64-linux, x86_64-darwin ]
powerqueue-levelmem: [ i686-linux, x86_64-linux, x86_64-darwin ]
powerqueue-sqs: [ i686-linux, x86_64-linux, x86_64-darwin ]
PPrinter: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -7937,6 +7948,7 @@ dont-distribute-packages:
roguestar-engine: [ i686-linux, x86_64-linux, x86_64-darwin ]
roguestar-gl: [ i686-linux, x86_64-linux, x86_64-darwin ]
roguestar-glut: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ roku-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
roller: [ i686-linux, x86_64-linux, x86_64-darwin ]
RollingDirectory: [ i686-linux, x86_64-linux, x86_64-darwin ]
rope: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -8179,6 +8191,7 @@ dont-distribute-packages:
shady-graphics: [ i686-linux, x86_64-linux, x86_64-darwin ]
shake-ats: [ i686-linux, x86_64-linux, x86_64-darwin ]
shake-cabal-build: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ shake-ext: [ i686-linux, x86_64-linux, x86_64-darwin ]
shake-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
shake-minify: [ i686-linux, x86_64-linux, x86_64-darwin ]
shake-pack: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -8877,6 +8890,7 @@ dont-distribute-packages:
tracy: [ i686-linux, x86_64-linux, x86_64-darwin ]
traildb: [ i686-linux, x86_64-linux, x86_64-darwin ]
trajectory: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ transaction: [ i686-linux, x86_64-linux, x86_64-darwin ]
transactional-events: [ i686-linux, x86_64-linux, x86_64-darwin ]
transf: [ i686-linux, x86_64-linux, x86_64-darwin ]
transfer-db: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -9235,6 +9249,7 @@ dont-distribute-packages:
WeberLogic: [ i686-linux, x86_64-linux, x86_64-darwin ]
webfinger-client: [ i686-linux, x86_64-linux, x86_64-darwin ]
webkit-javascriptcore: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ webkit2gtk3-javascriptcore: [ i686-linux, x86_64-linux, x86_64-darwin ]
Webrexp: [ i686-linux, x86_64-linux, x86_64-darwin ]
webserver: [ i686-linux, x86_64-linux, x86_64-darwin ]
webwire: [ i686-linux, x86_64-linux, x86_64-darwin ]
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index 199b9c17654..6fb55d326b1 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -143,6 +143,7 @@ self: super: builtins.intersectAttrs super {
gtk3 = disableHardening (super.gtk3.override { inherit (pkgs) gtk3; }) ["fortify"];
gtk = disableHardening (addPkgconfigDepend (addBuildTool super.gtk self.gtk2hs-buildtools) pkgs.gtk2) ["fortify"];
gtksourceview2 = addPkgconfigDepend super.gtksourceview2 pkgs.gtk2;
+ gtk-traymanager = addPkgconfigDepend super.gtk-traymanager pkgs.gtk3;
# Need WebkitGTK, not just webkit.
webkit = super.webkit.override { webkit = pkgs.webkitgtk24x-gtk2; };
diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix
index 76c18cc486e..52d596da701 100644
--- a/pkgs/development/haskell-modules/generic-builder.nix
+++ b/pkgs/development/haskell-modules/generic-builder.nix
@@ -138,7 +138,7 @@ let
(optionalString useCpphs "--with-cpphs=${cpphs}/bin/cpphs --ghc-options=-cpp --ghc-options=-pgmP${cpphs}/bin/cpphs --ghc-options=-optP--cpp")
(enableFeature (enableDeadCodeElimination && !hostPlatform.isArm && !hostPlatform.isAarch64 && (versionAtLeast "8.0.1" ghc.version)) "split-objs")
(enableFeature enableLibraryProfiling "library-profiling")
- (optionalString (enableExecutableProfiling || enableLibraryProfiling) "--profiling-detail=${profilingDetail}")
+ (optionalString ((enableExecutableProfiling || enableLibraryProfiling) && versionOlder "8" ghc.version) "--profiling-detail=${profilingDetail}")
(enableFeature enableExecutableProfiling (if versionOlder ghc.version "8" then "executable-profiling" else "profiling"))
(enableFeature enableSharedLibraries "shared")
(optionalString (versionAtLeast ghc.version "7.10") (enableFeature doCoverage "coverage"))
diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix
index 57840713aba..ad52aac1626 100644
--- a/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/pkgs/development/haskell-modules/hackage-packages.nix
@@ -839,6 +839,35 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "AlgoRhythm" = callPackage
+ ({ mkDerivation, base, bytestring, containers, data-default, derive
+ , directory, Euterpea, HCodecs, HUnit, kmeans, lilypond, midi, mtl
+ , prettify, QuickCheck, random, template-haskell, test-framework
+ , test-framework-hunit, test-framework-quickcheck2, text
+ , transformers
+ }:
+ mkDerivation {
+ pname = "AlgoRhythm";
+ version = "0.1.0.0";
+ sha256 = "03rmcafbnbb43fww1y6rfi8dpbl85yi71rjxmz7mqxh4zn5c9jwz";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers data-default derive Euterpea HCodecs kmeans
+ lilypond midi mtl prettify QuickCheck random template-haskell text
+ transformers
+ ];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [
+ base bytestring derive directory Euterpea HCodecs HUnit lilypond
+ QuickCheck random test-framework test-framework-hunit
+ test-framework-quickcheck2 transformers
+ ];
+ homepage = "http://github.com/omelkonian/AlgoRhythm/";
+ description = "Algorithmic music composition";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"AlgorithmW" = callPackage
({ mkDerivation, base, containers, mtl, pretty }:
mkDerivation {
@@ -2497,7 +2526,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "Cabal_2_2_0_0" = callPackage
+ "Cabal_2_2_0_1" = callPackage
({ mkDerivation, array, base, base-compat, base-orphans, binary
, bytestring, containers, deepseq, Diff, directory, filepath
, integer-logarithms, mtl, optparse-applicative, parsec, pretty
@@ -2507,10 +2536,8 @@ self: {
}:
mkDerivation {
pname = "Cabal";
- version = "2.2.0.0";
- sha256 = "0bq4zgfvwlqjgsnph61pllvwhfmn8z224ycplqziyxc3zmwb3a96";
- revision = "1";
- editedCabalFile = "1fa2lvwj1b0yj06k8pb3smdhdyl94dxy9ac9jqmmj9cdv8msrb8x";
+ version = "2.2.0.1";
+ sha256 = "0yqa6fm9jvr0ka6b1mf17bf43092dc1bai6mqyiwwwyz0h9k1d82";
libraryHaskellDepends = [
array base binary bytestring containers deepseq directory filepath
mtl parsec pretty process text time transformers unix
@@ -5217,6 +5244,8 @@ self: {
pname = "FPretty";
version = "1.1";
sha256 = "0hpbm11z95wfh0i1dp2c35maksnz0zxpz9vbxq6f5c13x4i03b5q";
+ revision = "1";
+ editedCabalFile = "0d6mjr7b37f5bgjijjgx4x4fgfmkbhksphzkaf0p5jyzxp45fasc";
libraryHaskellDepends = [ base containers ];
homepage = "http://www.cs.kent.ac.uk/~oc/pretty.html";
description = "Efficient simple pretty printing combinators";
@@ -6203,8 +6232,8 @@ self: {
}:
mkDerivation {
pname = "GLUtil";
- version = "0.10.0";
- sha256 = "0n1yfcjl2akg53zjxlqm37k1ypbfd4p60kbc0wv1v4mq1yasf5m0";
+ version = "0.10.1";
+ sha256 = "08qsa22xhw4cdhdzc8ixlwjazi9s0n48395g4vf5qwfap9r8rdq3";
libraryHaskellDepends = [
array base bytestring containers directory filepath hpp JuicyPixels
linear OpenGL OpenGLRaw transformers vector
@@ -8713,6 +8742,40 @@ self: {
license = "LGPL";
}) {};
+ "HTF_0_13_2_4" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, array, base
+ , base64-bytestring, bytestring, containers, cpphs, Diff, directory
+ , filepath, haskell-src, HUnit, lifted-base, monad-control, mtl
+ , old-time, pretty, process, QuickCheck, random, regex-compat
+ , template-haskell, temporary, text, time, unix
+ , unordered-containers, vector, xmlgen
+ }:
+ mkDerivation {
+ pname = "HTF";
+ version = "0.13.2.4";
+ sha256 = "1xibrzs465hg9snwvl6gp6hll6g6c7m8s2ckk8vkfg386pywmi9n";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson array base base64-bytestring bytestring containers cpphs Diff
+ directory haskell-src HUnit lifted-base monad-control mtl old-time
+ pretty process QuickCheck random regex-compat text time unix vector
+ xmlgen
+ ];
+ executableHaskellDepends = [
+ array base cpphs directory HUnit mtl old-time random text
+ ];
+ testHaskellDepends = [
+ aeson aeson-pretty base bytestring directory filepath HUnit mtl
+ process random regex-compat template-haskell temporary text
+ unordered-containers
+ ];
+ homepage = "https://github.com/skogsbaer/HTF/";
+ description = "The Haskell Test Framework";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"HTTP" = callPackage
({ mkDerivation, array, base, bytestring, case-insensitive, conduit
, conduit-extra, deepseq, http-types, httpd-shed, HUnit, mtl
@@ -10923,8 +10986,8 @@ self: {
pname = "JuicyPixels-scale-dct";
version = "0.1.1.2";
sha256 = "15py0slh1jij8wrd68q0fqs9yarnabr470xm04i92904a809vgcs";
- revision = "2";
- editedCabalFile = "04g0yga3v0922aysqv2m2h7vxbaaxfdb7lafsakpzlp0w659f930";
+ revision = "3";
+ editedCabalFile = "0z1ks049q9jsc5ysh12idkqf3rz0bnvv74rhlaw24r5q2xj8lv8i";
libraryHaskellDepends = [
base base-compat carray fft JuicyPixels
];
@@ -13618,6 +13681,30 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "ONC-RPC" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, cereal, containers
+ , filepath, haskell-src-exts, network, parsec, random, time, unix
+ , vector
+ }:
+ mkDerivation {
+ pname = "ONC-RPC";
+ version = "0.1";
+ sha256 = "19smd0rp0jx9i59jgjk149g4czpwjx173szhp1z9dvm5j0pdwyy5";
+ isLibrary = true;
+ isExecutable = true;
+ setupHaskellDepends = [
+ base bytestring Cabal cereal containers filepath haskell-src-exts
+ parsec vector
+ ];
+ libraryHaskellDepends = [
+ base bytestring Cabal cereal containers filepath haskell-src-exts
+ network parsec random time unix vector
+ ];
+ executableHaskellDepends = [ base filepath ];
+ description = "ONC RPC (aka Sun RPC) and XDR library";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"OSM" = callPackage
({ mkDerivation, base, comonad-transformers, containers, data-lens
, hxt, newtype
@@ -13724,13 +13811,14 @@ self: {
}) {};
"OddWord" = callPackage
- ({ mkDerivation, base, QuickCheck }:
+ ({ mkDerivation, base, criterion, QuickCheck }:
mkDerivation {
pname = "OddWord";
- version = "1.0.1.0";
- sha256 = "0aa3pp2ivbddn3632cnkxd3bj8373ns1nf4v2jvz7zcijiz4chx1";
+ version = "1.0.1.1";
+ sha256 = "0sb0hmvvp6cdxf8siqfp7wvcxq8rbiz7h9mxmbkcksscjp8m02mm";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base QuickCheck ];
+ benchmarkHaskellDepends = [ base criterion ];
homepage = "http://www.gekkou.co.uk/";
description = "Provides a wrapper for deriving word types with fewer bits";
license = stdenv.lib.licenses.bsd3;
@@ -13793,6 +13881,8 @@ self: {
pname = "OneTuple";
version = "0.2.1";
sha256 = "1x52b68zh3k9lnps5s87kzan7dzvqp6mrwgayjq15w9dv6v78vsb";
+ revision = "1";
+ editedCabalFile = "1kb7f21n9vwwrk4kipqdwdqs94k34zai6yy0kgdn22zi442yicjh";
libraryHaskellDepends = [ base ];
description = "Singleton Tuple";
license = stdenv.lib.licenses.bsd3;
@@ -14237,6 +14327,8 @@ self: {
pname = "PSQueue";
version = "1.1";
sha256 = "1k291bh8j5vpcrn6vycww2blwg7jxx9yrfmrqdanz48gs4d8gq58";
+ revision = "1";
+ editedCabalFile = "0gpx33bkhpwya7prnqzwpbnylm4v4nm4x8m02ggmj7d6rkklb2qq";
libraryHaskellDepends = [ base ];
description = "Priority Search Queue";
license = stdenv.lib.licenses.bsd3;
@@ -15710,23 +15802,6 @@ self: {
}) {};
"Rasterific" = callPackage
- ({ mkDerivation, base, bytestring, containers, dlist, FontyFruity
- , free, JuicyPixels, mtl, primitive, transformers, vector
- , vector-algorithms
- }:
- mkDerivation {
- pname = "Rasterific";
- version = "0.7.2.3";
- sha256 = "1imsk1dv5dksicnhmnzz5ldq84plbcg4qlwccsqvb6jg9j5vf6v6";
- libraryHaskellDepends = [
- base bytestring containers dlist FontyFruity free JuicyPixels mtl
- primitive transformers vector vector-algorithms
- ];
- description = "A pure haskell drawing engine";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "Rasterific_0_7_3" = callPackage
({ mkDerivation, base, bytestring, containers, dlist, FontyFruity
, free, JuicyPixels, mtl, primitive, transformers, vector
, vector-algorithms
@@ -15741,7 +15816,6 @@ self: {
];
description = "A pure haskell drawing engine";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ReadArgs" = callPackage
@@ -19832,17 +19906,18 @@ self: {
}) {};
"YamlReference" = callPackage
- ({ mkDerivation, base, bytestring, containers, directory, dlist
- , hashmap, HUnit, mtl, regex-compat
+ ({ mkDerivation, base, bytestring, Cabal, containers, directory
+ , dlist, hashmap, HUnit, mtl, regex-compat
}:
mkDerivation {
pname = "YamlReference";
version = "0.10.0";
sha256 = "01cjddbg98vs1bd66n0v58i415kqn7cfi6cslk384p7j2ivwv2ad";
- revision = "1";
- editedCabalFile = "1pcrd8ww4fm9big1bcafkmsl9kifixkyny9b3z172w8yhamk2wwq";
+ revision = "2";
+ editedCabalFile = "023997365188qvgrfg8wshmmlrjr7z435329pxcsvmfcywnc739a";
isLibrary = true;
isExecutable = true;
+ setupHaskellDepends = [ base Cabal ];
libraryHaskellDepends = [
base bytestring containers dlist regex-compat
];
@@ -19873,6 +19948,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "Yampa_0_11" = callPackage
+ ({ mkDerivation, base, deepseq, random }:
+ mkDerivation {
+ pname = "Yampa";
+ version = "0.11";
+ sha256 = "0frybgsj73r57rd6ckv9pgd9ff1g72qrlad90plb13cf2s6jdp3f";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base deepseq random ];
+ testHaskellDepends = [ base ];
+ homepage = "http://www.haskell.org/haskellwiki/Yampa";
+ description = "Library for programming hybrid systems";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"Yampa-core" = callPackage
({ mkDerivation, base, deepseq, random, vector-space }:
mkDerivation {
@@ -20311,6 +20402,34 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "accelerate_1_2_0_0" = callPackage
+ ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, base-orphans
+ , bytestring, Cabal, cabal-doctest, constraints, containers
+ , cryptonite, deepseq, directory, doctest, exceptions, filepath
+ , ghc-prim, half, hashable, hashtables, hedgehog, lens, mtl, tasty
+ , tasty-expected-failure, tasty-hedgehog, tasty-hunit
+ , template-haskell, terminal-size, transformers, unique, unix
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "accelerate";
+ version = "1.2.0.0";
+ sha256 = "0y8wx09smrcxkyyklrf4lrilqasbmaw1w1ga9y110bqgywkw4pmj";
+ setupHaskellDepends = [ base Cabal cabal-doctest ];
+ libraryHaskellDepends = [
+ ansi-terminal ansi-wl-pprint base base-orphans bytestring
+ constraints containers cryptonite deepseq directory exceptions
+ filepath ghc-prim half hashable hashtables hedgehog lens mtl tasty
+ tasty-expected-failure tasty-hedgehog tasty-hunit template-haskell
+ terminal-size transformers unique unix unordered-containers vector
+ ];
+ testHaskellDepends = [ base doctest ];
+ homepage = "https://github.com/AccelerateHS/accelerate/";
+ description = "An embedded language for accelerated array processing";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"accelerate-arithmetic" = callPackage
({ mkDerivation, accelerate, accelerate-utility, base, QuickCheck
, utility-ht
@@ -20360,6 +20479,35 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "accelerate-bignum_0_2_0_0" = callPackage
+ ({ mkDerivation, accelerate, accelerate-io, accelerate-llvm
+ , accelerate-llvm-native, accelerate-llvm-ptx, base, criterion
+ , ghc-prim, hedgehog, llvm-hs-pure, mwc-random, tasty
+ , tasty-hedgehog, template-haskell, vector, vector-th-unbox
+ , wide-word
+ }:
+ mkDerivation {
+ pname = "accelerate-bignum";
+ version = "0.2.0.0";
+ sha256 = "0xhnd39fb17kb7q5z9z8svn8zlv6j1wxrbkv3vij4f1q2hkqkl0p";
+ libraryHaskellDepends = [
+ accelerate accelerate-llvm accelerate-llvm-native
+ accelerate-llvm-ptx base ghc-prim llvm-hs-pure template-haskell
+ ];
+ testHaskellDepends = [
+ accelerate accelerate-llvm-native accelerate-llvm-ptx base hedgehog
+ tasty tasty-hedgehog
+ ];
+ benchmarkHaskellDepends = [
+ accelerate accelerate-io accelerate-llvm-native accelerate-llvm-ptx
+ base criterion mwc-random vector vector-th-unbox wide-word
+ ];
+ homepage = "https://github.com/tmcdonell/accelerate-bignum";
+ description = "Fixed-length large integer arithmetic for Accelerate";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"accelerate-blas" = callPackage
({ mkDerivation, accelerate, accelerate-llvm
, accelerate-llvm-native, accelerate-llvm-ptx, base, blas-hs
@@ -20390,6 +20538,35 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "accelerate-blas_0_2_0_0" = callPackage
+ ({ mkDerivation, accelerate, accelerate-llvm
+ , accelerate-llvm-native, accelerate-llvm-ptx, base, blas-hs
+ , bytestring, containers, criterion, cublas, cuda, deepseq
+ , file-embed, hedgehog, hmatrix, llvm-hs-pure, mtl, mwc-random
+ , mwc-random-accelerate, tasty, tasty-hedgehog
+ }:
+ mkDerivation {
+ pname = "accelerate-blas";
+ version = "0.2.0.0";
+ sha256 = "0y77wsdw0i7b5bzlfrrn9q4d8q95r8z71g8qy77n24db1pwmjqy9";
+ libraryHaskellDepends = [
+ accelerate accelerate-llvm accelerate-llvm-native
+ accelerate-llvm-ptx base blas-hs bytestring containers cublas cuda
+ file-embed llvm-hs-pure mtl
+ ];
+ testHaskellDepends = [
+ accelerate accelerate-llvm-native accelerate-llvm-ptx base hedgehog
+ tasty tasty-hedgehog
+ ];
+ benchmarkHaskellDepends = [
+ accelerate accelerate-llvm-native accelerate-llvm-ptx base
+ criterion deepseq hmatrix mwc-random mwc-random-accelerate
+ ];
+ description = "Numeric Linear Algebra in Accelerate";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"accelerate-cublas" = callPackage
({ mkDerivation, accelerate, accelerate-arithmetic, accelerate-cuda
, accelerate-io, accelerate-utility, base, cublas, cuda, hmatrix
@@ -20467,22 +20644,20 @@ self: {
"accelerate-examples" = callPackage
({ mkDerivation, accelerate, accelerate-fft, accelerate-io
- , accelerate-llvm-native, accelerate-llvm-ptx, ansi-wl-pprint
- , array, base, binary, bmp, bytestring, bytestring-lexing, cereal
+ , accelerate-llvm-native, accelerate-llvm-ptx, ansi-wl-pprint, base
+ , binary, bmp, bytestring, bytestring-lexing, cereal
, colour-accelerate, containers, criterion, directory, fclabels
, filepath, gloss, gloss-accelerate, gloss-raster-accelerate
, gloss-rendering, HUnit, lens-accelerate, linear
, linear-accelerate, matrix-market-attoparsec, mwc-random
- , normaldistribution, pipes, QuickCheck, random, repa, repa-io
- , scientific, test-framework, test-framework-hunit
- , test-framework-quickcheck2, vector, vector-algorithms
+ , normaldistribution, QuickCheck, random, repa, repa-io, scientific
+ , test-framework, test-framework-hunit, test-framework-quickcheck2
+ , vector, vector-algorithms
}:
mkDerivation {
pname = "accelerate-examples";
- version = "1.1.0.0";
- sha256 = "0zpjmk6v314jfda7fy22xghfqlqfh8vyf938qwyp6xjf1mpq1r1x";
- revision = "3";
- editedCabalFile = "1ir5i8skpyzpvwa17yw02j9rn9c5qjjincwrnjdwaixcdc7lsy4b";
+ version = "1.2.0.0";
+ sha256 = "1gb4m1ri461f78x913ipxh14ybwl9wzbv81w8943whiwrmb3p5pc";
configureFlags = [ "-f-opencl" ];
isLibrary = true;
isExecutable = true;
@@ -20493,14 +20668,13 @@ self: {
test-framework-quickcheck2
];
executableHaskellDepends = [
- accelerate accelerate-fft accelerate-io array base binary bmp
- bytestring bytestring-lexing cereal colour-accelerate containers
- criterion directory fclabels filepath gloss gloss-accelerate
- gloss-raster-accelerate gloss-rendering HUnit lens-accelerate
+ accelerate accelerate-fft accelerate-io base binary bmp bytestring
+ bytestring-lexing cereal colour-accelerate containers criterion
+ directory fclabels filepath gloss gloss-accelerate
+ gloss-raster-accelerate gloss-rendering lens-accelerate
linear-accelerate matrix-market-attoparsec mwc-random
- normaldistribution pipes QuickCheck random repa repa-io scientific
- test-framework test-framework-hunit test-framework-quickcheck2
- vector vector-algorithms
+ normaldistribution random repa repa-io scientific vector
+ vector-algorithms
];
homepage = "https://github.com/AccelerateHS/accelerate-examples";
description = "Examples using the Accelerate library";
@@ -20528,6 +20702,32 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "accelerate-fft_1_2_0_0" = callPackage
+ ({ mkDerivation, accelerate, accelerate-llvm
+ , accelerate-llvm-native, accelerate-llvm-ptx, base, bytestring
+ , carray, containers, cuda, cufft, fft, file-embed, hashable
+ , hedgehog, lens-accelerate, mtl, tasty, tasty-hedgehog
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "accelerate-fft";
+ version = "1.2.0.0";
+ sha256 = "19p9d59vdd3nq97xjprlb6fz2ajlk6gl37cdyvrm9inag4nnk6lp";
+ libraryHaskellDepends = [
+ accelerate accelerate-llvm accelerate-llvm-native
+ accelerate-llvm-ptx base bytestring carray containers cuda cufft
+ fft file-embed hashable lens-accelerate mtl unordered-containers
+ ];
+ testHaskellDepends = [
+ accelerate accelerate-llvm-native accelerate-llvm-ptx base hedgehog
+ tasty tasty-hedgehog
+ ];
+ homepage = "https://github.com/AccelerateHS/accelerate-fft";
+ description = "FFT using the Accelerate library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"accelerate-fftw" = callPackage
({ mkDerivation, accelerate, accelerate-io, base, carray, fft
, storable-complex
@@ -20608,6 +20808,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "accelerate-io_1_2_0_0" = callPackage
+ ({ mkDerivation, accelerate, array, base, bmp, bytestring, hedgehog
+ , primitive, repa, tasty, tasty-hedgehog, vector
+ }:
+ mkDerivation {
+ pname = "accelerate-io";
+ version = "1.2.0.0";
+ sha256 = "13pqqsd5pbxmgsxnp9w141mnwscnlmbhxaz6f5jx4ssipnma2pwf";
+ libraryHaskellDepends = [
+ accelerate array base bmp bytestring primitive repa vector
+ ];
+ testHaskellDepends = [
+ accelerate array base hedgehog tasty tasty-hedgehog vector
+ ];
+ homepage = "https://github.com/AccelerateHS/accelerate-io";
+ description = "Read and write Accelerate arrays in various formats";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"accelerate-llvm" = callPackage
({ mkDerivation, abstract-deque, accelerate, base, bytestring
, chaselev-deque, containers, data-default-class, deepseq
@@ -20631,6 +20851,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "accelerate-llvm_1_2_0_0" = callPackage
+ ({ mkDerivation, abstract-deque, accelerate, base, bytestring
+ , chaselev-deque, containers, data-default-class, deepseq
+ , directory, dlist, exceptions, filepath, llvm-hs, llvm-hs-pure
+ , mtl, mwc-random, primitive, template-haskell
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "accelerate-llvm";
+ version = "1.2.0.0";
+ sha256 = "110zfxqi0lkhg7pk42qvd87qn442r6z264zj7q46jf8ia60l2cdq";
+ libraryHaskellDepends = [
+ abstract-deque accelerate base bytestring chaselev-deque containers
+ data-default-class deepseq directory dlist exceptions filepath
+ llvm-hs llvm-hs-pure mtl mwc-random primitive template-haskell
+ unordered-containers vector
+ ];
+ description = "Accelerate backend component generating LLVM IR";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"accelerate-llvm-native" = callPackage
({ mkDerivation, accelerate, accelerate-llvm, base, bytestring
, c2hs, Cabal, cereal, containers, directory, dlist, fclabels
@@ -20653,6 +20895,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "accelerate-llvm-native_1_2_0_0" = callPackage
+ ({ mkDerivation, accelerate, accelerate-llvm, base, bytestring
+ , c2hs, Cabal, cereal, containers, directory, dlist, filepath, ghc
+ , ghc-prim, hashable, libffi, llvm-hs, llvm-hs-pure, mtl
+ , template-haskell, time, unique, unix, vector
+ }:
+ mkDerivation {
+ pname = "accelerate-llvm-native";
+ version = "1.2.0.0";
+ sha256 = "089j8ic6ns6656a55byiilrj9jvs535jvx4f2m8x1qhgz9q968vb";
+ libraryHaskellDepends = [
+ accelerate accelerate-llvm base bytestring Cabal cereal containers
+ directory dlist filepath ghc ghc-prim hashable libffi llvm-hs
+ llvm-hs-pure mtl template-haskell time unique unix vector
+ ];
+ libraryToolDepends = [ c2hs ];
+ testHaskellDepends = [ accelerate base ];
+ description = "Accelerate backend for multicore CPUs";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"accelerate-llvm-ptx" = callPackage
({ mkDerivation, accelerate, accelerate-llvm, base, bytestring
, containers, cuda, deepseq, directory, dlist, fclabels, file-embed
@@ -20674,6 +20938,27 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "accelerate-llvm-ptx_1_2_0_0" = callPackage
+ ({ mkDerivation, accelerate, accelerate-llvm, base, bytestring
+ , containers, cuda, deepseq, directory, dlist, file-embed, filepath
+ , hashable, llvm-hs, llvm-hs-pure, mtl, nvvm, pretty, process
+ , template-haskell, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "accelerate-llvm-ptx";
+ version = "1.2.0.0";
+ sha256 = "1rh0kq10mwn4zd8f5sp19pah2hmmcansaqqssz79183znzfiviz5";
+ libraryHaskellDepends = [
+ accelerate accelerate-llvm base bytestring containers cuda deepseq
+ directory dlist file-embed filepath hashable llvm-hs llvm-hs-pure
+ mtl nvvm pretty process template-haskell time unordered-containers
+ ];
+ testHaskellDepends = [ accelerate base ];
+ description = "Accelerate backend for NVIDIA GPUs";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"accelerate-random" = callPackage
({ mkDerivation, accelerate, base, mwc-random }:
mkDerivation {
@@ -21872,7 +22157,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "aeson_1_3_0_0" = callPackage
+ "aeson_1_3_1_0" = callPackage
({ mkDerivation, attoparsec, base, base-compat, base-orphans
, base16-bytestring, bytestring, containers, deepseq, directory
, dlist, filepath, generic-deriving, ghc-prim, hashable
@@ -21884,8 +22169,8 @@ self: {
}:
mkDerivation {
pname = "aeson";
- version = "1.3.0.0";
- sha256 = "1glrwccp5hi9zn8d34761zinvpmbd4dsbgzqg2qxk6glp928phna";
+ version = "1.3.1.0";
+ sha256 = "0ljndkgibz3qbddz2451v1r9w8i440kpslg3al3m7gc82mxz2xrr";
libraryHaskellDepends = [
attoparsec base base-compat bytestring containers deepseq dlist
ghc-prim hashable scientific tagged template-haskell text
@@ -22053,6 +22338,25 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "aeson-diff-generic" = callPackage
+ ({ mkDerivation, aeson, aeson-diff, base, base-compat, bytestring
+ , containers, dlist, hashable, scientific, tagged, template-haskell
+ , text, th-abstraction, time, unordered-containers, uuid-types
+ , vector
+ }:
+ mkDerivation {
+ pname = "aeson-diff-generic";
+ version = "0.0.2";
+ sha256 = "0dm2rzww9rc6l3ql42px96fpsfjvw9g0w13j0y02dq33qb0w7a1v";
+ libraryHaskellDepends = [
+ aeson aeson-diff base base-compat bytestring containers dlist
+ hashable scientific tagged template-haskell text th-abstraction
+ time unordered-containers uuid-types vector
+ ];
+ description = "Apply a json-patch to any haskell datatype";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"aeson-extra" = callPackage
({ mkDerivation, aeson, aeson-compat, attoparsec
, attoparsec-iso8601, base, base-compat, bytestring, containers
@@ -22565,8 +22869,8 @@ self: {
pname = "aeson-utils";
version = "0.3.0.2";
sha256 = "07sbvmm158yqmw4hri9l66ag4r6l59x230gbjm9r97w4x0dlp0bi";
- revision = "5";
- editedCabalFile = "0v6p99nb8s61lc07a93xv94lfb4ybmv8aiqjq77lncs6qgpp97xf";
+ revision = "6";
+ editedCabalFile = "06jpkp95sicqv9kjasgwwd89kfrnz37402ppvgg5567sbg1wm9zh";
libraryHaskellDepends = [
aeson attoparsec base bytestring scientific text
];
@@ -22984,14 +23288,15 @@ self: {
"aivika" = callPackage
({ mkDerivation, array, base, binary, containers, deepseq, mtl
- , mwc-random, random, vector
+ , mwc-random, random, semigroups, vector
}:
mkDerivation {
pname = "aivika";
- version = "5.5";
- sha256 = "0phzdgdxcdzdvgllp7c3b8bffdr8xhpid0yify7yrpnxc4y4rw5s";
+ version = "5.6";
+ sha256 = "0gri5kwzw2a9fjcr7924kdaxgs9zl4j8brgknwyxrky0p93a8zry";
libraryHaskellDepends = [
- array base binary containers deepseq mtl mwc-random random vector
+ array base binary containers deepseq mtl mwc-random random
+ semigroups vector
];
homepage = "http://www.aivikasoft.com";
description = "A multi-method simulation library";
@@ -23155,14 +23460,15 @@ self: {
"aivika-transformers" = callPackage
({ mkDerivation, aivika, array, base, containers, mtl, mwc-random
- , random, vector
+ , random, semigroups, vector
}:
mkDerivation {
pname = "aivika-transformers";
- version = "5.5";
- sha256 = "09q221ayhfx5h51cc0h8lsx4b1cnzk3bssr5bf28xixaf3j4faj5";
+ version = "5.6";
+ sha256 = "0vy3d4vldifiwc12j6746axhb1k3ir703wzgycvk4xn60qhjp4g9";
libraryHaskellDepends = [
- aivika array base containers mtl mwc-random random vector
+ aivika array base containers mtl mwc-random random semigroups
+ vector
];
homepage = "http://www.aivikasoft.com";
description = "Transformers for the Aivika simulation library";
@@ -23278,17 +23584,15 @@ self: {
"alex" = callPackage
({ mkDerivation, array, base, containers, directory, happy, process
- , QuickCheck
}:
mkDerivation {
pname = "alex";
- version = "3.2.3";
- sha256 = "0bi1cs9b8ir33h1fl6x2xw4ymygapqbr713ridpf7rmk2wa7jqqs";
+ version = "3.2.4";
+ sha256 = "0cpjixgsr0b2x4s6hz4aa6gnmjw9i7xd9nlfi8m37zqlidq4v3nm";
isLibrary = false;
isExecutable = true;
- executableHaskellDepends = [
- array base containers directory QuickCheck
- ];
+ enableSeparateDataOutput = true;
+ executableHaskellDepends = [ array base containers directory ];
executableToolDepends = [ happy ];
testHaskellDepends = [ base process ];
homepage = "http://www.haskell.org/alex/";
@@ -23500,6 +23804,29 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "algebraic-graphs_0_1_1" = callPackage
+ ({ mkDerivation, array, base, base-compat, base-orphans, containers
+ , criterion, deepseq, extra, QuickCheck
+ }:
+ mkDerivation {
+ pname = "algebraic-graphs";
+ version = "0.1.1";
+ sha256 = "085yb222gh5chlpa4xylvf1wfnsdhrm1fha4jvj5bsjlx9kyr4ah";
+ libraryHaskellDepends = [
+ array base base-compat containers deepseq
+ ];
+ testHaskellDepends = [
+ base base-compat base-orphans containers extra QuickCheck
+ ];
+ benchmarkHaskellDepends = [
+ base base-compat containers criterion
+ ];
+ homepage = "https://github.com/snowleopard/alga";
+ description = "A library for algebraic graph construction and transformation";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"algebraic-prelude" = callPackage
({ mkDerivation, algebra, base, basic-prelude, lens, semigroups }:
mkDerivation {
@@ -23951,6 +24278,31 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "alto" = callPackage
+ ({ mkDerivation, aeson, base, base64-bytestring, bytestring
+ , containers, cryptohash-sha256, directory, exceptions, filepath
+ , lens, list-tries, MonadRandom, mtl, random, random-string, scrypt
+ , servant-server, text, warp
+ }:
+ mkDerivation {
+ pname = "alto";
+ version = "0";
+ sha256 = "0515cghmkrw5szbnafwp3mqglrg5c44cbly8jnvk9z9gf9kdr26k";
+ revision = "1";
+ editedCabalFile = "0vxcy55zx70ibws59d1n5p86awrhb83xb06yw6iz0hkp7cwk52i2";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base base64-bytestring bytestring containers
+ cryptohash-sha256 directory exceptions filepath lens list-tries
+ MonadRandom mtl random random-string scrypt servant-server text
+ ];
+ executableHaskellDepends = [ base warp ];
+ homepage = "https://oss.xkcd.com/";
+ description = "Implement a menu experience fit for web users";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"alure" = callPackage
({ mkDerivation, alure, base, OpenAL }:
mkDerivation {
@@ -28010,24 +28362,23 @@ self: {
"arbtt" = callPackage
({ mkDerivation, aeson, array, attoparsec, base, binary, bytestring
- , bytestring-progress, conduit, conduit-extra, containers, deepseq
- , directory, exceptions, filepath, mtl, parsec, pcre-light
- , process-extras, strict, tasty, tasty-golden, tasty-hunit
- , terminal-progress-bar, time, transformers, unix, utf8-string, X11
+ , bytestring-progress, conduit, containers, deepseq, directory
+ , exceptions, filepath, mtl, parsec, pcre-light, process-extras
+ , resourcet, strict, tasty, tasty-golden, tasty-hunit
+ , terminal-progress-bar, text, time, transformers, unix
+ , unliftio-core, utf8-string, X11
}:
mkDerivation {
pname = "arbtt";
- version = "0.10";
- sha256 = "0klxsxyq4yij11c9z11jgrarmz1fya2rpx0zax7kqpvc26xbc24n";
- revision = "1";
- editedCabalFile = "13a0qvaqlaw6pcg4dizvs6p2g2kjabgznkl6789dw21nry2xqynb";
+ version = "0.10.0.1";
+ sha256 = "0pav5q0xh90vjrj77l7vk38l38xyhqas4750il5wkpqf4f5li877";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
aeson array attoparsec base binary bytestring bytestring-progress
- conduit conduit-extra containers deepseq directory exceptions
- filepath mtl parsec pcre-light strict terminal-progress-bar time
- transformers unix utf8-string X11
+ conduit containers deepseq directory exceptions filepath mtl parsec
+ pcre-light resourcet strict terminal-progress-bar text time
+ transformers unix unliftio-core utf8-string X11
];
testHaskellDepends = [
base binary bytestring containers deepseq directory mtl parsec
@@ -28036,7 +28387,7 @@ self: {
];
homepage = "http://arbtt.nomeata.de/";
description = "Automatic Rule-Based Time Tracker";
- license = "GPL";
+ license = stdenv.lib.licenses.gpl2;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -28266,8 +28617,8 @@ self: {
}:
mkDerivation {
pname = "argon2";
- version = "1.3.0.0";
- sha256 = "0sszifmi74b2n19d4f5f30pfnivqm6n1jdwf2j402schkd1wz7cp";
+ version = "1.3.0.1";
+ sha256 = "1v0clf78hykdyhv81z8v3kwp86hjgqh6b8a7wfbjv0fyy55bwxry";
libraryHaskellDepends = [ base bytestring deepseq text-short ];
testHaskellDepends = [
base bytestring QuickCheck tasty tasty-hunit tasty-quickcheck
@@ -28724,8 +29075,8 @@ self: {
({ mkDerivation, base, Stream }:
mkDerivation {
pname = "arrows";
- version = "0.4.4.1";
- sha256 = "1qpbpwsc3frjdngwjv3r58nfa0ik88cqh24ls47svigsz3c4n42v";
+ version = "0.4.4.2";
+ sha256 = "02db4byzz8xb4c36y0v867g9kd3a9p04r4cj1np717k20qrwjnpn";
libraryHaskellDepends = [ base Stream ];
homepage = "http://www.haskell.org/arrows/";
description = "Arrow classes and transformers";
@@ -29186,8 +29537,8 @@ self: {
pname = "ast-monad";
version = "0.1.0.0";
sha256 = "038cvblhhlcsv9id2rcb26q4lwvals3xj45j9jy6fb69jm5mzh0i";
- revision = "2";
- editedCabalFile = "1l5adjj7bianjclqzgvi4qhlb6lvb7v67qfqx2ghk3arq8ifghwj";
+ revision = "3";
+ editedCabalFile = "0lj9g3vhlx42hsirxcwfjksy5w6981gpyms7r5xpih7bnz91cxk7";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base ];
homepage = "https://github.com/mouri111/ast-monad#readme";
@@ -29201,8 +29552,8 @@ self: {
pname = "ast-monad-json";
version = "0.1.0.1";
sha256 = "0a0pzcma574rrx6klfgk16y6ng22glwj1l5c3rz5w32a22ildfz6";
- revision = "1";
- editedCabalFile = "05gavjyjxfmw8q8l4dvx2p5vxaszg4kbivknn3pg5495bgd8br9s";
+ revision = "2";
+ editedCabalFile = "0cbayikyr96vcn10253gkwgk0mvx6inymrldv0bhzp8qiv94sm3n";
libraryHaskellDepends = [ ast-monad base text ];
testHaskellDepends = [ ast-monad base hspec text ];
homepage = "https://github.com/mouri111/ast-monad-json#readme";
@@ -29986,11 +30337,10 @@ self: {
}:
mkDerivation {
pname = "ats-format";
- version = "0.2.0.22";
- sha256 = "19x2pa6fb1k343b4c07xwyc879kfwya1kll0bp59paza1bqhhnnk";
+ version = "0.2.0.25";
+ sha256 = "0p5pg2ix0ppan0cz4b0pk16ihfcnvqwb8g93k4bh7d304ca5xdk4";
isLibrary = false;
isExecutable = true;
- enableSeparateDataOutput = true;
setupHaskellDepends = [ base Cabal cli-setup ];
executableHaskellDepends = [
ansi-wl-pprint base directory file-embed htoml-megaparsec
@@ -30011,8 +30361,8 @@ self: {
}:
mkDerivation {
pname = "ats-pkg";
- version = "2.8.0.0";
- sha256 = "0wkfx3nk2v1wzmg3d6ghq0zkj85f6vr74vvvhc6mvwd5x0nya645";
+ version = "2.9.0.2";
+ sha256 = "02j6118i48mrw41c2pj8yc5xkvyw97fw0g1hpvplmy40djjd0qah";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal cli-setup ];
@@ -30296,6 +30646,8 @@ self: {
pname = "attoparsec-iso8601";
version = "1.0.0.0";
sha256 = "12l55b76bhya9q89mfmqmy6sl5v39b6gzrw5rf3f70vkb23nsv5a";
+ revision = "1";
+ editedCabalFile = "06f7pgmmc8456p3hc1y23kz1y127gfczy7s00wz1rls9g2sm2vi4";
libraryHaskellDepends = [ attoparsec base base-compat text time ];
homepage = "https://github.com/bos/aeson";
description = "Parsing of ISO 8601 dates, originally from aeson";
@@ -31041,8 +31393,8 @@ self: {
}:
mkDerivation {
pname = "avro";
- version = "0.2.1.0";
- sha256 = "07gqi33aadb9c94b19z1166ayyi0s95ykda77l53vc2al43sa3bl";
+ version = "0.2.1.1";
+ sha256 = "1y70ir44kg5awgf3x1sl584ag9ddw0mhgqniwar6lgry2ag4vz9f";
libraryHaskellDepends = [
aeson array base base16-bytestring binary bytestring containers
data-binary-ieee754 entropy fail hashable mtl pure-zlib scientific
@@ -31054,7 +31406,7 @@ self: {
QuickCheck scientific semigroups tagged template-haskell text
transformers unordered-containers vector
];
- homepage = "https://github.com/haskell-works/hw-haskell-avro.git";
+ homepage = "https://github.com/GaloisInc/avro.git";
description = "Avro serialization support for Haskell";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -31694,6 +32046,7 @@ self: {
homepage = "https://github.com/jxv/aws-ses-easy#readme";
description = "Wrapper over Amazonka's SES";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aws-sign4" = callPackage
@@ -31968,6 +32321,40 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "b9_0_5_43" = callPackage
+ ({ mkDerivation, aeson, async, base, bifunctors, binary, boxes
+ , bytestring, conduit, conduit-extra, ConfigFile, directory
+ , filepath, free, hashable, hspec, hspec-expectations, lens, mtl
+ , optparse-applicative, parallel, parsec, pretty, pretty-show
+ , process, QuickCheck, random, shake, syb, template, text, time
+ , transformers, unordered-containers, vector, yaml
+ }:
+ mkDerivation {
+ pname = "b9";
+ version = "0.5.43";
+ sha256 = "168rgqqnxi8f39dg510nxlh813ch4dkdxxd4rymf09dkn87w1snk";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson async base bifunctors binary boxes bytestring conduit
+ conduit-extra ConfigFile directory filepath free hashable lens mtl
+ parallel parsec pretty pretty-show process QuickCheck random shake
+ syb template text time transformers unordered-containers vector
+ yaml
+ ];
+ executableHaskellDepends = [
+ base bytestring directory lens optparse-applicative
+ ];
+ testHaskellDepends = [
+ aeson base bytestring hspec hspec-expectations QuickCheck 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;
+ }) {};
+
"babl" = callPackage
({ mkDerivation, babl, base }:
mkDerivation {
@@ -32024,8 +32411,8 @@ self: {
}:
mkDerivation {
pname = "backprop";
- version = "0.1.3.0";
- sha256 = "0x1vp48dl0dlq1bwaq0fy9k472rpx571i7klrhnwnqf6nb52mh1w";
+ version = "0.1.5.0";
+ sha256 = "0b99krw1l574bcqxck1bqj5sb0slbm24hd85finv3v725ddy8k7f";
libraryHaskellDepends = [
base deepseq microlens primitive reflection transformers
type-combinators vector
@@ -32039,29 +32426,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "backprop_0_1_4_0" = callPackage
- ({ mkDerivation, base, bifunctors, criterion, deepseq, directory
- , hmatrix, lens, microlens, mnist-idx, mwc-random, primitive
- , reflection, time, transformers, type-combinators, vector
- }:
- mkDerivation {
- pname = "backprop";
- version = "0.1.4.0";
- sha256 = "0gshjm0xgzsgd3q0a5ahg3xyk50jfgq7c4rqs1jxq9nmd9m1pq5h";
- libraryHaskellDepends = [
- base deepseq microlens primitive reflection transformers
- type-combinators vector
- ];
- benchmarkHaskellDepends = [
- base bifunctors criterion deepseq directory hmatrix lens mnist-idx
- mwc-random time transformers vector
- ];
- homepage = "https://github.com/mstksg/backprop#readme";
- description = "Heterogeneous automatic differentation (backpropagation)";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"backtracking-exceptions" = callPackage
({ mkDerivation, base, either, free, kan-extensions, mtl
, semigroupoids, semigroups, transformers
@@ -32526,6 +32890,48 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "base-compat_0_10_0" = callPackage
+ ({ mkDerivation, base, unix }:
+ mkDerivation {
+ pname = "base-compat";
+ version = "0.10.0";
+ sha256 = "0s46gkixvnafc9rj7sqn4m6bl0457myhn8lp65d5s579zrj8y43i";
+ libraryHaskellDepends = [ base unix ];
+ description = "A compatibility layer for base";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "base-compat-batteries" = callPackage
+ ({ mkDerivation, base, base-compat, hspec, hspec-discover
+ , QuickCheck
+ }:
+ mkDerivation {
+ pname = "base-compat-batteries";
+ version = "0.10.0";
+ sha256 = "0zyhl2yfycwcgvf8kh8g3y8zkp21b0wd4nnhvgjdcw11gn6nb26x";
+ libraryHaskellDepends = [ base base-compat ];
+ testHaskellDepends = [ base hspec QuickCheck ];
+ testToolDepends = [ hspec-discover ];
+ description = "base-compat with extra batteries";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "base-encoding" = callPackage
+ ({ mkDerivation, base, base16-bytestring, base64-bytestring
+ , bytestring, text
+ }:
+ mkDerivation {
+ pname = "base-encoding";
+ version = "0.1.0.0";
+ sha256 = "1chmx5qvglf91i0c9ih9xydzb37v8j4bykvmb2g6pyg7wdq0s8si";
+ libraryHaskellDepends = [
+ base base16-bytestring base64-bytestring bytestring text
+ ];
+ description = "Binary-to-text encodings (e.g. base64)";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"base-feature-macros" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -32825,8 +33231,8 @@ self: {
({ mkDerivation, base, bytestring, QuickCheck }:
mkDerivation {
pname = "basen-bytestring";
- version = "0.1.0.0";
- sha256 = "0v2839zc5n58na1kb1q9qalcnjwriq5w9hk9qs7b9xh2jmwwldcz";
+ version = "0.1.0.1";
+ sha256 = "131aamd4kq7jdmpl4ammgqgykbh81mkziaf0kpic5c20al4a73lp";
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [ base bytestring QuickCheck ];
homepage = "https://github.com/FilWisher/basen-bytestring#readme";
@@ -33033,8 +33439,8 @@ self: {
}:
mkDerivation {
pname = "battleplace";
- version = "0.1.0.0";
- sha256 = "1p3dxz8a752wc6fmj6kip4gcwj77c96ic5wzlhgv670xsh4ac1qg";
+ version = "0.1.0.1";
+ sha256 = "1zjjmz36lxxrxgx449212q878mzavjpwx5jad0lk9ninpas16h5v";
libraryHaskellDepends = [
aeson base bytestring cereal data-default hashable memory servant
text vector
@@ -33047,8 +33453,8 @@ self: {
({ mkDerivation, base, battleplace, servant, servant-client }:
mkDerivation {
pname = "battleplace-api";
- version = "0.1.0.0";
- sha256 = "0hy1y5n064i7g2zknvj7yl7zw3bljqjrfr2sg68cmk9gkd854rlw";
+ version = "0.1.0.1";
+ sha256 = "1pi1vcniyrpq1xfrizhvgw7xbrc332649zg4jl1fjbqn4l4xqrlg";
libraryHaskellDepends = [
base battleplace servant servant-client
];
@@ -33293,16 +33699,16 @@ self: {
"beam-core" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, dlist, free
- , ghc-prim, hashable, microlens, mtl, network-uri, tasty
+ , ghc-prim, hashable, microlens, mtl, network-uri, tagged, tasty
, tasty-hunit, text, time, vector-sized
}:
mkDerivation {
pname = "beam-core";
- version = "0.6.0.0";
- sha256 = "1pnxmy5xv84fng0391cckizwdrwzh0p0v3g0vc29z5vpksqr24kg";
+ version = "0.7.0.0";
+ sha256 = "1qpgcr5a1r7ck0mxh70akz32zb4vm30is2dpsxgcdza5zshmnvcb";
libraryHaskellDepends = [
aeson base bytestring containers dlist free ghc-prim hashable
- microlens mtl network-uri text time vector-sized
+ microlens mtl network-uri tagged text time vector-sized
];
testHaskellDepends = [
base bytestring tasty tasty-hunit text time
@@ -33743,6 +34149,27 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "betris" = callPackage
+ ({ mkDerivation, base, containers, lens, linear, random, stm
+ , stm-chans, vty
+ }:
+ mkDerivation {
+ pname = "betris";
+ version = "0.1.0.0";
+ sha256 = "1qn326s4xydvvgmrhqi48cc2pl9b3mp7swc82qk59gj7cx4dx222";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers lens linear random stm stm-chans vty
+ ];
+ executableHaskellDepends = [
+ base containers lens linear random stm stm-chans vty
+ ];
+ homepage = "https://github.com/mlang/betris#readme";
+ description = "Braille friendly vertical version of tetris";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"between" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -33845,6 +34272,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "bhoogle_0_1_2_6" = callPackage
+ ({ mkDerivation, base, brick, bytestring, containers, directory
+ , filepath, hoogle, lens, process, protolude, text, time, vector
+ , vty
+ }:
+ mkDerivation {
+ pname = "bhoogle";
+ version = "0.1.2.6";
+ sha256 = "0p6zh1rh80hzrm36w6d5hr6qjkfc71cr96dk9shrndnxlp8vlxsn";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base brick bytestring containers directory filepath hoogle lens
+ process protolude text time vector vty
+ ];
+ homepage = "https://github.com/andrevdm/bhoogle#readme";
+ description = "Simple terminal GUI for local hoogle";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"bibdb" = callPackage
({ mkDerivation, alex, array, async, base, bibtex, bytestring
, containers, curl, download-curl, filepath, happy, microlens
@@ -36334,10 +36782,8 @@ self: {
}:
mkDerivation {
pname = "bits-extra";
- version = "0.0.0.1";
- sha256 = "1yggdh8j2hqhyskyqq4gci4hg1kdglzw7sfd7gdf4fsw9l6g8rq0";
- revision = "1";
- editedCabalFile = "13rmw51xqbz0zjn2g0135m2f5qqsba3l5w02pb16dkfq4gbhmblx";
+ version = "0.0.0.2";
+ sha256 = "067k2kczi56454mgv86x9r0fpzdc0v3m8z4rc0jb93bqd33knq7r";
libraryHaskellDepends = [ base ghc-prim ];
testHaskellDepends = [
base ghc-prim hedgehog hspec hw-hedgehog hw-hspec-hedgehog
@@ -36756,27 +37202,26 @@ self: {
}) {};
"blank-canvas" = callPackage
- ({ mkDerivation, aeson, base, base-compat, base64-bytestring
- , bytestring, colour, containers, data-default-class, directory
- , http-types, kansas-comet, mime-types, process, scotty, semigroups
- , shake, stm, text, text-show, time, transformers, unix, vector
- , wai, wai-extra, warp
+ ({ mkDerivation, aeson, base, base-compat-batteries
+ , base64-bytestring, bytestring, colour, containers
+ , data-default-class, directory, http-types, kansas-comet
+ , mime-types, process, scotty, semigroups, shake, stm, text
+ , text-show, time, transformers, unix, vector, wai, wai-extra, warp
}:
mkDerivation {
pname = "blank-canvas";
- version = "0.6.2";
- sha256 = "1qhdvxia8wlnv0ss9dsrxdfw3qsf376ypnpsijz7vxkj9dmzyq84";
- revision = "3";
- editedCabalFile = "0fanap927iszy3vkymkjcmzd74gripbbp222zcmzl5gkn3l4g931";
+ version = "0.6.3";
+ sha256 = "1d10ngvsgi2hz6xick59rkq1wzfbsgckply2jmg6gz9mf3zj97bk";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- aeson base base-compat base64-bytestring bytestring colour
- containers data-default-class http-types kansas-comet mime-types
- scotty semigroups stm text text-show transformers vector wai
- wai-extra warp
+ aeson base base-compat-batteries base64-bytestring bytestring
+ colour containers data-default-class http-types kansas-comet
+ mime-types scotty semigroups stm text text-show transformers vector
+ wai wai-extra warp
];
testHaskellDepends = [
- base containers directory process shake stm text time unix vector
+ base base-compat-batteries containers directory process shake stm
+ text time unix vector
];
homepage = "https://github.com/ku-fpg/blank-canvas/wiki";
description = "HTML5 Canvas Graphics Library";
@@ -36815,6 +37260,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "blas-carray_0_0_1_1" = callPackage
+ ({ mkDerivation, base, blas-ffi, carray, netlib-carray, netlib-ffi
+ , storable-complex, transformers
+ }:
+ mkDerivation {
+ pname = "blas-carray";
+ version = "0.0.1.1";
+ sha256 = "0ijzcdrbfb9w3vs4g96p30h7ilh9s05ij8n0prinmr1ngmvipbdx";
+ libraryHaskellDepends = [
+ base blas-ffi carray netlib-carray netlib-ffi storable-complex
+ transformers
+ ];
+ homepage = "http://hub.darcs.net/thielema/blas-carray/";
+ description = "Auto-generated interface to Fortran BLAS via CArrays";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"blas-ffi" = callPackage
({ mkDerivation, base, blas, netlib-ffi }:
mkDerivation {
@@ -36829,6 +37292,20 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) blas;};
+ "blas-ffi_0_0_1_1" = callPackage
+ ({ mkDerivation, base, blas, netlib-ffi }:
+ mkDerivation {
+ pname = "blas-ffi";
+ version = "0.0.1.1";
+ sha256 = "0dphqcnnka0ahfgdnshm8r3bd6r5wbpln9kksa6y09yi2nnqh3gf";
+ libraryHaskellDepends = [ base netlib-ffi ];
+ libraryPkgconfigDepends = [ blas ];
+ homepage = "http://hub.darcs.net/thielema/blas-ffi/";
+ description = "Auto-generated interface to Fortran BLAS";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) blas;};
+
"blas-hs" = callPackage
({ mkDerivation, base, blas, storable-complex, vector }:
mkDerivation {
@@ -37735,8 +38212,8 @@ self: {
pname = "boltzmann-samplers";
version = "0.1.0.0";
sha256 = "0gw8d4xrwr9xs9k7dflm12xpkn6k0yn41myvzqzj4c6bhdd0c1sp";
- revision = "1";
- editedCabalFile = "00va7bagszricicai4jckyka8azgw6gly9ps5kabnsyv5znylfr0";
+ revision = "2";
+ editedCabalFile = "0mmjxyy9pxrrxdrpkl06c2dk980b4z6pvkg5zj3fl56avg3l4q26";
libraryHaskellDepends = [
ad base containers hashable hmatrix ieee754 MonadRandom mtl
QuickCheck transformers unordered-containers vector
@@ -37746,6 +38223,25 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "boltzmann-samplers_0_1_1_0" = callPackage
+ ({ mkDerivation, ad, base, containers, hashable, hmatrix, ieee754
+ , MonadRandom, mtl, QuickCheck, transformers, unordered-containers
+ , vector
+ }:
+ mkDerivation {
+ pname = "boltzmann-samplers";
+ version = "0.1.1.0";
+ sha256 = "13l7ml35hm0i2rgw419n7xp2zp58pafm6gmmik3jgbmhfwgkwz6y";
+ libraryHaskellDepends = [
+ ad base containers hashable hmatrix ieee754 MonadRandom mtl
+ QuickCheck transformers unordered-containers vector
+ ];
+ homepage = "https://github.com/Lysxia/boltzmann-samplers#readme";
+ description = "Uniform random generators";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"bond" = callPackage
({ mkDerivation, aeson, aeson-pretty, async, base, bytestring
, cmdargs, derive, Diff, directory, filepath, HUnit, monad-loops
@@ -37885,13 +38381,17 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "bookkeeping_0_3_3_0" = callPackage
- ({ mkDerivation, base, dlist, doctest, Glob, mtl, text, time }:
+ "bookkeeping_0_4_0_1" = callPackage
+ ({ mkDerivation, base, doctest, Glob, mono-traversable, text, time
+ , transaction
+ }:
mkDerivation {
pname = "bookkeeping";
- version = "0.3.3.0";
- sha256 = "040ivbr9slbsxghrgys2ym9mxfmc5jh579f2x8cl7yqr851gq1g6";
- libraryHaskellDepends = [ base dlist mtl text time ];
+ version = "0.4.0.1";
+ sha256 = "0afa4g5c9csjn747732qqbs3ghp8c4jyxhfb9k09igfaladrvzfl";
+ libraryHaskellDepends = [
+ base mono-traversable text time transaction
+ ];
testHaskellDepends = [ base doctest Glob ];
homepage = "https://github.com/arowM/haskell-bookkeeping#readme";
description = "A module for bookkeeping by double entry";
@@ -37905,8 +38405,8 @@ self: {
}:
mkDerivation {
pname = "bookkeeping-jp";
- version = "0.1.1.2";
- sha256 = "0i0il5h6zf8hps8i3y4s6s80sqpvv0xgld1g3pm752v91r3z3dgv";
+ version = "0.1.1.3";
+ sha256 = "06zfq2153p6dnrmrp3vdq27xij38l5cnx46y3qpzifrpsady6lgd";
libraryHaskellDepends = [
base bookkeeping mono-traversable text time
];
@@ -38054,12 +38554,14 @@ self: {
}) {};
"boomerang" = callPackage
- ({ mkDerivation, base, mtl, template-haskell, text }:
+ ({ mkDerivation, base, mtl, semigroups, template-haskell, text }:
mkDerivation {
pname = "boomerang";
- version = "1.4.5.3";
- sha256 = "124k13x5wzjy2qlbdgixncgr5l7cxw4glq1hjb8hyk8vfvgs6qfl";
- libraryHaskellDepends = [ base mtl template-haskell text ];
+ version = "1.4.5.5";
+ sha256 = "0i2svn3bs57hhwgplkydvvpznl178dlm3byi0j4y2ckd9gqpzz4d";
+ libraryHaskellDepends = [
+ base mtl semigroups template-haskell text
+ ];
description = "Library for invertible parsing and printing";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -38557,16 +39059,16 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "brick_0_35_1" = callPackage
+ "brick_0_36" = callPackage
({ mkDerivation, base, config-ini, containers, contravariant
, data-clist, deepseq, dlist, microlens, microlens-mtl
- , microlens-th, stm, template-haskell, text, text-zipper
- , transformers, vector, vty, word-wrap
+ , microlens-th, QuickCheck, stm, template-haskell, text
+ , text-zipper, transformers, vector, vty, word-wrap
}:
mkDerivation {
pname = "brick";
- version = "0.35.1";
- sha256 = "16z2gm2wvj0y4lc3z7wvdrfksx4a6przllw2ly8ymm1x4ii0khhw";
+ version = "0.36";
+ sha256 = "1i1np31hncgz5cvygraxcv9x6l7yn9y3f8f92jih1im38drhp65z";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -38574,6 +39076,7 @@ self: {
microlens microlens-mtl microlens-th stm template-haskell text
text-zipper transformers vector vty word-wrap
];
+ testHaskellDepends = [ base containers QuickCheck ];
homepage = "https://github.com/jtdaugherty/brick/";
description = "A declarative terminal user interface library";
license = stdenv.lib.licenses.bsd3;
@@ -38758,6 +39261,8 @@ self: {
pname = "brittany";
version = "0.9.0.1";
sha256 = "1ndmnakzq6kiyxlxmgrjmzzpknrn4ib5ck5vxxr90qw8rw6yqi88";
+ revision = "1";
+ editedCabalFile = "1ac9g160kaaz78xk6xdfpkm0qadgkanjghi8g0b9fy17983fiw7a";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -38798,6 +39303,8 @@ self: {
pname = "brittany";
version = "0.10.0.0";
sha256 = "1fm6l4ial8kp4mafwkp7w79nklc46c07i12p1in3dqxz9r5817r1";
+ revision = "1";
+ editedCabalFile = "1mq1hgakxwzk4k4d8gwfbngprcprjagnvkvq389z1m1vda3w80i8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -39630,17 +40137,18 @@ self: {
"bv-sized" = callPackage
({ mkDerivation, base, containers, lens, parameterized-utils
- , QuickCheck, random
+ , prettyclass, QuickCheck, random
}:
mkDerivation {
pname = "bv-sized";
- version = "0.2.0";
- sha256 = "0v0wrr4pf8krya5az91yqvivjg72p08x2nmsp335c66rpmg6ph1i";
+ version = "0.2.1";
+ sha256 = "1hnmy3yhaf5ajr5hwx06s838s5nwnyz4jgl7wsyf189yzjs6m0kj";
libraryHaskellDepends = [
- base containers lens parameterized-utils QuickCheck random
+ base containers lens parameterized-utils prettyclass QuickCheck
+ random
];
testHaskellDepends = [
- base lens parameterized-utils QuickCheck random
+ base lens parameterized-utils prettyclass QuickCheck random
];
homepage = "https://github.com/benjaminselfridge/bv-sized";
description = "a BitVector datatype that is parameterized by the vector width";
@@ -39756,6 +40264,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "bytes_0_15_4" = callPackage
+ ({ mkDerivation, base, binary, bytestring, Cabal, cabal-doctest
+ , cereal, containers, directory, doctest, filepath, hashable, mtl
+ , scientific, text, time, transformers, transformers-compat
+ , unordered-containers, void
+ }:
+ mkDerivation {
+ pname = "bytes";
+ version = "0.15.4";
+ sha256 = "121x3iqlm8pghw8cd9g30cnqbl7jrdpfjxdanmqdqllajw6xivrm";
+ setupHaskellDepends = [ base Cabal cabal-doctest ];
+ libraryHaskellDepends = [
+ base binary bytestring cereal containers hashable mtl scientific
+ text time transformers transformers-compat unordered-containers
+ void
+ ];
+ testHaskellDepends = [ base directory doctest filepath ];
+ homepage = "https://github.com/ekmett/bytes";
+ description = "Sharing code for serialization between binary and cereal";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"byteset" = callPackage
({ mkDerivation, base, binary }:
mkDerivation {
@@ -40145,6 +40676,8 @@ self: {
pname = "bytestring-trie";
version = "0.2.4.1";
sha256 = "0qqklrvdcprchnl4bxr6w7zf6k5gncincl3kysm34gd04sszxr1g";
+ revision = "1";
+ editedCabalFile = "0f56pb1k1va7bs9rpn0b8hclxhn5pcjln857k50myhyzrwz8qg7r";
libraryHaskellDepends = [ base binary bytestring ];
homepage = "http://code.haskell.org/~wren/";
description = "An efficient finite map from (byte)strings to values";
@@ -40818,31 +41351,23 @@ self: {
({ mkDerivation, array, async, base, base16-bytestring, binary
, bytestring, Cabal, containers, cryptohash-sha256, deepseq
, directory, echo, edit-distance, filepath, hackage-security
- , hashable, HTTP, mtl, network, network-uri, pretty, pretty-show
- , process, QuickCheck, random, stm, tagged, tar, tasty, tasty-hunit
- , tasty-quickcheck, time, unix, zlib
+ , hashable, HTTP, mtl, network, network-uri, pretty, process
+ , random, resolv, stm, tar, time, unix, zlib
}:
mkDerivation {
pname = "cabal-install";
- version = "2.0.0.1";
- sha256 = "16ax1lx89jdgf9pqka423h2bf8dblkra48n4y3icg8fs79py74gr";
- revision = "3";
- editedCabalFile = "148rq7hcbl8rq7pkywn1hk3l7lv442flf6b0wamfixxzxk74fwlj";
- isLibrary = false;
+ version = "2.2.0.0";
+ sha256 = "1nd3ch7qr4dpfxhgkcq2lnhvszx2kjgnn1kwb44vk9y5jgfs4mn8";
+ revision = "1";
+ editedCabalFile = "0f1svlhh4cpj3p5fs9bcjpv15qp291lnvlaxxcw7aib8a1gn3wim";
+ isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal filepath process ];
executableHaskellDepends = [
array async base base16-bytestring binary bytestring Cabal
containers cryptohash-sha256 deepseq directory echo edit-distance
filepath hackage-security hashable HTTP mtl network network-uri
- pretty process random stm tar time unix zlib
- ];
- testHaskellDepends = [
- array async base base16-bytestring binary bytestring Cabal
- containers cryptohash-sha256 deepseq directory edit-distance
- filepath hackage-security hashable HTTP mtl network network-uri
- pretty pretty-show process QuickCheck random stm tagged tar tasty
- tasty-hunit tasty-quickcheck time unix zlib
+ pretty process random resolv stm tar time unix zlib
];
doCheck = false;
postInstall = ''
@@ -41085,8 +41610,8 @@ self: {
}:
mkDerivation {
pname = "cabal-rpm";
- version = "0.12.1";
- sha256 = "0avp7prkzp522mpqnn60xmsqqp10zhp1phhlj14qzp4162772fss";
+ version = "0.12.2";
+ sha256 = "00i3v62ys6fhq2rnw9q2hhc2h54v8my14ll746vpma2gfdy90y1c";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -41582,6 +42107,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "cache_0_1_1_0" = callPackage
+ ({ mkDerivation, base, clock, hashable, hspec, stm, transformers
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "cache";
+ version = "0.1.1.0";
+ sha256 = "1zvq5dwckkngf6kzh04pa59kgxf44fx9kli0c7zaz4g9hf1nyx8l";
+ libraryHaskellDepends = [
+ base clock hashable stm transformers unordered-containers
+ ];
+ testHaskellDepends = [ base clock hspec stm transformers ];
+ homepage = "https://github.com/hverr/haskell-cache#readme";
+ description = "An in-memory key/value store with expiration support";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"cached-io" = callPackage
({ mkDerivation, base, stm, time, transformers }:
mkDerivation {
@@ -42747,6 +43290,19 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "casing_0_1_4_0" = callPackage
+ ({ mkDerivation, base, split, tasty, tasty-hunit }:
+ mkDerivation {
+ pname = "casing";
+ version = "0.1.4.0";
+ sha256 = "1mznhlbg8qd2yrjg23rq7s77bijn92nrfx7bvx9sw8sqxwqkd2lf";
+ libraryHaskellDepends = [ base split ];
+ testHaskellDepends = [ base tasty tasty-hunit ];
+ description = "Convert between various source code casing conventions";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"casr-logbook" = callPackage
({ mkDerivation, base, containers, digit, directory, doctest
, filepath, lens, lucid, QuickCheck, template-haskell, text, time
@@ -45760,27 +46316,25 @@ self: {
"clash-ghc" = callPackage
({ mkDerivation, array, base, bifunctors, bytestring, clash-lib
- , clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl
- , containers, deepseq, directory, filepath, ghc, ghc-boot
- , ghc-typelits-extra, ghc-typelits-knownnat
- , ghc-typelits-natnormalise, ghci, hashable, haskeline, lens, mtl
- , process, text, time, transformers, unbound-generics, uniplate
- , unix, unordered-containers
+ , clash-prelude, concurrent-supply, containers, deepseq, directory
+ , filepath, ghc, ghc-boot, ghc-prim, ghc-typelits-extra
+ , ghc-typelits-knownnat, ghc-typelits-natnormalise, ghci, hashable
+ , haskeline, integer-gmp, lens, mtl, process, reflection, text
+ , time, transformers, unbound-generics, uniplate, unix
+ , unordered-containers
}:
mkDerivation {
pname = "clash-ghc";
- version = "0.7.2";
- sha256 = "1fjimvj07mc8d8z6i9sl9ifyvcil262p53bz6gap833jrirqd3yh";
- revision = "1";
- editedCabalFile = "1np4zs8bqdvzlls8c8zpiwqq91bvx2aiz7qpvza0fzdvc0df2cmj";
+ version = "0.99";
+ sha256 = "19s6h0ly0pz1wi1zs5ln9wai6kp9f49xdcjyc3z6mskcabv5b8q2";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
array base bifunctors bytestring clash-lib clash-prelude
- clash-systemverilog clash-verilog clash-vhdl containers deepseq
- directory filepath ghc ghc-boot ghc-typelits-extra
- ghc-typelits-knownnat ghc-typelits-natnormalise ghci hashable
- haskeline lens mtl process text time transformers unbound-generics
+ concurrent-supply containers deepseq directory filepath ghc
+ ghc-boot ghc-prim ghc-typelits-extra ghc-typelits-knownnat
+ ghc-typelits-natnormalise ghci hashable haskeline integer-gmp lens
+ mtl process reflection text time transformers unbound-generics
uniplate unix unordered-containers
];
executableHaskellDepends = [ base ];
@@ -45791,25 +46345,24 @@ self: {
}) {};
"clash-lib" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude
- , concurrent-supply, containers, data-binary-ieee754, deepseq
- , directory, errors, fgl, filepath, ghc, hashable, integer-gmp
- , lens, mtl, pretty, process, template-haskell, text, time
- , transformers, unbound-generics, unordered-containers
- , uu-parsinglib, wl-pprint-text
+ ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base
+ , bytestring, clash-prelude, concurrent-supply, containers
+ , data-binary-ieee754, deepseq, directory, errors, fgl, filepath
+ , ghc, hashable, integer-gmp, lens, mtl, parsers, prettyprinter
+ , process, reducers, template-haskell, text, time, transformers
+ , trifecta, unbound-generics, unordered-containers
}:
mkDerivation {
pname = "clash-lib";
- version = "0.7.1";
- sha256 = "1mml3f10mdirlihjnbzjh3jjnmvgcqfqs16k22a13m8pd4whcw88";
- revision = "2";
- editedCabalFile = "1b8d63wisrizirkyrl58840bfnknjy049sm43zhhr9nbw6fn2c51";
+ version = "0.99";
+ sha256 = "1dl9pwv9fc5byimdxsl4xa4401nz74bgzrxmgk6hcbyvh7i4b17i";
+ enableSeparateDataOutput = true;
libraryHaskellDepends = [
- aeson attoparsec base bytestring clash-prelude concurrent-supply
- containers data-binary-ieee754 deepseq directory errors fgl
- filepath ghc hashable integer-gmp lens mtl pretty process
- template-haskell text time transformers unbound-generics
- unordered-containers uu-parsinglib wl-pprint-text
+ aeson ansi-wl-pprint attoparsec base bytestring clash-prelude
+ concurrent-supply containers data-binary-ieee754 deepseq directory
+ errors fgl filepath ghc hashable integer-gmp lens mtl parsers
+ prettyprinter process reducers template-haskell text time
+ transformers trifecta unbound-generics unordered-containers
];
homepage = "http://www.clash-lang.org/";
description = "CAES Language for Synchronous Hardware - As a Library";
@@ -45834,23 +46387,21 @@ self: {
}) {};
"clash-prelude" = callPackage
- ({ mkDerivation, array, base, constraints, criterion
+ ({ mkDerivation, array, base, bifunctors, constraints, criterion
, data-binary-ieee754, data-default, deepseq, doctest, ghc-prim
, ghc-typelits-extra, ghc-typelits-knownnat
, ghc-typelits-natnormalise, half, integer-gmp, lens, QuickCheck
- , reflection, singletons, template-haskell, vector
+ , reflection, singletons, template-haskell, transformers, vector
}:
mkDerivation {
pname = "clash-prelude";
- version = "0.11.2";
- sha256 = "1ccbcqkqcq5kyfjfvpkis2z40ishc4yqjjjswfsg92qrklk38wcl";
- revision = "2";
- editedCabalFile = "16ak462j0722lvy8ajn2yv400z9jgv8c3l151pmfwh893q6b0i3l";
+ version = "0.99";
+ sha256 = "13qclvisklwy4syc5hgr5dvcz7wm4nwasgky3xvjhnhjg05wjd6l";
libraryHaskellDepends = [
- array base constraints data-binary-ieee754 data-default deepseq
- ghc-prim ghc-typelits-extra ghc-typelits-knownnat
+ array base bifunctors constraints data-binary-ieee754 data-default
+ deepseq ghc-prim ghc-typelits-extra ghc-typelits-knownnat
ghc-typelits-natnormalise half integer-gmp lens QuickCheck
- reflection singletons template-haskell vector
+ reflection singletons template-haskell transformers vector
];
testHaskellDepends = [ base doctest ];
benchmarkHaskellDepends = [
@@ -46107,8 +46658,8 @@ self: {
"clckwrks" = callPackage
({ mkDerivation, acid-state, aeson, aeson-qq, attoparsec, base
- , blaze-html, bytestring, cereal, containers, directory, filepath
- , happstack-authenticate, happstack-hsp, happstack-jmacro
+ , blaze-html, bytestring, Cabal, 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
@@ -46119,9 +46670,10 @@ self: {
}:
mkDerivation {
pname = "clckwrks";
- version = "0.24.0.6";
- sha256 = "0yswcldqwrpk7z5ww95nyvsb6qdpl2171zxy4fkpnqscma3sf54r";
+ version = "0.24.0.7";
+ sha256 = "1czalrr7y3526jb4cgi8bghxghqwsjwkfhm5vb4q19xzqg3kjqwy";
enableSeparateDataOutput = true;
+ setupHaskellDepends = [ base Cabal ];
libraryHaskellDepends = [
acid-state aeson aeson-qq attoparsec base blaze-html bytestring
cereal containers directory filepath happstack-authenticate
@@ -46281,17 +46833,19 @@ self: {
}) {};
"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, uuid-orphans, web-plugins
- , web-routes, web-routes-happstack, web-routes-th
+ ({ mkDerivation, acid-state, aeson, attoparsec, base, Cabal
+ , 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
+ , uuid-orphans, web-plugins, web-routes, web-routes-happstack
+ , web-routes-th
}:
mkDerivation {
pname = "clckwrks-plugin-page";
- version = "0.4.3.11";
- sha256 = "1xqlpdg511m5wif9cz01v0fgam1lsvl50sqigxrcjc9n6fivn61x";
+ version = "0.4.3.12";
+ sha256 = "0xndx7843laiha1n8xscq13dv6x6fv098v1cdmmzx7qnvfvhhlxj";
+ setupHaskellDepends = [ base Cabal ];
libraryHaskellDepends = [
acid-state aeson attoparsec base clckwrks containers directory
filepath happstack-hsp happstack-server hsp hsx2hs ixset mtl
@@ -46487,8 +47041,8 @@ self: {
}:
mkDerivation {
pname = "cli-setup";
- version = "0.2.0.1";
- sha256 = "056y5sphj2zn455wyhjxcr0c6hb502bhrazhd7nij9mg8d8761dk";
+ version = "0.2.0.3";
+ sha256 = "1macadfh1dqd6n2cc5rlyn74fz450livy1bg0qns3kcijqilk0p4";
libraryHaskellDepends = [
base bytestring directory file-embed process
];
@@ -46806,18 +47360,18 @@ self: {
"closed" = callPackage
({ mkDerivation, aeson, base, cassava, deepseq, hashable, hspec
- , markdown-unlit, QuickCheck, vector
+ , markdown-unlit, persistent, QuickCheck, text, vector
}:
mkDerivation {
pname = "closed";
- version = "0.1.0";
- sha256 = "0x87s852xfsyxnwj88kw38wmpzrj52hd7r87xx73r4ffv0lp6kh4";
+ version = "0.2.0";
+ sha256 = "0762acn2dik98hp4bvlyvwfy1jfzb4i6ri9pnxa07risain1qc3s";
libraryHaskellDepends = [
- aeson base cassava deepseq hashable QuickCheck
+ aeson base cassava deepseq hashable persistent QuickCheck text
];
testHaskellDepends = [
- aeson base cassava deepseq hashable hspec markdown-unlit QuickCheck
- vector
+ aeson base cassava deepseq hashable hspec markdown-unlit persistent
+ QuickCheck text vector
];
homepage = "https://github.com/frontrowed/closed#readme";
description = "Integers bounded by a closed interval";
@@ -47611,8 +48165,8 @@ self: {
}:
mkDerivation {
pname = "codec-beam";
- version = "0.1.0";
- sha256 = "0c5l4ss3pf55s8mwk01ncl5nnry9c1ha5drfmax53z40hyrxhmy8";
+ version = "0.1.1";
+ sha256 = "1d6dsa4di4wil6wqc2jpfqvf09vk4zw9c2905py5vygl87q1y9jq";
libraryHaskellDepends = [ base bytestring containers text zlib ];
testHaskellDepends = [ base bytestring filepath process text ];
homepage = "https://github.com/hkgumbs/codec-beam#readme";
@@ -48295,6 +48849,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "colour-accelerate_0_3_0_0" = callPackage
+ ({ mkDerivation, accelerate, base }:
+ mkDerivation {
+ pname = "colour-accelerate";
+ version = "0.3.0.0";
+ sha256 = "0zvzra2w0sajw0hzg2k25khv8c5j1i17g8dnga70w73f3mmh3gbz";
+ libraryHaskellDepends = [ accelerate base ];
+ homepage = "https://github.com/tmcdonell/colour-accelerate";
+ description = "Working with colours in Accelerate";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"colour-space" = callPackage
({ mkDerivation, base, colour, constrained-categories, JuicyPixels
, linear, linearmap-category, manifolds, semigroups, vector-space
@@ -48462,6 +49029,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "combinat-compat" = callPackage
+ ({ mkDerivation, array, base, containers, QuickCheck, random
+ , test-framework, test-framework-quickcheck2, transformers
+ }:
+ mkDerivation {
+ pname = "combinat-compat";
+ version = "0.2.8.2";
+ sha256 = "0mh5f8vmbwnib1qv9vvp45gwwj6942l1jhxnglq9i4za40k1r8ff";
+ libraryHaskellDepends = [
+ array base containers random transformers
+ ];
+ testHaskellDepends = [
+ array base containers QuickCheck random test-framework
+ test-framework-quickcheck2 transformers
+ ];
+ homepage = "http://code.haskell.org/~bkomuves/";
+ description = "Generate and manipulate various combinatorial objects";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"combinat-diagrams" = callPackage
({ mkDerivation, array, base, colour, combinat, containers
, diagrams-core, diagrams-lib, linear, transformers
@@ -48574,8 +49161,8 @@ self: {
({ mkDerivation, base, utility-ht }:
mkDerivation {
pname = "comfort-array";
- version = "0.0";
- sha256 = "0mkfw2f56idh1nnmgamgazwzip6c4pmxsiaijs8k69ggzi2fb8bx";
+ version = "0.0.1";
+ sha256 = "1nbnnhmfbsiq31damx998sm7hz127mdqbnzzybz00962bmlmvp72";
libraryHaskellDepends = [ base utility-ht ];
homepage = "http://hub.darcs.net/thielema/comfort-array/";
description = "Arrays where the index type is a function of the shape type";
@@ -49220,8 +49807,8 @@ self: {
}:
mkDerivation {
pname = "composite-aeson";
- version = "0.5.3.0";
- sha256 = "0pmgrdlrk4l7bmbfvsbvysa3n2h14ca919fl7cr1bg9yk2mb2s7s";
+ version = "0.5.4.0";
+ sha256 = "08rmv82v5ipkcb46pcadx1s8c1v532l8ma2qlgiflq6jnxf7y0zn";
libraryHaskellDepends = [
aeson aeson-better-errors base composite-base containers
contravariant generic-deriving hashable lens mmorph mtl profunctors
@@ -49246,8 +49833,8 @@ self: {
}:
mkDerivation {
pname = "composite-aeson-refined";
- version = "0.5.3.0";
- sha256 = "07ps031qnkhd5yb7w0c9y69n22npa5y9rzxy934p6x32ni5v0mvz";
+ version = "0.5.4.0";
+ sha256 = "1x5vkxzj0afar4w2djx9s7h3vy9aa5my9wfks8n4ajlv92fch1zm";
libraryHaskellDepends = [
aeson-better-errors base composite-aeson mtl refined
];
@@ -49264,8 +49851,8 @@ self: {
}:
mkDerivation {
pname = "composite-base";
- version = "0.5.3.0";
- sha256 = "0xz264i115nj2b6k74s1csi29lrszambbhy7ibz7nwqr2qs56yzw";
+ version = "0.5.4.0";
+ sha256 = "0brycxdwf4051qvad4b4ak47dl27qn3izv1bcqlpva01jvb6h21j";
libraryHaskellDepends = [
base exceptions lens monad-control mtl profunctors template-haskell
text transformers transformers-base vinyl
@@ -49280,15 +49867,14 @@ self: {
}) {};
"composite-ekg" = callPackage
- ({ mkDerivation, base, composite-base, ekg, ekg-core, lens, text
- , vinyl
+ ({ mkDerivation, base, composite-base, ekg-core, lens, text, vinyl
}:
mkDerivation {
pname = "composite-ekg";
- version = "0.5.3.0";
- sha256 = "0fw6rsz7arndmp9d6xgvkx9vqqrv6kvhgchl0hqv4jfaxhwdv3gc";
+ version = "0.5.4.0";
+ sha256 = "051dw8ncpsk2k05ipvlnkwv2gy6719w69v1hhwrryy3dad0f4wc3";
libraryHaskellDepends = [
- base composite-base ekg ekg-core lens text vinyl
+ base composite-base ekg-core lens text vinyl
];
homepage = "https://github.com/ConferHealth/composite#readme";
description = "EKG Metrics for Vinyl/Frames records";
@@ -49302,8 +49888,8 @@ self: {
}:
mkDerivation {
pname = "composite-opaleye";
- version = "0.5.3.0";
- sha256 = "09sjvs7bxca789pfrhgbsy2v08060mraciwl867byq3s8aq5c971";
+ version = "0.5.4.0";
+ sha256 = "1k71v4dz4vl70ignjp6hgw6j4c9hdgafd9x973dk7w332m2vjdpn";
libraryHaskellDepends = [
base bytestring composite-base lens opaleye postgresql-simple
product-profunctors profunctors template-haskell text vinyl
@@ -49319,6 +49905,28 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "composite-swagger" = callPackage
+ ({ mkDerivation, base, composite-aeson, composite-base, hspec
+ , insert-ordered-containers, lens, QuickCheck, swagger2
+ , template-haskell, text, vinyl
+ }:
+ mkDerivation {
+ pname = "composite-swagger";
+ version = "0.5.4.0";
+ sha256 = "0i2jfchl88mrk9kmf8yv7cbv006ghilqsnbic7ddsbkzrjy1vdw0";
+ libraryHaskellDepends = [
+ base composite-base insert-ordered-containers lens swagger2
+ template-haskell text vinyl
+ ];
+ testHaskellDepends = [
+ base composite-aeson composite-base hspec insert-ordered-containers
+ lens QuickCheck swagger2 template-haskell text vinyl
+ ];
+ homepage = "https://github.com/ConferHealth/composite#readme";
+ description = "Swagger for Vinyl/Frames records";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"composition" = callPackage
({ mkDerivation }:
mkDerivation {
@@ -49344,8 +49952,8 @@ self: {
({ mkDerivation, base, cpphs }:
mkDerivation {
pname = "composition-prelude";
- version = "1.3.0.7";
- sha256 = "15fi1f3yiqg1gdjlwv3a6h9np9z3v1yd1qnz47309b6qki5pb0k3";
+ version = "1.3.0.8";
+ sha256 = "17ihwvkv7plwnwnk7ny81cj4xy2v776yk85gssgix92yc65p47b2";
libraryHaskellDepends = [ base ];
libraryToolDepends = [ cpphs ];
homepage = "https://github.com/vmchale/composition-prelude#readme";
@@ -49772,6 +50380,24 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "concurrency_1_5_0_0" = callPackage
+ ({ mkDerivation, array, atomic-primops, base, exceptions
+ , monad-control, mtl, stm, transformers
+ }:
+ mkDerivation {
+ pname = "concurrency";
+ version = "1.5.0.0";
+ sha256 = "0c07jkhsi9fy3ssjs19511dxsqq62yqbh9qd90r666wdhs0v86qh";
+ libraryHaskellDepends = [
+ array atomic-primops base exceptions monad-control mtl stm
+ transformers
+ ];
+ homepage = "https://github.com/barrucadu/dejafu";
+ description = "Typeclasses, functions, and data types for concurrency and STM";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"concurrent-barrier" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -51946,18 +52572,18 @@ self: {
}) {};
"convert" = callPackage
- ({ mkDerivation, base, bytestring, containers, either, lens, mtl
- , old-locale, old-time, template-haskell, text, time
+ ({ mkDerivation, ansi-wl-pprint, base, bytestring, containers
+ , data-default, lens, template-haskell, text, utf8-string
}:
mkDerivation {
pname = "convert";
- version = "1.0.2";
- sha256 = "0vwy2j2b0jw435mxmi95q61zmldjqlahhlbf4x9x28qm6kmh519q";
+ version = "1.4.2";
+ sha256 = "0lmbshg6nx0ifnc6qmhvacr5lr5nlay3sjkjg2n5624qm7aiq806";
libraryHaskellDepends = [
- base bytestring containers either lens mtl old-locale old-time
- template-haskell text time
+ ansi-wl-pprint base bytestring containers data-default lens
+ template-haskell text utf8-string
];
- homepage = "https://github.com/wdanilo/convert";
+ homepage = "https://github.com/luna/convert";
description = "Safe and unsafe data conversion utilities with strong type-level operation. checking.";
license = stdenv.lib.licenses.asl20;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -52077,18 +52703,14 @@ self: {
}) {};
"coordinate" = callPackage
- ({ mkDerivation, base, directory, doctest, filepath, lens
- , QuickCheck, template-haskell, transformers
- }:
+ ({ mkDerivation, base, HUnit, lens, papa, transformers }:
mkDerivation {
pname = "coordinate";
- version = "0.1.2";
- sha256 = "0lphvgjs9nkrp37hirhi88d285rqbgk7qjz23rbl94v6qrk3x8nv";
- libraryHaskellDepends = [ base lens transformers ];
- testHaskellDepends = [
- base directory doctest filepath QuickCheck template-haskell
- ];
- homepage = "https://github.com/NICTA/coordinate";
+ version = "0.2";
+ sha256 = "1sph59d8008amhb4pi4gk8ymwjf2r6iy378phriqb42zy01bn0vb";
+ libraryHaskellDepends = [ base lens papa transformers ];
+ testHaskellDepends = [ base HUnit lens ];
+ homepage = "https://github.com/qfpl/coordinate";
description = "A representation of latitude and longitude";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -52345,8 +52967,8 @@ self: {
}:
mkDerivation {
pname = "corenlp-parser";
- version = "0.3.0.1";
- sha256 = "14xjfcnk58mwgxywdlzdl53xdzf91scx0hmx8arhxkn6vr04akwp";
+ version = "0.4.0.0";
+ sha256 = "0li43xmig52npq9dc1nm5sv876nw7n1g4r3djy5saw3h38sz1zdz";
libraryHaskellDepends = [
aeson async base cryptonite data-default directory process
raw-strings-qq rocksdb-haskell safe-exceptions split store
@@ -52568,10 +53190,8 @@ self: {
}:
mkDerivation {
pname = "country";
- version = "0.1.4";
- sha256 = "027i4ncnsyii41wfndn369xmlbkp4vvcrx7m7cdb07n4wlcpz0bl";
- revision = "1";
- editedCabalFile = "0sjzrld5qa2wn66zgf25w5h41179mcmsjvndn1j8kl20bfsiwhvh";
+ version = "0.1.5";
+ sha256 = "0shp4kq8bibfwrjldz8akghgm3n2lq00dybxnq4grmbl5phj3a9s";
libraryHaskellDepends = [
aeson attoparsec base bytestring ghc-prim hashable primitive
scientific text unordered-containers
@@ -53559,8 +54179,8 @@ self: {
pname = "criterion";
version = "1.3.0.0";
sha256 = "0csgk6njr6a3i895d10pajf7z4r9hx8aj2r0c3rj5li6vrm37f8q";
- revision = "2";
- editedCabalFile = "1yyv34f9yk8d67x18l1al5csd383ypmdwnz73gq0agmw4k2f9c54";
+ revision = "3";
+ editedCabalFile = "0bdz45r1mf6ydcs7l333xn7da9p583g9y7n3dzvnry4by0fkcqw6";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -53583,37 +54203,36 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "criterion_1_4_0_0" = callPackage
- ({ mkDerivation, aeson, ansi-wl-pprint, base, base-compat, binary
- , bytestring, cassava, code-page, containers, deepseq, directory
- , exceptions, filepath, Glob, HUnit, js-flot, js-jquery
- , microstache, mtl, mwc-random, optparse-applicative, parsec
- , QuickCheck, semigroups, statistics, tasty, tasty-hunit
- , tasty-quickcheck, text, time, transformers, transformers-compat
- , vector, vector-algorithms
+ "criterion_1_4_1_0" = callPackage
+ ({ mkDerivation, aeson, ansi-wl-pprint, base, base-compat
+ , base-compat-batteries, binary, bytestring, cassava, code-page
+ , containers, deepseq, directory, exceptions, filepath, Glob, HUnit
+ , js-flot, js-jquery, microstache, mtl, mwc-random
+ , optparse-applicative, parsec, QuickCheck, semigroups, statistics
+ , tasty, tasty-hunit, tasty-quickcheck, text, time, transformers
+ , transformers-compat, vector, vector-algorithms
}:
mkDerivation {
pname = "criterion";
- version = "1.4.0.0";
- sha256 = "0shsqq36z1q8ckic3nfb3rdbxhlb0faxl5d7ly5a4wlka4fcfrfc";
- revision = "1";
- editedCabalFile = "056p7d95ynrpsm5jr479r9xk7ksniqkz4bza0zdn9a8vmrx591qh";
+ version = "1.4.1.0";
+ sha256 = "0v429araqkcw3wwwi6fsp0g7g1hy3l47p061lcy7r4m7d9khd4y4";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- aeson ansi-wl-pprint base base-compat binary bytestring cassava
- code-page containers deepseq directory exceptions filepath Glob
- js-flot js-jquery microstache mtl mwc-random optparse-applicative
- parsec semigroups statistics text time transformers
- transformers-compat vector vector-algorithms
+ aeson ansi-wl-pprint base base-compat-batteries binary bytestring
+ cassava code-page containers deepseq directory exceptions filepath
+ Glob js-flot js-jquery microstache mtl mwc-random
+ optparse-applicative parsec semigroups statistics text time
+ transformers transformers-compat vector vector-algorithms
];
executableHaskellDepends = [
- base base-compat optparse-applicative semigroups
+ base base-compat-batteries optparse-applicative semigroups
];
testHaskellDepends = [
- aeson base base-compat bytestring deepseq directory HUnit
- QuickCheck statistics tasty tasty-hunit tasty-quickcheck vector
+ aeson base base-compat base-compat-batteries bytestring deepseq
+ directory HUnit QuickCheck statistics tasty tasty-hunit
+ tasty-quickcheck vector
];
homepage = "http://www.serpentine.com/criterion";
description = "Robust, reliable performance measurement and analysis";
@@ -54555,6 +55174,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) openssl;};
+ "cryptonite-openssl_0_7" = callPackage
+ ({ mkDerivation, base, basement, bytestring, cryptonite, memory
+ , openssl, tasty, tasty-hunit, tasty-kat, tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "cryptonite-openssl";
+ version = "0.7";
+ sha256 = "1xj41354dx24rfh6i7av7qamvin34z4g6m1hxw1fc9jg4q41qkly";
+ libraryHaskellDepends = [
+ base basement bytestring cryptonite memory
+ ];
+ librarySystemDepends = [ openssl ];
+ testHaskellDepends = [
+ base bytestring cryptonite tasty tasty-hunit tasty-kat
+ tasty-quickcheck
+ ];
+ homepage = "https://github.com/haskell-crypto/cryptonite-openssl";
+ description = "Crypto stuff using OpenSSL cryptographic library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) openssl;};
+
"cryptsy-api" = callPackage
({ mkDerivation, aeson, base, bytestring, deepseq, either
, http-client, http-client-tls, old-locale, pipes-attoparsec
@@ -55662,6 +56303,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "czipwith_1_0_1_0" = callPackage
+ ({ mkDerivation, base, template-haskell, transformers }:
+ mkDerivation {
+ pname = "czipwith";
+ version = "1.0.1.0";
+ sha256 = "0s1gz76789w5grm121fikgrxz1hjca6v6dwmds5zg63j6iir3f0p";
+ libraryHaskellDepends = [ base template-haskell ];
+ testHaskellDepends = [ base transformers ];
+ homepage = "https://github.com/lspitzner/czipwith/";
+ description = "CZipWith class and deriving via TH";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"d-bus" = callPackage
({ mkDerivation, async, attoparsec, base, binary, blaze-builder
, bytestring, conduit, conduit-extra, containers
@@ -55881,32 +56536,32 @@ self: {
"darcs" = callPackage
({ mkDerivation, array, async, attoparsec, base, base16-bytestring
- , binary, bytestring, cmdargs, containers, cryptohash, curl
+ , binary, bytestring, Cabal, cmdargs, containers, cryptohash, curl
, data-ordlist, directory, fgl, filepath, FindBin, graphviz
, hashable, haskeline, html, HTTP, HUnit, mmap, mtl, network
, network-uri, old-time, parsec, process, QuickCheck, random
- , regex-applicative, regex-compat-tdfa, sandi, shelly, split, tar
- , terminfo, test-framework, test-framework-hunit
- , test-framework-quickcheck2, text, time, transformers
- , transformers-compat, unix, unix-compat, utf8-string, vector
- , zip-archive, zlib
+ , regex-applicative, regex-compat-tdfa, sandi, shelly, split, stm
+ , tar, temporary, terminfo, test-framework, test-framework-hunit
+ , test-framework-quickcheck2, text, time, transformers, unix
+ , unix-compat, utf8-string, vector, zip-archive, zlib
}:
mkDerivation {
pname = "darcs";
- version = "2.12.5";
- sha256 = "0lrm0sal5pl453mkqn8b9fc9l7lwinc140iqihya9g17bk408nrm";
+ version = "2.14.0";
+ sha256 = "00r8g27sgwlw5r8gx89q99n2hawcacfz1mjj0nmh6ps8l610iyhr";
revision = "1";
- editedCabalFile = "0if3ww0xhi8k5c8a9yb687gjjdp2k4q2896qn7vgwwzg360slx8n";
+ editedCabalFile = "0kxvr0rv5936x460k5ydyy85lgjhmrlkrm60zhbqkqks304abs1h";
configureFlags = [ "-fforce-char8-encoding" "-flibrary" ];
isLibrary = true;
isExecutable = true;
+ setupHaskellDepends = [ base Cabal directory filepath process ];
libraryHaskellDepends = [
array async attoparsec base base16-bytestring binary bytestring
containers cryptohash data-ordlist directory fgl filepath graphviz
hashable haskeline html HTTP mmap mtl network network-uri old-time
- parsec process random regex-applicative regex-compat-tdfa sandi tar
- terminfo text time transformers transformers-compat unix
- unix-compat utf8-string vector zip-archive zlib
+ parsec process random regex-applicative regex-compat-tdfa sandi stm
+ tar temporary terminfo text time transformers unix unix-compat
+ utf8-string vector zip-archive zlib
];
librarySystemDepends = [ curl ];
executableHaskellDepends = [ base ];
@@ -55922,7 +56577,7 @@ self: {
'';
homepage = "http://darcs.net/";
description = "a distributed, interactive, smart revision control system";
- license = "GPL";
+ license = stdenv.lib.licenses.gpl2;
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) curl;};
@@ -57205,11 +57860,11 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "data-inttrie";
- version = "0.1.2";
- sha256 = "1y8xbwy1cdfrswlbr029hlyj3cbsfvayxh4kklsdzbrwgnnygnld";
+ version = "0.1.4";
+ sha256 = "0m5xww8zvsa0whxl89wndpbdz9p5n03q3h3a904nqrxh966psfkb";
libraryHaskellDepends = [ base ];
- homepage = "http://github.com/luqui/data-inttrie";
- description = "A lazy, infinite trie of integers";
+ homepage = "https://github.com/luqui/data-inttrie";
+ description = "A simple lazy, infinite trie from integers";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -58133,8 +58788,8 @@ self: {
}:
mkDerivation {
pname = "datarobot";
- version = "1.0.0";
- sha256 = "0ia74i013drj1mwgpq2dv2ayscs2z4hd7amcbzgxrp1b1j2mkhvj";
+ version = "1.0.1";
+ sha256 = "0arxjghmx50ci9hng6jmcm3jmx7c5k8vycn76d5paw6bjpd1n3mf";
libraryHaskellDepends = [
aeson base bytestring exceptions microlens network-uri safe
scientific string-conversions text unordered-containers vector wreq
@@ -58494,6 +59149,36 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "dbus_1_0_1" = callPackage
+ ({ mkDerivation, base, bytestring, cereal, containers, criterion
+ , deepseq, directory, extra, filepath, lens, libxml-sax, network
+ , parsec, process, QuickCheck, random, resourcet, split, tasty
+ , tasty-hunit, tasty-quickcheck, template-haskell, text, th-lift
+ , transformers, unix, vector, xml-types
+ }:
+ mkDerivation {
+ pname = "dbus";
+ version = "1.0.1";
+ sha256 = "1xg8wzs7xnh3455v3bbw9nd8inzr06n5939pzlq3nd4ajp3ba9d3";
+ libraryHaskellDepends = [
+ base bytestring cereal containers deepseq filepath lens libxml-sax
+ network parsec random split template-haskell text th-lift
+ transformers unix vector xml-types
+ ];
+ testHaskellDepends = [
+ base bytestring cereal containers directory extra filepath
+ libxml-sax network parsec process QuickCheck random resourcet tasty
+ tasty-hunit tasty-quickcheck text transformers unix vector
+ xml-types
+ ];
+ benchmarkHaskellDepends = [ base criterion ];
+ doCheck = false;
+ homepage = "https://github.com/rblaze/haskell-dbus#readme";
+ description = "A client library for the D-Bus IPC system";
+ license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"dbus-client" = callPackage
({ mkDerivation, base, containers, dbus-core, monads-tf, text
, transformers
@@ -58553,8 +59238,8 @@ self: {
}:
mkDerivation {
pname = "dbus-th";
- version = "0.1.2.0";
- sha256 = "02a9xv5kgn9x95aqbqb6kg2snra6nw55mq1jssv8cmr1wy50nmjq";
+ version = "0.1.3.0";
+ sha256 = "0b1ansjk6j7fzfi2s26dqvka7s85bflw7cl665vplm1sq0is2a0j";
libraryHaskellDepends = [
base containers dbus syb template-haskell text
];
@@ -58568,8 +59253,8 @@ self: {
}:
mkDerivation {
pname = "dbus-th-introspection";
- version = "0.1.0.2";
- sha256 = "1f6lv7jag9mbl8lkk9m4fnggfhbc301g142adk533sx6pwm6zn8x";
+ version = "0.1.2.0";
+ sha256 = "1d8hqra3sfpvscc3jpgcyllq3gaha24jj0n4y17y4wkhz437ni4f";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -58962,8 +59647,8 @@ self: {
}:
mkDerivation {
pname = "dde";
- version = "0.1.0";
- sha256 = "0kqcs758rdv186mqk17i66lmzzb34a4fd125669sh9gx255lbwya";
+ version = "0.2.0";
+ sha256 = "0c0mhyvipn7g1sfjgw8r0qybzcvxm3lzmr1ips2xbr8vv2mxmpm4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -59659,14 +60344,14 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "dejafu_1_4_0_0" = callPackage
+ "dejafu_1_5_0_0" = callPackage
({ mkDerivation, base, concurrency, containers, deepseq, exceptions
, leancheck, profunctors, random, transformers
}:
mkDerivation {
pname = "dejafu";
- version = "1.4.0.0";
- sha256 = "0ydfhgl8011lx5yp3nxhaz1418y7p1d1yfsj9fg1c59djsfrnd45";
+ version = "1.5.0.0";
+ sha256 = "1d32y12mzd9vfj2ww2cqn4jsvkc4yysnada6wijk5hm6ax7in822";
libraryHaskellDepends = [
base concurrency containers deepseq exceptions leancheck
profunctors random transformers
@@ -60032,6 +60717,19 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "deque_0_2_1" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "deque";
+ version = "0.2.1";
+ sha256 = "0r1jabz5jamm79nrbwjnajzzn77fkhqbjfnmkahg293761z1k781";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/nikita-volkov/deque";
+ description = "Double-ended queue";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"dequeue" = callPackage
({ mkDerivation, base, Cabal, cabal-test-quickcheck, QuickCheck
, safe
@@ -60591,6 +61289,7 @@ self: {
];
description = "Compile Dhall to Bash";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dhall-check" = callPackage
@@ -60713,6 +61412,7 @@ self: {
homepage = "https://github.com/ocharles/dhall-to-cabal";
description = "Compile Dhall expressions to Cabal files";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dhcp-lease-parser" = callPackage
@@ -63509,8 +64209,8 @@ self: {
pname = "dlist-nonempty";
version = "0.1.1";
sha256 = "0csbspdy43pzvasb5mhs5pz2f49ws78pi253cx7pp84wjx6ads20";
- revision = "1";
- editedCabalFile = "0dcqfyp38f792nzsv4977dcv4zr4xdrg780lz6bpf2hn7ikdglz9";
+ revision = "2";
+ editedCabalFile = "1968b6i0azv0bi3x6cw85ga89md1dh1wdmly3ivvvyb6i9mgwrn6";
libraryHaskellDepends = [
base base-compat deepseq dlist semigroupoids
];
@@ -64071,23 +64771,6 @@ self: {
}) {};
"doctest-driver-gen" = callPackage
- ({ mkDerivation, base, doctest }:
- mkDerivation {
- pname = "doctest-driver-gen";
- version = "0.2.0.1";
- sha256 = "0snlfs2cmra11q2xhgwrbjxazr5dhq84vx5n13491545iknhg0ld";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base doctest ];
- executableHaskellDepends = [ base ];
- testHaskellDepends = [ base doctest ];
- homepage = "https://github.com/Hexirp/doctest-driver-gen#readme";
- description = "Generate driver file for doctest's cabal integration";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "doctest-driver-gen_0_2_0_2" = callPackage
({ mkDerivation, base, doctest }:
mkDerivation {
pname = "doctest-driver-gen";
@@ -65274,14 +65957,32 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "dual-game" = callPackage
+ ({ mkDerivation, base, bifunctors, cereal, gloss, network
+ , websockets
+ }:
+ mkDerivation {
+ pname = "dual-game";
+ version = "0.1.0.1";
+ sha256 = "1w69d7d2xbpi82n41gq08qdmldh834ka7qwvy159vsac556wwcfg";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base bifunctors cereal gloss network websockets
+ ];
+ homepage = "https://github.com/fgaz/dual";
+ description = "Network multiplayer 2D shooting game";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"dual-tree" = callPackage
({ mkDerivation, base, monoid-extras, newtype-generics, QuickCheck
, semigroups, testing-feat
}:
mkDerivation {
pname = "dual-tree";
- version = "0.2.1";
- sha256 = "06azc2lwli9aw81a23g82yxiann2qjc3bk7cdyh9kiwimdyj8r94";
+ version = "0.2.1.1";
+ sha256 = "1wzv6rrhz2kz0v1wirgs28fdlr0r4nwxlix9xda4fphzpp922gzr";
libraryHaskellDepends = [
base monoid-extras newtype-generics semigroups
];
@@ -66112,8 +66813,8 @@ self: {
}:
mkDerivation {
pname = "easytest";
- version = "0.1.1";
- sha256 = "11pbc26s908vms9ldsm0wfa171g79b24kg9knaip0v7vdspcj74v";
+ version = "0.2";
+ sha256 = "1sd9w5p6z9mmvxid6svmnh7h43r32mrcqilb8k7kiy36ln3n8j0b";
libraryHaskellDepends = [
async base call-stack containers mtl random stm text transformers
];
@@ -68935,6 +69636,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "error-context" = callPackage
+ ({ mkDerivation, base, exceptions, monad-logger, mtl, resourcet
+ , safe-exceptions, tasty, tasty-hunit, text, unliftio-core
+ }:
+ mkDerivation {
+ pname = "error-context";
+ version = "0.1.2.0";
+ sha256 = "0p07lvwa7rvrrlsyx3qjnh5q8z4p0r9nspgi03qwmi8vjkhy0pr8";
+ libraryHaskellDepends = [
+ base exceptions monad-logger mtl resourcet safe-exceptions text
+ unliftio-core
+ ];
+ testHaskellDepends = [
+ base exceptions monad-logger mtl resourcet safe-exceptions tasty
+ tasty-hunit text unliftio-core
+ ];
+ homepage = "https://github.com/mtesseract/error-context#readme";
+ description = "Provides API for enriching errors with contexts";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"error-continuations" = callPackage
({ mkDerivation, base, either, mtl, transformers }:
mkDerivation {
@@ -69176,6 +69898,32 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "escoger" = callPackage
+ ({ mkDerivation, base, bytestring, criterion, HUnit, mtl
+ , test-framework, test-framework-hunit, unix, vector
+ , vector-algorithms, vty
+ }:
+ mkDerivation {
+ pname = "escoger";
+ version = "0.1.0.0";
+ sha256 = "0xcs1wg5d6dphnx255pcvvcszkpib0v8gy79w25grrrda5gyplvx";
+ isLibrary = false;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring mtl unix vector vector-algorithms vty
+ ];
+ executableHaskellDepends = [ base bytestring mtl unix vector vty ];
+ testHaskellDepends = [
+ base HUnit test-framework test-framework-hunit vector
+ ];
+ benchmarkHaskellDepends = [
+ base bytestring criterion unix vector vty
+ ];
+ doHaddock = false;
+ description = "Terminal fuzzy selector";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"esotericbot" = callPackage
({ mkDerivation, attoparsec, base, bytestring, containers
, directory, fgl, mtl, network, stm, stream-fusion, tuple, unix
@@ -69290,23 +70038,18 @@ self: {
}) {};
"etc" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, directory
- , exceptions, hashable, protolude, tasty, tasty-hunit, tasty-rerun
- , text, unordered-containers, vector
+ ({ mkDerivation, aeson, base, hashable, rio, tasty, tasty-hunit
+ , text, typed-process, unliftio
}:
mkDerivation {
pname = "etc";
- version = "0.2.0.0";
- sha256 = "16l5ap8ag2l3ks6pjwr49wk4njgap44kbxsqb69yr9lr81wrj9fv";
+ version = "0.3.1.0";
+ sha256 = "0l938jhlx1jgb46b9ykdc741r0v7wkklrc1ga5v81r3b52civb1c";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- aeson base bytestring containers directory exceptions hashable
- protolude text unordered-containers vector
- ];
- testHaskellDepends = [
- aeson base bytestring containers protolude tasty tasty-hunit
- tasty-rerun text unordered-containers vector
+ aeson base hashable rio text typed-process unliftio
];
+ testHaskellDepends = [ aeson base rio tasty tasty-hunit ];
homepage = "https://github.com/roman/Haskell-etc";
description = "Declarative configuration spec for Haskell projects";
license = stdenv.lib.licenses.mit;
@@ -69729,6 +70472,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "eve-cli" = callPackage
+ ({ mkDerivation, base, bytestring, eve, lens, mtl, text, vty }:
+ mkDerivation {
+ pname = "eve-cli";
+ version = "0.2.0.0";
+ sha256 = "0l9c7mpmw7i9kgmirnkb84q6lfw0ry5z5j2049sv47klczdv285a";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base bytestring eve lens mtl text vty ];
+ executableHaskellDepends = [
+ base bytestring eve lens mtl text vty
+ ];
+ testHaskellDepends = [ base bytestring eve lens mtl text vty ];
+ homepage = "https://github.com/ChrisPenner/eve-cli#readme";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"event" = callPackage
({ mkDerivation, base, containers, semigroups, transformers }:
mkDerivation {
@@ -70351,8 +71111,8 @@ self: {
}:
mkDerivation {
pname = "exception-transformers";
- version = "0.4.0.5";
- sha256 = "12q8c64kg2ksz90ld32m6n811c54syhwihnj2fd7blf2qsmalk2n";
+ version = "0.4.0.6";
+ sha256 = "0abxwkq28wasy06njhaibf8cki9hifk5rjck6r3izbnswjcdn65m";
libraryHaskellDepends = [
base stm transformers transformers-compat
];
@@ -71153,6 +71913,30 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "extensible-effects_2_5_2_0" = callPackage
+ ({ mkDerivation, base, criterion, HUnit, monad-control, mtl
+ , QuickCheck, silently, test-framework, test-framework-hunit
+ , test-framework-quickcheck2, test-framework-th, transformers-base
+ }:
+ mkDerivation {
+ pname = "extensible-effects";
+ version = "2.5.2.0";
+ sha256 = "12rj2b1zn3lqk5anv01lf95mmadazripa6731jf3m2m5di00i4sc";
+ libraryHaskellDepends = [ base monad-control transformers-base ];
+ testHaskellDepends = [
+ base HUnit monad-control QuickCheck silently test-framework
+ test-framework-hunit test-framework-quickcheck2 test-framework-th
+ ];
+ benchmarkHaskellDepends = [
+ base criterion HUnit mtl test-framework test-framework-hunit
+ test-framework-quickcheck2 test-framework-th
+ ];
+ homepage = "https://github.com/suhailshergill/extensible-effects";
+ description = "An Alternative to Monad Transformers";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"extensible-exceptions" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -71627,19 +72411,23 @@ self: {
}) {};
"fast-arithmetic" = callPackage
- ({ mkDerivation, arithmoi, ats-pkg, base, Cabal, combinat
+ ({ mkDerivation, arithmoi, ats-pkg, base, Cabal, combinat-compat
, composition-prelude, criterion, gmpint, hspec, numbertheory
, QuickCheck
}:
mkDerivation {
pname = "fast-arithmetic";
- version = "0.3.3.3";
- sha256 = "1wm4s2xx3r3bjrkby4dddkc274pqvaa3q94j14pj8hayja6hd6ci";
+ version = "0.3.3.6";
+ sha256 = "1crs7ymdvizb0s0i3didi429b3wym01iinm7ryy3z6i198ls1pga";
setupHaskellDepends = [ ats-pkg base Cabal ];
libraryHaskellDepends = [ base composition-prelude gmpint ];
librarySystemDepends = [ numbertheory ];
- testHaskellDepends = [ arithmoi base combinat hspec QuickCheck ];
- benchmarkHaskellDepends = [ arithmoi base combinat criterion ];
+ testHaskellDepends = [
+ arithmoi base combinat-compat hspec QuickCheck
+ ];
+ benchmarkHaskellDepends = [
+ arithmoi base combinat-compat criterion
+ ];
homepage = "https://github.com/vmchale/fast-arithmetic#readme";
description = "Fast functions on integers";
license = stdenv.lib.licenses.bsd3;
@@ -71984,6 +72772,8 @@ self: {
pname = "fay";
version = "0.24.0.0";
sha256 = "1my71a3cmd637ch5jwsdpyvfx6vsi2vnvshbrwmcx9ya1xm6x7z2";
+ revision = "1";
+ editedCabalFile = "1bx1dyxir8h0c1qybkfdra36rmdhk7gpgz071v9spl9lplqvpw9s";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -72177,6 +72967,37 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "fb_1_2_1" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, base16-bytestring
+ , base64-bytestring, bytestring, cereal, conduit, conduit-extra
+ , containers, crypto-api, cryptohash, cryptohash-cryptoapi
+ , data-default, hspec, http-client, http-conduit, http-types, HUnit
+ , monad-logger, old-locale, QuickCheck, resourcet, text, time
+ , transformers, transformers-base, unliftio, unliftio-core
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "fb";
+ version = "1.2.1";
+ sha256 = "05ax0pd9j6c64n48r9q03k5pg2axkmv11cz6azjg7k72cfkp1mm9";
+ libraryHaskellDepends = [
+ aeson attoparsec base base16-bytestring base64-bytestring
+ bytestring cereal conduit conduit-extra crypto-api cryptohash
+ cryptohash-cryptoapi data-default http-client http-conduit
+ http-types monad-logger old-locale resourcet text time transformers
+ transformers-base unliftio unliftio-core unordered-containers
+ ];
+ testHaskellDepends = [
+ aeson base bytestring conduit containers data-default hspec
+ http-conduit HUnit QuickCheck resourcet text time transformers
+ unliftio
+ ];
+ homepage = "https://github.com/psibi/fb";
+ description = "Bindings to Facebook's API";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"fb-persistent" = callPackage
({ mkDerivation, base, cereal, fb, persistent, text, time }:
mkDerivation {
@@ -72499,8 +73320,8 @@ self: {
pname = "feed";
version = "1.0.0.0";
sha256 = "05rgg7x1984mgfhkmz792xj8lhwjgznixhygzr8blf517lns2nck";
- revision = "2";
- editedCabalFile = "1xrx0r63qr14vxqrsw9xmwnhna3p4gqngv46ysyv2r49raq6bz3q";
+ revision = "3";
+ editedCabalFile = "1v1kx8s1fgw0wkqbpxq9q9ky1akvvpgim2rp1s7w8vmjnxm9lwbx";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base base-compat bytestring old-locale old-time safe text time
@@ -73178,6 +73999,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "file-embed-lzma" = callPackage
+ ({ mkDerivation, base, base-compat, bytestring, directory, filepath
+ , lzma, template-haskell, text, th-lift-instances, transformers
+ }:
+ mkDerivation {
+ pname = "file-embed-lzma";
+ version = "0";
+ sha256 = "0xqcgx4ysyjqrygnfabs169y4w986kwzvsaqh64h7x3wfi7z8v78";
+ revision = "1";
+ editedCabalFile = "18q9dgfdsr7r5mlqzhhgbx0bp4bv2xkpcsrihl655pwaj1lz1v2s";
+ libraryHaskellDepends = [
+ base base-compat bytestring directory filepath lzma
+ template-haskell text th-lift-instances transformers
+ ];
+ testHaskellDepends = [ base bytestring ];
+ homepage = "https://github.com/phadej/file-embed-lzma";
+ description = "Use Template Haskell to embed (LZMA compressed) data";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"file-embed-poly" = callPackage
({ mkDerivation, base, bytestring, directory, file-embed, filepath
, hspec, template-haskell
@@ -73264,8 +74105,8 @@ self: {
}:
mkDerivation {
pname = "filecache";
- version = "0.3.1";
- sha256 = "199npfbnnbf01ygwj559ikz51bfz23pggnvgdmj2azscbd80mbq7";
+ version = "0.3.2";
+ sha256 = "1ddpji3293hrhw7rgl7b41prhffjsb7rgf5x2ijjbiblnzwazr42";
libraryHaskellDepends = [
base containers directory exceptions filepath fsnotify mtl stm
strict-base-types time
@@ -73676,8 +74517,8 @@ self: {
}:
mkDerivation {
pname = "fingertree";
- version = "0.1.3.1";
- sha256 = "08wqzrjdndd7svkil1wr964w4d7zay04nlg7dyzw7wm4d3d3ak4p";
+ version = "0.1.4.1";
+ sha256 = "192fyzv0pn1437wdpqg1l80rswkk4rw3w61r4bq7dhv354bdqy4p";
libraryHaskellDepends = [ base ];
testHaskellDepends = [
base HUnit QuickCheck test-framework test-framework-hunit
@@ -74962,8 +75803,8 @@ self: {
}:
mkDerivation {
pname = "fltkhs";
- version = "0.5.4.4";
- sha256 = "1bv7djak2ilirk7ajm8w6100bk6vx14znf3699blih72kyql6rgh";
+ version = "0.5.4.5";
+ sha256 = "17iqpnn0zgwifb937kllkfyz8qf37da90z8iyay348gy3siwjxic";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal directory filepath ];
@@ -75331,6 +76172,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "fold-debounce-conduit_0_2_0_1" = callPackage
+ ({ mkDerivation, base, conduit, fold-debounce, hspec, resourcet
+ , stm, transformers, transformers-base
+ }:
+ mkDerivation {
+ pname = "fold-debounce-conduit";
+ version = "0.2.0.1";
+ sha256 = "02shx123yd9g9y8n9aj6ai6yrlcb7zjqyhvw530kw68ailnl762z";
+ libraryHaskellDepends = [
+ base conduit fold-debounce resourcet stm transformers
+ transformers-base
+ ];
+ testHaskellDepends = [
+ base conduit hspec resourcet stm transformers
+ ];
+ homepage = "https://github.com/debug-ito/fold-debounce-conduit";
+ description = "Regulate input traffic from conduit Source with Control.FoldDebounce";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"foldl" = callPackage
({ mkDerivation, base, bytestring, comonad, containers
, contravariant, criterion, hashable, mwc-random, primitive
@@ -77725,22 +78587,25 @@ self: {
}) {};
"funcons-tools" = callPackage
- ({ mkDerivation, base, bv, containers, directory, mtl, multiset
- , parsec, split, text, vector
+ ({ mkDerivation, base, bv, containers, directory, funcons-values
+ , gll, mtl, multiset, random-strings, regex-applicative, split
+ , text, TypeCompose, vector
}:
mkDerivation {
pname = "funcons-tools";
- version = "0.1.0.0";
- sha256 = "1vwnznj92cm2g1m2xlvj8b5qzaspl3zrygr5z7b8593qylm6bwlr";
- revision = "2";
- editedCabalFile = "0530f406ykmb4xxmh7knmaxgcpym7n2wl6d2ylvrn3azqfdsvsgy";
+ version = "0.2.0.1";
+ sha256 = "1a27xhzakvrc29kli293ivkzmqfma71s942a9bsyvss15g1881fn";
+ revision = "1";
+ editedCabalFile = "1lfqgrrc814j0zyx2z8v0nx367bgifr93gb86dd4hshz2vvq5b49";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base bv containers directory mtl multiset parsec split text vector
+ base bv containers directory funcons-values gll mtl multiset
+ random-strings regex-applicative split text TypeCompose vector
];
executableHaskellDepends = [
- base bv containers directory mtl multiset parsec split text vector
+ base bv containers directory funcons-values gll mtl multiset
+ random-strings regex-applicative split text TypeCompose vector
];
homepage = "http://plancomps.org";
description = "A modular interpreter for executing funcons";
@@ -77748,6 +78613,22 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "funcons-values" = callPackage
+ ({ mkDerivation, base, bv, containers, multiset, random-strings
+ , text, vector
+ }:
+ mkDerivation {
+ pname = "funcons-values";
+ version = "0.1.0.2";
+ sha256 = "0pywpqnjhwny1l1kz6hn135rbmgdglzpvfvq4ffjllzdj2w9ciy2";
+ libraryHaskellDepends = [
+ base bv containers multiset random-strings text vector
+ ];
+ homepage = "http://plancomps.org";
+ description = "Library providing values and operations on values";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"function-combine" = callPackage
({ mkDerivation, base, data-type }:
mkDerivation {
@@ -77895,13 +78776,13 @@ self: {
}) {};
"functor-utils" = callPackage
- ({ mkDerivation, base, ghc-prim }:
+ ({ mkDerivation, base, ghc-prim, lens }:
mkDerivation {
pname = "functor-utils";
- version = "1.1";
- sha256 = "1finmjwpw4sjzwifjmcpb90wmy7abhdnrhz2p5s7fxw68vccnm50";
- libraryHaskellDepends = [ base ghc-prim ];
- homepage = "https://github.com/wdanilo/functor-utils";
+ version = "1.17.1";
+ sha256 = "1ixssxdhw94l1kjxd5k4gvq8wz4b9d0vww5mg2al9q3vzb7d4pld";
+ libraryHaskellDepends = [ base ghc-prim lens ];
+ homepage = "https://github.com/luna/functor-utils";
description = "Collection of functor utilities, providing handy operators, like generalization of (.).";
license = stdenv.lib.licenses.asl20;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -79095,8 +79976,8 @@ self: {
pname = "generic-aeson";
version = "0.2.0.9";
sha256 = "1jw4rmfsky8r8551ddjy0i3va3dj37flzf23gxniyam7zy8kzh9l";
- revision = "2";
- editedCabalFile = "05hn4bjqrx1fimlwwbv9358806m4q1dkbfw886lpkkhbflr7jmn9";
+ revision = "3";
+ editedCabalFile = "0dlxl7p1nf8d4yh6r5yfdnrsn4wb5wl7bj9ymln744b498frlfln";
libraryHaskellDepends = [
aeson attoparsec base generic-deriving mtl tagged text
unordered-containers vector
@@ -79144,6 +80025,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "generic-data" = callPackage
+ ({ mkDerivation, base, contravariant, show-combinators, tasty
+ , tasty-hunit
+ }:
+ mkDerivation {
+ pname = "generic-data";
+ version = "0.1.0.0";
+ sha256 = "1fc2q8wzs67ww0dy00wsyyqnhb5igrpqsvi1hwxxsq5z00icvk6z";
+ libraryHaskellDepends = [ base contravariant show-combinators ];
+ testHaskellDepends = [ base tasty tasty-hunit ];
+ homepage = "https://github.com/Lysxia/generic-data#readme";
+ description = "Utilities for GHC.Generics";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"generic-deepseq" = callPackage
({ mkDerivation, base, ghc-prim }:
mkDerivation {
@@ -79223,6 +80119,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "generic-lens_1_0_0_1" = callPackage
+ ({ mkDerivation, base, criterion, deepseq, doctest, HUnit
+ , inspection-testing, lens, profunctors, QuickCheck, tagged
+ }:
+ mkDerivation {
+ pname = "generic-lens";
+ version = "1.0.0.1";
+ sha256 = "0j83ynggqfaxp9g36lkjl9af57qixid9j1x1ljglny1zxqkgm888";
+ libraryHaskellDepends = [ base profunctors tagged ];
+ testHaskellDepends = [
+ base doctest HUnit inspection-testing lens profunctors
+ ];
+ benchmarkHaskellDepends = [
+ base criterion deepseq lens QuickCheck
+ ];
+ homepage = "https://github.com/kcsongor/generic-lens";
+ description = "Generically derive traversals, lenses and prisms";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"generic-lens-labels" = callPackage
({ mkDerivation, base, generic-lens }:
mkDerivation {
@@ -79387,8 +80304,8 @@ self: {
pname = "generic-xmlpickler";
version = "0.1.0.5";
sha256 = "1brnlgnbys811qy64aps2j03ks2p0rkihaqzaszfwl80cpsn05ym";
- revision = "6";
- editedCabalFile = "0jc2rnh8kyzay8ny59ahqb9q6vmp7si4aps1a42la79735078x51";
+ revision = "7";
+ editedCabalFile = "0v4sqm0m8vr2i6hinx0mpax3mz73mvf21bdbga0vdgx7dac2nvkb";
libraryHaskellDepends = [ base generic-deriving hxt text ];
testHaskellDepends = [
base hxt hxt-pickle-utils tasty tasty-hunit tasty-th
@@ -79418,22 +80335,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "generics-eot_0_3" = callPackage
+ "generics-eot_0_4" = callPackage
({ mkDerivation, base, directory, doctest, filepath, hspec
- , hspec-discover, interpolate, markdown-unlit, mockery, QuickCheck
- , shake
+ , interpolate, markdown-unlit, mockery, QuickCheck, shake, silently
}:
mkDerivation {
pname = "generics-eot";
- version = "0.3";
- sha256 = "1r0qh27jpika9wfxk0i6kywsclrdqhaphl1qw26vfzka4dsfbjrb";
- libraryHaskellDepends = [ base markdown-unlit ];
+ version = "0.4";
+ sha256 = "16yfzv9aqyizm57r5m5ddwdnlh05fvlrxjn6m3vqz33kvy3drgjs";
+ libraryHaskellDepends = [ base ];
testHaskellDepends = [
base directory doctest filepath hspec interpolate markdown-unlit
- mockery QuickCheck shake
+ mockery QuickCheck shake silently
];
- testToolDepends = [ hspec-discover ];
- homepage = "https://github.com/soenkehahn/generics-eot#readme";
+ homepage = "https://generics-eot.readthedocs.io/";
description = "A library for generic programming that aims to be easy to understand";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -80409,20 +81324,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "ghc_8_2_1" = callPackage
+ "ghc_8_4_1" = callPackage
({ mkDerivation, alex, array, base, binary, bytestring, containers
, deepseq, directory, filepath, ghc-boot, ghc-boot-th, ghci, happy
- , hoopl, hpc, process, template-haskell, terminfo, time
- , transformers, unix
+ , hpc, process, template-haskell, terminfo, time, transformers
+ , unix
}:
mkDerivation {
pname = "ghc";
- version = "8.2.1";
- sha256 = "0b87bj9n2zsi0v9s5ssf5b9c4y4lji7jbxp9j8s93hb95zlmzq17";
+ version = "8.4.1";
+ sha256 = "1axvba6vd13bf9z45jffv05r3jy5n5pxly59r8s5pxh369188076";
libraryHaskellDepends = [
array base binary bytestring containers deepseq directory filepath
- ghc-boot ghc-boot-th ghci hoopl hpc process template-haskell
- terminfo time transformers unix
+ ghc-boot ghc-boot-th ghci hpc process template-haskell terminfo
+ time transformers unix
];
libraryToolDepends = [ alex happy ];
homepage = "http://www.haskell.org/ghc/";
@@ -81025,12 +81940,12 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "ghc-prim_0_5_1_1" = callPackage
+ "ghc-prim_0_5_2_0" = callPackage
({ mkDerivation, rts }:
mkDerivation {
pname = "ghc-prim";
- version = "0.5.1.1";
- sha256 = "1dkl0l891min86jpndcah8dx7i3ssnaj6yf2ghxplp8619bmqhb2";
+ version = "0.5.2.0";
+ sha256 = "1ccvzkw3v4xlj7g126wwlc5rvd480hbv1pcq2rfb85k77rzi6bjr";
libraryHaskellDepends = [ rts ];
description = "GHC primitives";
license = stdenv.lib.licenses.bsd3;
@@ -82001,8 +82916,8 @@ self: {
}:
mkDerivation {
pname = "gi-gio";
- version = "2.0.16";
- sha256 = "1xm13f4whvi08bwq2n6axkz1sirhqpsxpnfq9c8px0j9izy9qnpb";
+ version = "2.0.18";
+ sha256 = "0h7liqxf63wmhjzgbjshv7pa4fx743jpvkphn5yyjkc0bnfcvsqk";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject haskell-gi
@@ -82224,8 +83139,8 @@ self: {
}:
mkDerivation {
pname = "gi-gtk";
- version = "3.0.21";
- sha256 = "01ivj9hs5jys1p4znfgrwxmd2848nhs73cscfww733rgdpwdlfw6";
+ version = "3.0.22";
+ sha256 = "017nnypxsrxsqar7pmbf0kwvbkpdnp3y7dvn8s82b09qiymxa0rz";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
@@ -83512,8 +84427,8 @@ self: {
}:
mkDerivation {
pname = "githud";
- version = "2.0.1";
- sha256 = "0qmc51dpsmil72xvv3g7mylr39ignrm8az6jv92b767s8ijqk5lh";
+ version = "2.0.2";
+ sha256 = "0nhik30c7xzn3aqj8d8b8rk05viqmhl8q9ymswxxn9ws2nkm7rk8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base mtl parsec process text unix ];
@@ -83524,6 +84439,7 @@ self: {
homepage = "http://github.com/gbataille/gitHUD#readme";
description = "More efficient replacement to the great git-radar";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gitignore" = callPackage
@@ -84246,8 +85162,8 @@ self: {
}:
mkDerivation {
pname = "gll";
- version = "0.4.0.4";
- sha256 = "01qnvynldllb4qdvg29r64qq17qb1fs8yg7jgyj3f8ajgyi5jn9q";
+ version = "0.4.0.5";
+ sha256 = "09z7i4h5zwgyh3gg5w0l6p0ch1lhzmsnbmk1yfbc9b21gbxna5js";
libraryHaskellDepends = [
array base containers pretty regex-applicative text TypeCompose
];
@@ -84429,6 +85345,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "gloss-accelerate_2_0_0_1" = callPackage
+ ({ mkDerivation, accelerate, base, gloss, gloss-rendering }:
+ mkDerivation {
+ pname = "gloss-accelerate";
+ version = "2.0.0.1";
+ sha256 = "106z8kax0m3hzk0381l8m7gxdapl3wf0fdr1ljwb5fgcjc00pac2";
+ libraryHaskellDepends = [ accelerate base gloss gloss-rendering ];
+ description = "Extras to interface Gloss and Accelerate";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"gloss-algorithms" = callPackage
({ mkDerivation, base, containers, ghc-prim, gloss }:
mkDerivation {
@@ -84579,8 +85507,8 @@ self: {
pname = "gloss-raster-accelerate";
version = "2.0.0.0";
sha256 = "1i0qx9wybr66i1x4n3p8ai2z6qx0k5lac422mhh4rvimcjx2bc9d";
- revision = "1";
- editedCabalFile = "07c56r31akmq7hq0cyw4lc4h5370laand231wjd5ffwk369x2prg";
+ revision = "2";
+ editedCabalFile = "0k0a562qa8khj39zpgp4sr8kh8h2q4krjjhbvpbsll4r83067ahj";
libraryHaskellDepends = [
accelerate base colour-accelerate gloss gloss-accelerate
];
@@ -86784,6 +87712,7 @@ self: {
homepage = "https://github.com/jxv/google-oauth2-easy#readme";
description = "Opininated use of Google Authentication for ease";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"google-oauth2-for-cli" = callPackage
@@ -89087,6 +90016,18 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "gtk-strut" = callPackage
+ ({ mkDerivation, base, gi-gdk, gi-gtk, text, transformers }:
+ mkDerivation {
+ pname = "gtk-strut";
+ version = "0.1.1.0";
+ sha256 = "1g88afi75a727s85v37n4mvqr5zp4849s2kc1zdx3pvc9a15i9pd";
+ libraryHaskellDepends = [ base gi-gdk gi-gtk text transformers ];
+ homepage = "https://github.com/IvanMalison/gtk-strut#readme";
+ description = "Libary for creating strut windows with gi-gtk";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"gtk-toggle-button-list" = callPackage
({ mkDerivation, base, gtk }:
mkDerivation {
@@ -89112,17 +90053,17 @@ self: {
}) {};
"gtk-traymanager" = callPackage
- ({ mkDerivation, base, glib, gtk, gtk2, x11 }:
+ ({ mkDerivation, base, glib, gtk3, x11 }:
mkDerivation {
pname = "gtk-traymanager";
- version = "0.1.6";
- sha256 = "0hind14k37823jsa9dg2r6bfj7d6y1m70xn8mcr610rhakazac6b";
- libraryHaskellDepends = [ base glib gtk ];
- libraryPkgconfigDepends = [ gtk2 x11 ];
+ version = "1.0.0";
+ sha256 = "1sg2f8pmnh2xrnra8dx46q9jfy32dlbrmk2hamam8g3i5qsvd0f7";
+ libraryHaskellDepends = [ base glib gtk3 ];
+ libraryPkgconfigDepends = [ x11 ];
homepage = "http://github.com/travitch/gtk-traymanager";
description = "A wrapper around the eggtraymanager library for Linux system trays";
license = stdenv.lib.licenses.lgpl21;
- }) {gtk2 = pkgs.gnome2.gtk; inherit (pkgs) x11;};
+ }) {inherit (pkgs) x11;};
"gtk2hs-buildtools" = callPackage
({ mkDerivation, alex, array, base, Cabal, containers, directory
@@ -90776,35 +91717,6 @@ self: {
}) {};
"hackage-security" = callPackage
- ({ mkDerivation, base, base16-bytestring, base64-bytestring
- , bytestring, Cabal, containers, cryptohash-sha256, directory
- , ed25519, filepath, ghc-prim, HUnit, mtl, network, network-uri
- , parsec, pretty, QuickCheck, tar, tasty, tasty-hunit
- , tasty-quickcheck, template-haskell, temporary, time, transformers
- , zlib
- }:
- mkDerivation {
- pname = "hackage-security";
- version = "0.5.2.2";
- sha256 = "0h9wag599x9ysdrgwa643phmpb1xiiwhyh2dix67fji6a5w86yjh";
- revision = "5";
- editedCabalFile = "0f1ml7dvwk4xrz3gsf133n67cbxzf0sz5frxfsx9i79x1yrg9zdj";
- libraryHaskellDepends = [
- base base16-bytestring base64-bytestring bytestring Cabal
- containers cryptohash-sha256 directory ed25519 filepath ghc-prim
- mtl network network-uri parsec pretty tar template-haskell time
- transformers zlib
- ];
- testHaskellDepends = [
- base bytestring Cabal containers HUnit network-uri QuickCheck tar
- tasty tasty-hunit tasty-quickcheck temporary time zlib
- ];
- homepage = "https://github.com/well-typed/hackage-security";
- description = "Hackage security library";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "hackage-security_0_5_3_0" = callPackage
({ mkDerivation, base, base16-bytestring, base64-bytestring
, bytestring, Cabal, containers, cryptohash-sha256, directory
, ed25519, filepath, ghc-prim, mtl, network, network-uri, parsec
@@ -90828,7 +91740,6 @@ self: {
homepage = "https://github.com/haskell/hackage-security";
description = "Hackage security library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hackage-security-HTTP" = callPackage
@@ -91286,6 +92197,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "haddock-library_1_4_3" = callPackage
+ ({ mkDerivation, base, base-compat, bytestring, deepseq, hspec
+ , QuickCheck, transformers
+ }:
+ mkDerivation {
+ pname = "haddock-library";
+ version = "1.4.3";
+ sha256 = "0ns4bpf6whmcfl0cm2gx2c73if416x4q3ac4l4qm8w84h0zpcr7p";
+ libraryHaskellDepends = [ base bytestring deepseq transformers ];
+ testHaskellDepends = [
+ base base-compat bytestring deepseq hspec QuickCheck transformers
+ ];
+ homepage = "http://www.haskell.org/haddock/";
+ description = "Library exposing some functionality of Haddock";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"haddock-library_1_4_4" = callPackage
({ mkDerivation, base, base-compat, bytestring, deepseq, hspec
, hspec-discover, QuickCheck, transformers
@@ -91845,50 +92774,6 @@ self: {
}) {};
"hakyll" = callPackage
- ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring
- , containers, cryptohash, data-default, deepseq, directory
- , file-embed, filepath, fsnotify, http-conduit, http-types
- , lrucache, mtl, network, network-uri, optparse-applicative, pandoc
- , pandoc-citeproc, parsec, process, QuickCheck, random, regex-base
- , regex-tdfa, resourcet, scientific, tagsoup, tasty, tasty-hunit
- , tasty-quickcheck, text, time, time-locale-compat
- , unordered-containers, utillinux, vector, wai, wai-app-static
- , warp, yaml
- }:
- mkDerivation {
- pname = "hakyll";
- version = "4.12.0.1";
- sha256 = "07alx008dg4q2ygwqf854r1nyizac0i3frkk23lzsfpzrbi784r0";
- isLibrary = true;
- isExecutable = true;
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- base binary blaze-html blaze-markup bytestring containers
- cryptohash data-default deepseq directory file-embed filepath
- fsnotify http-conduit http-types lrucache mtl network network-uri
- optparse-applicative pandoc pandoc-citeproc parsec process random
- regex-base regex-tdfa resourcet scientific tagsoup text time
- time-locale-compat unordered-containers vector wai wai-app-static
- warp yaml
- ];
- executableHaskellDepends = [ base directory filepath ];
- testHaskellDepends = [
- base binary blaze-html blaze-markup bytestring containers
- cryptohash data-default deepseq directory filepath fsnotify
- http-conduit http-types lrucache mtl network network-uri
- optparse-applicative pandoc pandoc-citeproc parsec process
- QuickCheck random regex-base regex-tdfa resourcet scientific
- tagsoup tasty tasty-hunit tasty-quickcheck text time
- time-locale-compat unordered-containers vector wai wai-app-static
- warp yaml
- ];
- testToolDepends = [ utillinux ];
- homepage = "http://jaspervdj.be/hakyll";
- description = "A static website compiler library";
- license = stdenv.lib.licenses.bsd3;
- }) {inherit (pkgs) utillinux;};
-
- "hakyll_4_12_1_0" = callPackage
({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring
, containers, cryptohash, data-default, deepseq, directory
, file-embed, filepath, fsnotify, http-conduit, http-types
@@ -91924,7 +92809,6 @@ self: {
homepage = "http://jaspervdj.be/hakyll";
description = "A static website compiler library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) utillinux;};
"hakyll-R" = callPackage
@@ -92088,8 +92972,8 @@ self: {
}:
mkDerivation {
pname = "hakyll-dir-list";
- version = "1.0.0.1";
- sha256 = "1xlb6dkkzska20gxjsazh5wipb4srpl9llg338znrj2491h37kqh";
+ version = "1.0.0.2";
+ sha256 = "0irkfnwbzhchvjsfzndb6i3w76gnwik9fq3fhi3qg3jc7l0cgi76";
libraryHaskellDepends = [
base containers data-default filepath hakyll
];
@@ -93039,8 +93923,8 @@ self: {
}:
mkDerivation {
pname = "happstack-authenticate";
- version = "2.3.4.10";
- sha256 = "057mihkspxp78q2gwgyqmqgiy5pzimkzvsj8rk9psmzci09l68qd";
+ version = "2.3.4.11";
+ sha256 = "1df9yybqzljfilpqgrz8qpa6iy5lfa3f3vmz0ip8qpvzgcxyhpd7";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
acid-state aeson authenticate base base64-bytestring boomerang
@@ -93414,22 +94298,22 @@ self: {
({ mkDerivation, base, base64-bytestring, blaze-html, bytestring
, containers, directory, exceptions, extensible-exceptions
, filepath, hslogger, html, HUnit, monad-control, mtl, network
- , network-uri, old-locale, parsec, process, sendfile, syb
- , system-filepath, template-haskell, text, threads, time
+ , network-uri, old-locale, parsec, process, semigroups, sendfile
+ , syb, system-filepath, template-haskell, text, threads, time
, time-compat, transformers, transformers-base, transformers-compat
, unix, utf8-string, xhtml, zlib
}:
mkDerivation {
pname = "happstack-server";
- version = "7.5.0.1";
- sha256 = "05cb20rj4qys7r5kkbvjnm4bknfzwanf4r4yk1jq7a71x2sgcxc0";
+ version = "7.5.1";
+ sha256 = "18cfkwffwfz410x9wjbciynbqs9srpzg60rappzx778lb33px1rj";
libraryHaskellDepends = [
base base64-bytestring blaze-html bytestring containers directory
exceptions extensible-exceptions filepath hslogger html
monad-control mtl network network-uri old-locale parsec process
- sendfile syb system-filepath template-haskell text threads time
- time-compat transformers transformers-base transformers-compat unix
- utf8-string xhtml zlib
+ semigroups sendfile syb system-filepath template-haskell text
+ threads time time-compat transformers transformers-base
+ transformers-compat unix utf8-string xhtml zlib
];
testHaskellDepends = [
base bytestring containers HUnit parsec zlib
@@ -93872,8 +94756,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "harp";
- version = "0.4.3";
- sha256 = "17d9isgwdvrmycbj3ddmmn0810kh4m8b8lmaz4qc8i51i5li8ja7";
+ version = "0.4.3.1";
+ sha256 = "0g4ig5s5rawlbq7zj1hkydnkw2s1gn7x0sdimd6j6kr5bynrdnhk";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/seereason/harp";
description = "HaRP allows pattern-matching with regular expressions";
@@ -93967,6 +94851,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hasbolt-extras" = callPackage
+ ({ mkDerivation, base, containers, hasbolt, lens
+ , neat-interpolation, template-haskell, text, th-lift-instances
+ }:
+ mkDerivation {
+ pname = "hasbolt-extras";
+ version = "0.0.0.4";
+ sha256 = "0dclanbd07knph3bxn5a3kyl9qkqcwhy00y5jnah9sxk4qqhjkk5";
+ libraryHaskellDepends = [
+ base containers hasbolt lens neat-interpolation template-haskell
+ text th-lift-instances
+ ];
+ homepage = "https://github.com/biocad/hasbolt-extras#readme";
+ description = "Extras for hasbolt library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"hascal" = callPackage
({ mkDerivation, base, data-default, split }:
mkDerivation {
@@ -97624,38 +98525,6 @@ self: {
}) {};
"hasmin" = callPackage
- ({ mkDerivation, attoparsec, base, bifunctors, bytestring
- , containers, criterion, directory, doctest, doctest-discover
- , gitrev, hopfli, hspec, hspec-attoparsec, matrix, mtl, numbers
- , optparse-applicative, parsers, QuickCheck, text
- }:
- mkDerivation {
- pname = "hasmin";
- version = "1.0.1";
- sha256 = "1h5ygl9qmzmbhqfb58hhm2zw850dqfkp4b8cp3bhsnangg4lgbjk";
- revision = "3";
- editedCabalFile = "0v410xlx9riyhzxbqi2fx8qnw9i3k9cc6q24f0cz2ympl86f4019";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- attoparsec base bifunctors containers matrix mtl numbers parsers
- text
- ];
- executableHaskellDepends = [
- base bytestring gitrev hopfli optparse-applicative text
- ];
- testHaskellDepends = [
- attoparsec base doctest doctest-discover hspec hspec-attoparsec mtl
- QuickCheck text
- ];
- benchmarkHaskellDepends = [ base criterion directory text ];
- homepage = "https://github.com/contivero/hasmin#readme";
- description = "CSS Minifier";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "hasmin_1_0_2" = callPackage
({ mkDerivation, attoparsec, base, bytestring, containers
, criterion, directory, doctest, doctest-discover, gitrev, hopfli
, hspec, hspec-attoparsec, matrix, mtl, numbers
@@ -99322,6 +100191,27 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "hdf5-lite" = callPackage
+ ({ mkDerivation, base, c2hs, containers, exceptions, ghc-prim, hdf5
+ , hspec, inline-c, primitive, QuickCheck, template-haskell, text
+ , vector
+ }:
+ mkDerivation {
+ pname = "hdf5-lite";
+ version = "0.1.1.0";
+ sha256 = "1c13qg0zx9g6zmhmy2snmbnkhmmgchm6qlh0vn4i3df2vdi4rb8v";
+ libraryHaskellDepends = [
+ base containers exceptions ghc-prim inline-c primitive
+ template-haskell text vector
+ ];
+ librarySystemDepends = [ hdf5 ];
+ libraryToolDepends = [ c2hs ];
+ testHaskellDepends = [ base hspec QuickCheck ];
+ homepage = "https://github.com/ocramz/hdf5-lite";
+ description = "High-level bindings to the HDF5 \"lite\" interface";
+ license = stdenv.lib.licenses.bsd3;
+ }) {inherit (pkgs) hdf5;};
+
"hdigest" = callPackage
({ mkDerivation, base, cgi, Crypto, network, parsec, random, time
}:
@@ -99624,8 +100514,8 @@ self: {
}:
mkDerivation {
pname = "heavy-logger";
- version = "0.3.1.0";
- sha256 = "0cmanxnahxgk52ffpni0zx4z22vdrh6r5my4llvsdd94bpfmxpi4";
+ version = "0.3.2.0";
+ sha256 = "1kx6l7ysniqjzzp7l74vjcfbi8qz5xqjqvisb49k18cnf22mikvv";
libraryHaskellDepends = [
attoparsec base bytestring containers data-default fast-logger
hsyslog lifted-base monad-control monad-logger mtl stm
@@ -99653,6 +100543,27 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "heavy-logger-instances" = callPackage
+ ({ mkDerivation, base, binary, exceptions, heavy-logger, hsyslog
+ , mtl, template-haskell, text, text-format-heavy
+ }:
+ mkDerivation {
+ pname = "heavy-logger-instances";
+ version = "0.2.0.0";
+ sha256 = "0flh5j79ijkvdwhjg1gn3qkhybzspvg1jh8nib18fgzmvcx8zckm";
+ libraryHaskellDepends = [
+ base binary exceptions heavy-logger hsyslog mtl template-haskell
+ text text-format-heavy
+ ];
+ testHaskellDepends = [
+ base binary exceptions heavy-logger hsyslog mtl template-haskell
+ text text-format-heavy
+ ];
+ homepage = "https://github.com/portnov/heavy-logger#readme";
+ description = "Orphan instances for data types in heavy-logger package";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"hebrew-time" = callPackage
({ mkDerivation, base, HUnit, QuickCheck, test-framework
, test-framework-hunit, test-framework-quickcheck2, time
@@ -99946,22 +100857,22 @@ self: {
"hedn" = callPackage
({ mkDerivation, attoparsec, base, base-compat, bytestring
- , containers, deepseq, hspec, HUnit, mtl, QuickCheck, scientific
- , stringsearch, template-haskell, text, time, time-locale-compat
- , utf8-string, vector
+ , containers, deepseq, hspec, hspec-contrib, HUnit, mtl, QuickCheck
+ , scientific, stringsearch, template-haskell, text, time
+ , time-locale-compat, utf8-string, vector
}:
mkDerivation {
pname = "hedn";
- version = "0.1.8.2";
- sha256 = "15f1zrp5cb1m2xhy974v8f67xg08yks6w43m3sbky4v5mbfy12ig";
+ version = "0.1.9.0";
+ sha256 = "077wf446x0rrac3bdzmyhpacb54smx02msdz45cra3yzn3n0rq7l";
libraryHaskellDepends = [
attoparsec base base-compat bytestring containers deepseq mtl
scientific stringsearch text time time-locale-compat utf8-string
vector
];
testHaskellDepends = [
- base bytestring containers hspec HUnit QuickCheck template-haskell
- text time vector
+ base bytestring containers hspec hspec-contrib HUnit QuickCheck
+ template-haskell text time vector
];
homepage = "https://bitbucket.org/dpwiz/hedn";
description = "EDN parsing and encoding";
@@ -100002,8 +100913,48 @@ self: {
pname = "heist";
version = "1.0.1.2";
sha256 = "0kpn5c3j7d42l12axd05hglhxqc4y7l0rz57lcqh3yznjl7mzv71";
- revision = "2";
- editedCabalFile = "0nyxym4jqkcxx0rim7vzfgr1hhmcgvgi3pann4192ahhsail8b2d";
+ revision = "3";
+ editedCabalFile = "0siqhy0svk9lfi8rx7lhjhjihrmjk6plvyjnhhyhvyakmycggqpc";
+ libraryHaskellDepends = [
+ aeson attoparsec base blaze-builder blaze-html bytestring
+ containers directory directory-tree dlist filepath hashable
+ lifted-base map-syntax monad-control mtl process random text time
+ transformers transformers-base unordered-containers vector xmlhtml
+ ];
+ testHaskellDepends = [
+ aeson attoparsec base bifunctors blaze-builder blaze-html
+ bytestring containers directory directory-tree dlist filepath
+ hashable HUnit lens lifted-base map-syntax monad-control mtl
+ process QuickCheck random test-framework test-framework-hunit
+ test-framework-quickcheck2 text time transformers transformers-base
+ unordered-containers vector xmlhtml
+ ];
+ benchmarkHaskellDepends = [
+ aeson attoparsec base blaze-builder blaze-html bytestring
+ containers criterion directory directory-tree dlist filepath
+ hashable HUnit lifted-base map-syntax monad-control mtl process
+ random statistics test-framework test-framework-hunit text time
+ transformers transformers-base unordered-containers vector xmlhtml
+ ];
+ homepage = "http://snapframework.com/";
+ description = "An Haskell template system supporting both HTML5 and XML";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "heist_1_0_1_3" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, bifunctors, blaze-builder
+ , blaze-html, bytestring, containers, criterion, directory
+ , directory-tree, dlist, filepath, hashable, HUnit, lens
+ , lifted-base, map-syntax, monad-control, mtl, process, QuickCheck
+ , random, statistics, test-framework, test-framework-hunit
+ , test-framework-quickcheck2, text, time, transformers
+ , transformers-base, unordered-containers, vector, xmlhtml
+ }:
+ mkDerivation {
+ pname = "heist";
+ version = "1.0.1.3";
+ sha256 = "0gy1s30sv9g1ybazh2md7scr1z2lqixl374h108zfp6f66iq450z";
libraryHaskellDepends = [
aeson attoparsec base blaze-builder blaze-html bytestring
containers directory directory-tree dlist filepath hashable
@@ -100617,14 +101568,14 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "herms_1_8_2_1" = callPackage
+ "herms_1_8_2_2" = callPackage
({ mkDerivation, ansi-terminal, base, brick, directory, microlens
, microlens-th, optparse-applicative, semigroups, split, vty
}:
mkDerivation {
pname = "herms";
- version = "1.8.2.1";
- sha256 = "0njp1jsz4clb6qyz00xrpw7av4109gx5wd4h180q794vi8xw6v4j";
+ version = "1.8.2.2";
+ sha256 = "0x6h1l9kikjqzyyxa23y9df6bdw529cr07g74qc2qbdbg39713zq";
isLibrary = false;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -102015,8 +102966,8 @@ self: {
}:
mkDerivation {
pname = "hierarchy";
- version = "0.3.1.2";
- sha256 = "07aldpvbsc2mjg7v2gi46il66qg0hk9ly7sw4vd7h0lkk5q3vb6h";
+ version = "0.3.1.4";
+ sha256 = "0bli7mv2d6lmxc89fysmkhb9kamhzs2rqx75rn4mbcw61il1cznq";
libraryHaskellDepends = [
base exceptions free mmorph monad-control mtl pipes semigroups
transformers transformers-base transformers-compat
@@ -102461,9 +103412,12 @@ self: {
pname = "hinduce-classifier-decisiontree";
version = "0.0.0.1";
sha256 = "1hdz4lbbpy2yc5j7chkagjvslsakmv3hbz2s7lpz0isfq7ls9idl";
+ revision = "1";
+ editedCabalFile = "16zh2f474ga3s1jzg58hv6q103gdxb3kl25g2cj0k14jxr4k15a2";
libraryHaskellDepends = [
base convertible hinduce-classifier hinduce-missingh layout
];
+ homepage = "https://github.com/roberth/hinduce-classifier-decisiontree#readme";
description = "Decision Tree Classifiers for hInduce";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -103351,26 +104305,25 @@ self: {
({ mkDerivation, ansi-terminal, base, base-compat, bytestring
, cmdargs, containers, criterion, csv, data-default, Decimal, Diff
, directory, file-embed, filepath, hashable, haskeline, here
- , hledger-lib, html, HUnit, megaparsec, mtl, mtl-compat, old-time
- , parsec, pretty-show, process, regex-tdfa, safe, shakespeare
- , split, tabular, temporary, terminfo, test-framework
+ , hledger-lib, html, HUnit, lucid, megaparsec, mtl, mtl-compat
+ , old-time, parsec, pretty-show, process, regex-tdfa, safe
+ , shakespeare, split, tabular, temporary, terminfo, test-framework
, test-framework-hunit, text, time, timeit, transformers
, unordered-containers, utf8-string, utility-ht, wizards
}:
mkDerivation {
pname = "hledger";
- version = "1.5";
- sha256 = "0mmgjahdlyka2mi1271kawrvkvnw8bgd3a08r8bykskj9b9f5181";
+ version = "1.9";
+ sha256 = "10lsh1rayzg7gri6b2mn01ncjziga5dzw0s5a91068brrrf4rymm";
isLibrary = true;
isExecutable = true;
- enableSeparateDataOutput = true;
libraryHaskellDepends = [
ansi-terminal base base-compat bytestring cmdargs containers csv
data-default Decimal Diff directory file-embed filepath hashable
- haskeline here hledger-lib HUnit megaparsec mtl mtl-compat old-time
- pretty-show process regex-tdfa safe shakespeare split tabular
- temporary terminfo text time transformers unordered-containers
- utf8-string utility-ht wizards
+ haskeline here hledger-lib HUnit lucid megaparsec mtl mtl-compat
+ old-time pretty-show process regex-tdfa safe shakespeare split
+ tabular temporary terminfo text time transformers
+ unordered-containers utf8-string utility-ht wizards
];
executableHaskellDepends = [
ansi-terminal base base-compat bytestring cmdargs containers csv
@@ -103407,11 +104360,10 @@ self: {
}:
mkDerivation {
pname = "hledger-api";
- version = "1.5";
- sha256 = "1wanah469danp0ljjxr258gdcd9lb175chz2jlq0y604wksaaj19";
+ version = "1.9";
+ sha256 = "00bqsz8hkmx78r9d692kihbpmldkpnsdmpljs3ivi14jfay4avim";
isLibrary = false;
isExecutable = true;
- enableSeparateDataOutput = true;
executableHaskellDepends = [
aeson base bytestring containers Decimal docopt either hledger
hledger-lib microlens microlens-platform safe servant-server
@@ -103466,8 +104418,10 @@ self: {
}:
mkDerivation {
pname = "hledger-iadd";
- version = "1.3.2";
- sha256 = "1n21i1hqqrzd3fdrq6cclf8bfginwl4bhjy16vxfh9ba644920xf";
+ version = "1.3.3";
+ sha256 = "0fm5y2qyrg661q7y23f5abg78rbwz4jqkvlar8ns8wz9qwbml0ix";
+ revision = "1";
+ editedCabalFile = "09dvjyl9irq0cc8k4nwxdkjvj13dwk1n5lij7ykka6a658y9gzp5";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -103529,17 +104483,16 @@ self: {
"hledger-lib" = callPackage
({ mkDerivation, ansi-terminal, array, base, base-compat
, blaze-markup, bytestring, cmdargs, containers, csv, data-default
- , Decimal, deepseq, directory, doctest, extra, filepath, Glob
- , hashtables, HUnit, megaparsec, mtl, mtl-compat, old-time, parsec
- , pretty-show, regex-tdfa, safe, split, test-framework
+ , Decimal, deepseq, directory, doctest, easytest, extra, filepath
+ , Glob, hashtables, HUnit, megaparsec, mtl, mtl-compat, old-time
+ , parsec, pretty-show, regex-tdfa, safe, split, test-framework
, test-framework-hunit, text, time, transformers, uglymemo
, utf8-string
}:
mkDerivation {
pname = "hledger-lib";
- version = "1.5.1";
- sha256 = "1bk2haj555fd6dws3zcp2a4slkhnl7wfjkx1x654a6nrdywlny3x";
- enableSeparateDataOutput = true;
+ version = "1.9";
+ sha256 = "0bm4vdzjxyxjmq000wng6hkx9kinbzw5hx7m0i1vjj500gcp0zq1";
libraryHaskellDepends = [
ansi-terminal array base base-compat blaze-markup bytestring
cmdargs containers csv data-default Decimal deepseq directory extra
@@ -103550,8 +104503,8 @@ self: {
testHaskellDepends = [
ansi-terminal array base base-compat blaze-markup bytestring
cmdargs containers csv data-default Decimal deepseq directory
- doctest extra filepath Glob hashtables HUnit megaparsec mtl
- mtl-compat old-time parsec pretty-show regex-tdfa safe split
+ doctest easytest extra filepath Glob hashtables HUnit megaparsec
+ mtl mtl-compat old-time parsec pretty-show regex-tdfa safe split
test-framework test-framework-hunit text time transformers uglymemo
utf8-string
];
@@ -103569,11 +104522,10 @@ self: {
}:
mkDerivation {
pname = "hledger-ui";
- version = "1.5";
- sha256 = "104vjyqpddwv8g9mfbaw174nl4lb41zwl14i8225m6v1gxvs5w6x";
+ version = "1.9";
+ sha256 = "0z5w69vxl8f1gdc8753ndnm4mcm5xw3abjfqidyrn3gsi800pxzd";
isLibrary = false;
isExecutable = true;
- enableSeparateDataOutput = true;
executableHaskellDepends = [
ansi-terminal async base base-compat brick cmdargs containers
data-default directory filepath fsnotify hledger hledger-lib HUnit
@@ -103616,11 +104568,10 @@ self: {
}:
mkDerivation {
pname = "hledger-web";
- version = "1.5.1";
- sha256 = "0g3jxxxav1v55dy50sclij05ypmapwbi43xxqz3y47xgvlfq9j23";
+ version = "1.9";
+ sha256 = "0xgd1akird9hpdrwml4dxc0vx3vzgacr5f6z19zy6q4bvnw1g58n";
isLibrary = true;
isExecutable = true;
- enableSeparateDataOutput = true;
libraryHaskellDepends = [
base base-compat blaze-html blaze-markup bytestring clientsession
cmdargs conduit-extra data-default directory filepath hjsmin
@@ -103971,32 +104922,8 @@ self: {
}:
mkDerivation {
pname = "hmatrix-backprop";
- version = "0.1.0.0";
- sha256 = "088spv7149788iwda2pyf6fc9i40vq4dfziqldgxjrnngxw9z8iv";
- libraryHaskellDepends = [
- ANum backprop base ghc-typelits-knownnat ghc-typelits-natnormalise
- hmatrix hmatrix-vector-sized microlens vector vector-sized
- ];
- testHaskellDepends = [
- backprop base finite-typelits hedgehog hmatrix hmatrix-vector-sized
- microlens microlens-platform vector-sized
- ];
- homepage = "https://github.com/mstksg/hmatrix-backprop#readme";
- description = "hmatrix operations lifted for backprop";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "hmatrix-backprop_0_1_1_0" = callPackage
- ({ mkDerivation, ANum, backprop, base, finite-typelits
- , ghc-typelits-knownnat, ghc-typelits-natnormalise, hedgehog
- , hmatrix, hmatrix-vector-sized, microlens, microlens-platform
- , vector, vector-sized
- }:
- mkDerivation {
- pname = "hmatrix-backprop";
- version = "0.1.1.0";
- sha256 = "1q9vgyy8qiilsw5qix1c6489jyjiqgz2yf1ad0n4qqwm32dfqcz2";
+ version = "0.1.2.0";
+ sha256 = "0lrdy5zxl8kvzfsgb4i5lqvdaqpnwixgjnjsvkm89fw6ms86bqac";
libraryHaskellDepends = [
ANum backprop base finite-typelits ghc-typelits-knownnat
ghc-typelits-natnormalise hmatrix hmatrix-vector-sized microlens
@@ -106559,19 +107486,19 @@ self: {
"hpath" = callPackage
({ mkDerivation, base, bytestring, deepseq, doctest, exceptions
- , hspec, HUnit, process, QuickCheck, simple-sendfile, unix
+ , hspec, HUnit, IfElse, process, QuickCheck, simple-sendfile, unix
, unix-bytestring, utf8-string, word8
}:
mkDerivation {
pname = "hpath";
- version = "0.8.0";
- sha256 = "19xbzgz51dwjm5w11j170bp8nv0b19qk6b8mx75c367n4xshgxc3";
+ version = "0.8.1";
+ sha256 = "0k1g27lnm2c61wva03gh5qrjpc26xh6alxkv8xx36miw06fz88hv";
libraryHaskellDepends = [
- base bytestring deepseq exceptions hspec simple-sendfile unix
- unix-bytestring utf8-string word8
+ base bytestring deepseq exceptions hspec IfElse simple-sendfile
+ unix unix-bytestring utf8-string word8
];
testHaskellDepends = [
- base bytestring doctest hspec HUnit process QuickCheck unix
+ base bytestring doctest hspec HUnit IfElse process QuickCheck unix
unix-bytestring utf8-string
];
description = "Support for well-typed paths";
@@ -106713,6 +107640,37 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hpio_0_9_0_6" = callPackage
+ ({ mkDerivation, async, base, bytestring, containers, directory
+ , doctest, exceptions, filepath, hspec, monad-control, monad-logger
+ , mtl, optparse-applicative, protolude, QuickCheck, text
+ , transformers, transformers-base, unix, unix-bytestring
+ }:
+ mkDerivation {
+ pname = "hpio";
+ version = "0.9.0.6";
+ sha256 = "07443kb6w1kwcg78j8jaffb5pblv9si7bvsmlg4dbm32m4wd66xx";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring containers directory exceptions filepath
+ monad-control monad-logger mtl protolude QuickCheck text
+ transformers transformers-base unix unix-bytestring
+ ];
+ executableHaskellDepends = [
+ async base exceptions mtl optparse-applicative protolude text
+ transformers
+ ];
+ testHaskellDepends = [
+ base containers directory doctest exceptions filepath hspec
+ protolude QuickCheck
+ ];
+ homepage = "https://github.com/quixoftic/hpio#readme";
+ description = "Monads for GPIO in Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hplayground" = callPackage
({ mkDerivation, base, containers, data-default, haste-compiler
, haste-perch, monads-tf, transformers
@@ -106773,8 +107731,8 @@ self: {
}:
mkDerivation {
pname = "hpp";
- version = "0.5.1";
- sha256 = "0bdx85k9c9cb5wkp91fi1sb0dahg6f4fknyddfh92wcywa485q9b";
+ version = "0.5.2";
+ sha256 = "1r1sas1rcxcra4q3vjw3qmiv0xc4j263m7p93y6bwm1fvpxlkvcc";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -107485,8 +108443,8 @@ self: {
}:
mkDerivation {
pname = "hs-java";
- version = "0.3.4";
- sha256 = "1qv6zwp9fws9s6502d9afwwbsh025xfpw4vsq8wgh2i0gvlskzq7";
+ version = "0.4.1";
+ sha256 = "1wpibfwxv9m1ldn9xqfrvjld18q8x31h06flvb4sbk26hqjrkr6f";
libraryHaskellDepends = [
array base binary binary-state bytestring containers
control-monad-exception data-binary-ieee754 data-default directory
@@ -107866,18 +108824,17 @@ self: {
"hs2ats" = callPackage
({ mkDerivation, ansi-wl-pprint, base, casing, composition-prelude
, cpphs, criterion, deepseq, haskell-src-exts, hspec
- , hspec-dirstream, language-ats, microlens, optparse-generic
- , system-filepath
+ , hspec-dirstream, language-ats, microlens, system-filepath
}:
mkDerivation {
pname = "hs2ats";
- version = "0.2.1.8";
- sha256 = "19hrl7qrhg9h2m5anzgxf6sfx7zr0a4r14mvjcn21cvj1jzs9j86";
+ version = "0.3.0.0";
+ sha256 = "1s92riisihcqim6hy4sa4z3dhk92dp2iyn32j0jl0qlpzdlbj4cp";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
ansi-wl-pprint base casing composition-prelude cpphs deepseq
- haskell-src-exts language-ats microlens optparse-generic
+ haskell-src-exts language-ats microlens
];
testHaskellDepends = [
base hspec hspec-dirstream system-filepath
@@ -107984,6 +108941,31 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {xenctrl = null;};
+ "hsaml2" = callPackage
+ ({ mkDerivation, asn1-encoding, asn1-types, base, base64-bytestring
+ , bytestring, cryptonite, data-default, http-types, HUnit, hxt
+ , hxt-charproperties, hxt-http, hxt-unicode, invertible
+ , invertible-hxt, lens, libxml2, memory, mtl, network-uri, process
+ , semigroups, template-haskell, time, x509, zlib
+ }:
+ mkDerivation {
+ pname = "hsaml2";
+ version = "0.1";
+ sha256 = "0mpw13cicx16zhsk7km2qsndah9cdmyylz4r5ank5cxj0rzmkjck";
+ libraryHaskellDepends = [
+ asn1-encoding asn1-types base base64-bytestring bytestring
+ cryptonite data-default http-types hxt hxt-charproperties
+ hxt-unicode invertible invertible-hxt lens memory mtl network-uri
+ process semigroups template-haskell time x509 zlib
+ ];
+ libraryPkgconfigDepends = [ libxml2 ];
+ testHaskellDepends = [
+ base bytestring HUnit hxt hxt-http network-uri semigroups time x509
+ ];
+ description = "OASIS Security Assertion Markup Language (SAML) V2.0";
+ license = stdenv.lib.licenses.asl20;
+ }) {inherit (pkgs) libxml2;};
+
"hsass" = callPackage
({ mkDerivation, base, bytestring, data-default-class, filepath
, hlibsass, hspec, hspec-discover, monad-loops, temporary
@@ -108008,21 +108990,22 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hsass_0_6_0" = callPackage
+ "hsass_0_7_0" = callPackage
({ mkDerivation, base, bytestring, data-default-class, filepath
- , hlibsass, hspec, hspec-discover, monad-loops, temporary
+ , hlibsass, hspec, hspec-discover, monad-loops, temporary, text
, transformers
}:
mkDerivation {
pname = "hsass";
- version = "0.6.0";
- sha256 = "14wvgcp9skdqag16fvbbkfmimpxbm9y2hh9g6alacxasan8qjn6j";
+ version = "0.7.0";
+ sha256 = "0mqsj1jm37pqc1vwjs5y5mh4sfhdyclp1vdr7q5nq2a3pa3qwxbk";
libraryHaskellDepends = [
base bytestring data-default-class filepath hlibsass monad-loops
transformers
];
testHaskellDepends = [
base bytestring data-default-class hspec hspec-discover temporary
+ text
];
homepage = "https://github.com/jakubfijalkowski/hsass";
description = "Integrating Sass into Haskell applications";
@@ -108610,6 +109593,20 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "hscharm" = callPackage
+ ({ mkDerivation, base, random, random-shuffle }:
+ mkDerivation {
+ pname = "hscharm";
+ version = "0.0.2";
+ sha256 = "17713j542kph74n8rvjrx847r19yk96dz80n04nl8w6vzabj5wng";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base ];
+ executableHaskellDepends = [ base random random-shuffle ];
+ description = "minimal ncurses-like library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"hsclock" = callPackage
({ mkDerivation, base, cairo, glib, gtk, old-time }:
mkDerivation {
@@ -110329,19 +111326,20 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "hspec-smallcheck_0_5_1" = callPackage
- ({ mkDerivation, base, call-stack, hspec, hspec-core, HUnit
- , QuickCheck, smallcheck
+ "hspec-smallcheck_0_5_2" = callPackage
+ ({ mkDerivation, base, base-orphans, call-stack, hspec, hspec-core
+ , HUnit, QuickCheck, smallcheck
}:
mkDerivation {
pname = "hspec-smallcheck";
- version = "0.5.1";
- sha256 = "11202q3ixqmmi3nx79l82jha5kdnpajvv1rd1s6rwh0560i8vj2v";
+ version = "0.5.2";
+ sha256 = "06c1ym793zkdwi4bxk5f4l7m1n1bg5jmnm0p68q2pa9rlhk1lc4s";
libraryHaskellDepends = [
base call-stack hspec-core HUnit smallcheck
];
testHaskellDepends = [
- base call-stack hspec hspec-core HUnit QuickCheck smallcheck
+ base base-orphans call-stack hspec hspec-core HUnit QuickCheck
+ smallcheck
];
homepage = "http://hspec.github.io/";
description = "SmallCheck support for the Hspec testing framework";
@@ -110688,8 +111686,8 @@ self: {
}:
mkDerivation {
pname = "hsqml";
- version = "0.3.5.0";
- sha256 = "1im7jm144vvyvrmkvblxwhbya55xsyxl8z10bs4anwxxjlf9sggc";
+ version = "0.3.5.1";
+ sha256 = "046inz0pa5s052w653pk2km9finj44c6y2yx7iqihn4h4vnqbim0";
setupHaskellDepends = [ base Cabal filepath template-haskell ];
libraryHaskellDepends = [
base containers filepath tagged text transformers
@@ -111285,8 +112283,8 @@ self: {
}:
mkDerivation {
pname = "hsx2hs";
- version = "0.14.1.2";
- sha256 = "06j2nc2yg8a8pp3c2ayxrm76fj2w2w5d2ilq91hvwwb1ikrklg5b";
+ version = "0.14.1.3";
+ sha256 = "15y7mk01cffc1xgsddkqqmi76npbi7mikgia6xa3xk4916kwsl91";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -111827,16 +112825,16 @@ self: {
"htoml-megaparsec" = callPackage
({ mkDerivation, aeson, base, bytestring, composition-prelude
, containers, criterion, deepseq, file-embed, hspec, megaparsec
- , mtl, old-locale, tasty, tasty-hspec, tasty-hunit, text, time
+ , mtl, tasty, tasty-hspec, tasty-hunit, text, time
, unordered-containers, vector
}:
mkDerivation {
pname = "htoml-megaparsec";
- version = "1.1.0.1";
- sha256 = "10bgm0dqi2hni9sxjri2i7imfwqfi750pwwrpbghdvyfxrivfcpy";
+ version = "1.1.0.3";
+ sha256 = "0bzja2n7hxj530d3pfh58zn29vapl341fy7x6ggvp5sfgsysg7ll";
libraryHaskellDepends = [
- base composition-prelude containers deepseq megaparsec mtl
- old-locale text time unordered-containers vector
+ base composition-prelude containers deepseq megaparsec mtl text
+ time unordered-containers vector
];
testHaskellDepends = [
aeson base bytestring containers file-embed hspec megaparsec tasty
@@ -112028,8 +113026,8 @@ self: {
}:
mkDerivation {
pname = "http-client";
- version = "0.5.11";
- sha256 = "0mjm2d77i82jazq0602v34m5xiyxc15680zx6ay9ncspr7rhd6wp";
+ version = "0.5.12";
+ sha256 = "1m4c4zyl8y3i8bzyrgqv9kcjqzj17rwnf49dvn6745bn8kiyq6v0";
libraryHaskellDepends = [
array base blaze-builder bytestring case-insensitive containers
cookie deepseq exceptions filepath ghc-prim http-types memory
@@ -113304,6 +114302,19 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "hunit-dejafu_1_2_0_0" = callPackage
+ ({ mkDerivation, base, dejafu, exceptions, HUnit }:
+ mkDerivation {
+ pname = "hunit-dejafu";
+ version = "1.2.0.0";
+ sha256 = "0djn982mlz4m58hxsghxxj34vsw78i57scxx9a1i3zk7qznmingv";
+ libraryHaskellDepends = [ base dejafu exceptions HUnit ];
+ homepage = "https://github.com/barrucadu/dejafu";
+ description = "Deja Fu support for the HUnit test framework";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hunit-gui" = callPackage
({ mkDerivation, base, cairo, gtk, haskell98, HUnit }:
mkDerivation {
@@ -113772,25 +114783,6 @@ self: {
}) {};
"hw-fingertree-strict" = callPackage
- ({ mkDerivation, base, hedgehog, hspec, HUnit, hw-hspec-hedgehog
- , QuickCheck, test-framework, test-framework-hunit
- , test-framework-quickcheck2
- }:
- mkDerivation {
- pname = "hw-fingertree-strict";
- version = "0.1.0.2";
- sha256 = "1ixkzdis47ic76g8cvwnigcr49256jbcpvqdrr6y8a7cvdvd41fv";
- libraryHaskellDepends = [ base ];
- testHaskellDepends = [
- base hedgehog hspec HUnit hw-hspec-hedgehog QuickCheck
- test-framework test-framework-hunit test-framework-quickcheck2
- ];
- homepage = "https://github.com/haskell-works/hw-fingertree-strict#readme";
- description = "Generic strict finger-tree structure";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "hw-fingertree-strict_0_1_0_3" = callPackage
({ mkDerivation, base, deepseq, hedgehog, hspec, HUnit
, hw-hspec-hedgehog, QuickCheck, test-framework
, test-framework-hunit, test-framework-quickcheck2
@@ -113807,7 +114799,6 @@ self: {
homepage = "https://github.com/haskell-works/hw-fingertree-strict#readme";
description = "Generic strict finger-tree structure";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hw-hedgehog" = callPackage
@@ -113836,6 +114827,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hw-hspec-hedgehog_0_1_0_3" = callPackage
+ ({ mkDerivation, base, call-stack, hedgehog, hspec, HUnit }:
+ mkDerivation {
+ pname = "hw-hspec-hedgehog";
+ version = "0.1.0.3";
+ sha256 = "0bnqvbh8jkpnannfgx1ghv5b4qvj37w1p29ap730s2bbfpsaldq2";
+ libraryHaskellDepends = [ base call-stack hedgehog hspec HUnit ];
+ testHaskellDepends = [ base hedgehog hspec ];
+ homepage = "https://github.com/haskell-works/hw-hspec-hedgehog#readme";
+ description = "Interoperability between hspec and hedgehog";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hw-int" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -113888,6 +114893,7 @@ self: {
homepage = "http://github.com/haskell-works/hw-json#readme";
description = "Memory efficient JSON parser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hw-json-lens" = callPackage
@@ -113922,6 +114928,7 @@ self: {
homepage = "http://github.com/haskell-works/hw-json-lens#readme";
description = "Lens for hw-json";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hw-kafka-avro" = callPackage
@@ -114139,6 +115146,31 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hw-rankselect-base_0_3_0_0" = callPackage
+ ({ mkDerivation, base, bits-extra, criterion, hedgehog, hspec
+ , hw-bits, hw-hedgehog, hw-hspec-hedgehog, hw-int, hw-prim
+ , hw-string-parse, QuickCheck, safe, vector
+ }:
+ mkDerivation {
+ pname = "hw-rankselect-base";
+ version = "0.3.0.0";
+ sha256 = "19gclmljps2nplfqch26grzagvsraafr4540s6x19x2m58aa3m7g";
+ libraryHaskellDepends = [
+ base bits-extra hw-bits hw-int hw-prim hw-string-parse safe vector
+ ];
+ testHaskellDepends = [
+ base bits-extra hedgehog hspec hw-bits hw-hedgehog
+ hw-hspec-hedgehog hw-prim QuickCheck vector
+ ];
+ benchmarkHaskellDepends = [
+ base bits-extra criterion hw-bits hw-prim vector
+ ];
+ homepage = "http://github.com/haskell-works/hw-rankselect-base#readme";
+ description = "Rank-select base";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hw-string-parse" = callPackage
({ mkDerivation, base, bytestring, hspec, QuickCheck, vector }:
mkDerivation {
@@ -114188,23 +115220,23 @@ self: {
"hw-xml" = callPackage
({ mkDerivation, ansi-wl-pprint, array, attoparsec, base
- , bytestring, cereal, conduit, containers, criterion, ghc-prim
- , hspec, hw-balancedparens, hw-bits, hw-conduit, hw-parser, hw-prim
- , hw-rankselect, hw-rankselect-base, lens, mmap, mtl, QuickCheck
- , resourcet, transformers, vector, word8
+ , bytestring, cereal, conduit, containers, criterion, deepseq
+ , ghc-prim, hspec, hw-balancedparens, hw-bits, hw-conduit
+ , hw-parser, hw-prim, hw-rankselect, hw-rankselect-base, lens, mmap
+ , mtl, QuickCheck, resourcet, transformers, vector, word8
}:
mkDerivation {
pname = "hw-xml";
- version = "0.1.0.1";
- sha256 = "0fhf0l6zpmrj76gkhbym8ds9dg270y22hdpqxrg11gxyrdymdnbd";
+ version = "0.1.0.3";
+ sha256 = "15vycayfmykds6dka0kw106fjk2wg3qgifk698fwkj1i4chsia97";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
ansi-wl-pprint array attoparsec base bytestring cereal conduit
- containers ghc-prim hw-balancedparens hw-bits hw-conduit hw-parser
- hw-prim hw-rankselect hw-rankselect-base lens mtl resourcet
- transformers vector word8
+ containers deepseq ghc-prim hw-balancedparens hw-bits hw-conduit
+ hw-parser hw-prim hw-rankselect hw-rankselect-base lens mtl
+ resourcet transformers vector word8
];
executableHaskellDepends = [
base bytestring hw-balancedparens hw-bits hw-prim hw-rankselect
@@ -114609,8 +115641,8 @@ self: {
pname = "hxt-pickle-utils";
version = "0.1.0.3";
sha256 = "1id9459yphsbxqa0z89dhsmqqcgvk2axv91d05aw3n6r4ygs3nwx";
- revision = "2";
- editedCabalFile = "109jh2iibhnllkwpqpiyfwdqjn3v06ap58fhyzikjdqzz0rzwgh5";
+ revision = "3";
+ editedCabalFile = "0d5fg718y7xzw76ip33q0w1liqk70q9074qkd198mjnijxjcrkf3";
libraryHaskellDepends = [ base hxt mtl ];
homepage = "https://github.com/silkapp/hxt-pickle-utils";
description = "Utility functions for using HXT picklers";
@@ -117063,10 +118095,10 @@ self: {
({ mkDerivation, base, lens }:
mkDerivation {
pname = "impossible";
- version = "1.0.0";
- sha256 = "1qkpwa2am439bpngiiwgh14cg19d4mp6s9qqa890rvm5pqh8skvz";
+ version = "1.1.1";
+ sha256 = "0drq4rzbljql51hc2d8ldsm6xhsj7imlsxclivmf3lr9lykkp0p1";
libraryHaskellDepends = [ base lens ];
- homepage = "https://github.com/wdanilo/impossible";
+ homepage = "https://github.com/luna/impossible";
description = "Set of data and type definitions of impossible types. Impossible types are useful when declaring type classes / type families instances that should not be expanded by GHC until a specific type is provided in order to keep the types nice and readable.";
license = stdenv.lib.licenses.asl20;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -117723,7 +118755,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "influxdb_1_5_0" = callPackage
+ "influxdb_1_5_1" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal
, cabal-doctest, clock, containers, doctest, foldl, http-client
, http-types, HUnit, lens, mtl, network, optional-args, QuickCheck
@@ -117732,8 +118764,8 @@ self: {
}:
mkDerivation {
pname = "influxdb";
- version = "1.5.0";
- sha256 = "008ry9znrjjn3yhc5831gc4jgnxnwr1yibzm72lmngqywhv0mi9w";
+ version = "1.5.1";
+ sha256 = "1gxhd5ywz27z6jkx9bdmqsjafl2j0wk5vmrclz7l7hwfnn5553c7";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal cabal-doctest ];
@@ -118297,10 +119329,8 @@ self: {
}:
mkDerivation {
pname = "int-cast";
- version = "0.1.2.0";
- sha256 = "0gfx3pg0n1jyn8z2q804iyc24ahi41sjr3h7v5ivzc3g57vi1ykb";
- revision = "2";
- editedCabalFile = "14i728sy9y38zjm9xcjqyg9jjnayzdpzplpff2cdpc9jk596fmcs";
+ version = "0.2.0.0";
+ sha256 = "0s8rqm5d9f4y2sskajsw8ff7q8xp52vwqa18m6bajldp11m9a1p0";
libraryHaskellDepends = [ base ];
testHaskellDepends = [
base QuickCheck test-framework test-framework-quickcheck2
@@ -119986,8 +121016,8 @@ self: {
}:
mkDerivation {
pname = "iso8583-bitmaps";
- version = "0.1.0.0";
- sha256 = "0w6m8ygpy1g95zvmbzq9402rxh4dj48i5bhcdzc4s0kig239gzqd";
+ version = "0.1.1.0";
+ sha256 = "04i557469q2ablwmlwg35jazh7mpd1cgbrzl02xbvn4xbg7n2fcr";
libraryHaskellDepends = [
base binary bytestring containers parsec syb template-haskell
th-lift
@@ -121517,6 +122547,39 @@ self: {
license = stdenv.lib.licenses.asl20;
}) {};
+ "jose_0_7_0_0" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, base64-bytestring
+ , bytestring, concise, containers, cryptonite, hspec, lens, memory
+ , monad-time, mtl, network-uri, QuickCheck, quickcheck-instances
+ , safe, semigroups, tasty, tasty-hspec, tasty-quickcheck
+ , template-haskell, text, time, unordered-containers, vector, x509
+ }:
+ mkDerivation {
+ pname = "jose";
+ version = "0.7.0.0";
+ sha256 = "051rjqfskizgm9j927zh500q54lii3scldsymgcdfbaw40d0mncc";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson attoparsec base base64-bytestring bytestring concise
+ containers cryptonite lens memory monad-time mtl network-uri
+ QuickCheck quickcheck-instances safe semigroups template-haskell
+ text time unordered-containers vector x509
+ ];
+ executableHaskellDepends = [ aeson base bytestring lens mtl ];
+ testHaskellDepends = [
+ aeson attoparsec base base64-bytestring bytestring concise
+ containers cryptonite hspec lens memory monad-time mtl network-uri
+ QuickCheck quickcheck-instances safe semigroups tasty tasty-hspec
+ tasty-quickcheck template-haskell text time unordered-containers
+ vector x509
+ ];
+ homepage = "https://github.com/frasertweedale/hs-jose";
+ description = "Javascript Object Signing and Encryption and JSON Web Token library";
+ license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"jose-jwt" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, cereal
, containers, criterion, cryptonite, doctest, either, hspec, HUnit
@@ -121542,6 +122605,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "jot" = callPackage
+ ({ mkDerivation, base, data-default, dhall, docopt, extra, filepath
+ , process, time, turtle, yaml
+ }:
+ mkDerivation {
+ pname = "jot";
+ version = "0.1.0.3";
+ sha256 = "1rw5ah60kfazycpf2f0sin98rba99d06gkqfci30m64wpkcm9l4g";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base data-default dhall docopt extra filepath process time turtle
+ yaml
+ ];
+ homepage = "http://gitlab.com/locallycompact/jot";
+ description = "Tiny markdown notebook";
+ license = stdenv.lib.licenses.isc;
+ }) {};
+
"jpeg" = callPackage
({ mkDerivation, base, mtl }:
mkDerivation {
@@ -122309,8 +123391,8 @@ self: {
pname = "json-rpc-server";
version = "0.2.6.0";
sha256 = "1xfcxbwri9a5p3xxbc4kvr1kqdnm4c1axd8kgb8dglabffbrk7hn";
- revision = "3";
- editedCabalFile = "1bn1w9vwif05hjdprc354if3mccaw9gari233x0l6p35188idmsc";
+ revision = "4";
+ editedCabalFile = "19nasv4sxjn3j0xvr1pd9x6bf8f8566wwd15y3wwll89bpnyd4z9";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -122335,8 +123417,8 @@ self: {
pname = "json-schema";
version = "0.7.4.1";
sha256 = "15kwgpkryd865nls9zm6ya6jzmiygsb537ij7ps39dzasqbnl3an";
- revision = "12";
- editedCabalFile = "0x3cvndfshy4sd66m2xilyp876kvmgw5flagawamwis6hs8pfdi2";
+ revision = "13";
+ editedCabalFile = "07r9sdkhhp7wp7zyrw8mnr9dk1z83drm3jfcayv9gz28jnr3gpv1";
libraryHaskellDepends = [
aeson base containers generic-aeson generic-deriving mtl scientific
text time unordered-containers vector
@@ -122390,8 +123472,8 @@ self: {
}:
mkDerivation {
pname = "json-stream";
- version = "0.4.2.0";
- sha256 = "06y8q95vyavcbvq5z4zh50jn3djhlj1xq7yv8dns7gxfc5fvdndy";
+ version = "0.4.2.2";
+ sha256 = "14savrbhxb7pxxphfhh6z5fh5xqfxrnk9j7g0268dl2hpnzx4rvh";
libraryHaskellDepends = [
aeson base bytestring scientific text unordered-containers vector
];
@@ -122404,6 +123486,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "json-stream_0_4_2_3" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, directory, hspec
+ , QuickCheck, quickcheck-unicode, scientific, text
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "json-stream";
+ version = "0.4.2.3";
+ sha256 = "0ijic6vfrpykzy7j3li94fjmaj1vclvp0in1ymb5z5whvljlynw7";
+ libraryHaskellDepends = [
+ aeson base bytestring scientific text unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson base bytestring directory hspec QuickCheck quickcheck-unicode
+ scientific text unordered-containers vector
+ ];
+ homepage = "https://github.com/ondrap/json-stream";
+ description = "Incremental applicative JSON parser";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"json-togo" = callPackage
({ mkDerivation, aeson, attoparsec, attoparsec-trans, base
, bytestring, scientific, text, transformers, unordered-containers
@@ -123376,8 +124480,8 @@ self: {
}:
mkDerivation {
pname = "kansas-lava";
- version = "0.2.4.4";
- sha256 = "0pbciwh79y1pzqlpd2f8pm5w8bjq5bs47slqw71q09f7jlgs0i7d";
+ version = "0.2.4.5";
+ sha256 = "0pcxmsf18ykvf1mbm3w8qn86rdmr69ilcakrgidl1ag6liq1s6zc";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -126065,20 +127169,20 @@ self: {
"language-ats" = callPackage
({ mkDerivation, alex, ansi-wl-pprint, array, base
- , composition-prelude, containers, criterion, deepseq, happy, hspec
- , hspec-dirstream, microlens, microlens-th, recursion-schemes
- , system-filepath, transformers
+ , composition-prelude, containers, cpphs, criterion, deepseq, happy
+ , hspec, hspec-dirstream, microlens, microlens-th
+ , recursion-schemes, system-filepath, transformers
}:
mkDerivation {
pname = "language-ats";
- version = "1.2.0.3";
- sha256 = "19gm7gj6l0b4qh5pnp1qv1q2g3gfp3mny9y8nrxvmbzrrc1ad7j9";
+ version = "1.2.0.5";
+ sha256 = "13slgzdcgdbibxnk4nk6xgkvhsz2f87m6xj0mz5ccmjfb35hv63d";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
ansi-wl-pprint array base composition-prelude containers deepseq
microlens microlens-th recursion-schemes transformers
];
- libraryToolDepends = [ alex happy ];
+ libraryToolDepends = [ alex cpphs happy ];
testHaskellDepends = [
base hspec hspec-dirstream system-filepath
];
@@ -126210,6 +127314,32 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "language-c-quote_0_12_2" = callPackage
+ ({ mkDerivation, alex, array, base, bytestring, containers
+ , exception-mtl, exception-transformers, filepath, happy
+ , haskell-src-meta, HUnit, mainland-pretty, mtl, srcloc, syb
+ , symbol, template-haskell, test-framework, test-framework-hunit
+ }:
+ mkDerivation {
+ pname = "language-c-quote";
+ version = "0.12.2";
+ sha256 = "15c6rdj91768jf8lqzf4fkbi8k6kz9gch5w81x6qzy2l256rncgb";
+ libraryHaskellDepends = [
+ array base bytestring containers exception-mtl
+ exception-transformers filepath haskell-src-meta mainland-pretty
+ mtl srcloc syb symbol template-haskell
+ ];
+ libraryToolDepends = [ alex happy ];
+ testHaskellDepends = [
+ base bytestring HUnit mainland-pretty srcloc symbol test-framework
+ test-framework-hunit
+ ];
+ homepage = "https://github.com/mainland/language-c-quote";
+ description = "C/CUDA/OpenCL/Objective-C quasiquoting library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"language-cil" = callPackage
({ mkDerivation, base, bool-extras }:
mkDerivation {
@@ -126860,8 +127990,8 @@ self: {
}:
mkDerivation {
pname = "language-puppet";
- version = "1.3.16";
- sha256 = "0n0rhz4aljazfdy8057ld65sibqaipz98wmnnip2ldcqwcklawnh";
+ version = "1.3.17";
+ sha256 = "0n71grhaw59z3vqkys499kx06q10fn6l5r4sfim17vyxdy0bz8xq";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -127144,8 +128274,8 @@ self: {
}:
mkDerivation {
pname = "lapack";
- version = "0.0";
- sha256 = "04g5w3gdq4x7vkaw6x36xad7hjmah3iynqnp6xncac31ykkmbwgl";
+ version = "0.1";
+ sha256 = "195v3jpz5n5vksa8svqng1kwc629ds2kd1p55f6npz2q2j6k8lac";
libraryHaskellDepends = [
base blas-ffi comfort-array lapack-ffi netlib-ffi non-empty
transformers utility-ht
@@ -127174,6 +128304,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "lapack-carray_0_0_2" = callPackage
+ ({ mkDerivation, base, carray, lapack-ffi, netlib-carray
+ , netlib-ffi, storable-complex, transformers
+ }:
+ mkDerivation {
+ pname = "lapack-carray";
+ version = "0.0.2";
+ sha256 = "1dr4mbhc5y21mbnksyi530rsvckfp4mclhhig2rjhx3b06cksfna";
+ libraryHaskellDepends = [
+ base carray lapack-ffi netlib-carray netlib-ffi storable-complex
+ transformers
+ ];
+ homepage = "http://hub.darcs.net/thielema/lapack-carray/";
+ description = "Auto-generated interface to Fortran LAPACK via CArrays";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"lapack-ffi" = callPackage
({ mkDerivation, base, liblapack, netlib-ffi }:
mkDerivation {
@@ -127188,6 +128336,20 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) liblapack;};
+ "lapack-ffi_0_0_2" = callPackage
+ ({ mkDerivation, base, liblapack, netlib-ffi }:
+ mkDerivation {
+ pname = "lapack-ffi";
+ version = "0.0.2";
+ sha256 = "11759avf0kzkqy4s24kn556j93l10x28njpg6h14y915pdl35dyl";
+ libraryHaskellDepends = [ base netlib-ffi ];
+ libraryPkgconfigDepends = [ liblapack ];
+ homepage = "http://hub.darcs.net/thielema/lapack-ffi/";
+ description = "Auto-generated interface to Fortran LAPACK";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) liblapack;};
+
"lapack-ffi-tools" = callPackage
({ mkDerivation, base, bytestring, cassava, containers
, explicit-exception, filepath, non-empty, optparse-applicative
@@ -127415,8 +128577,8 @@ self: {
pname = "lattices";
version = "1.7.1";
sha256 = "0bcv28dazaz0n166jbd579vim0hr4c20rmg0s34284fdr6p50m3x";
- revision = "1";
- editedCabalFile = "1h68xxzy90i7nggyh67f4744zk9a4zv4lb5ag9dwp126acvg2c9n";
+ revision = "2";
+ editedCabalFile = "0ngxvs48hqdr5353fbblcrq5hqrwr89xl39akxg8rkridkr3hq96";
libraryHaskellDepends = [
base base-compat containers deepseq hashable semigroupoids tagged
universe-base universe-reverse-instances unordered-containers
@@ -127483,6 +128645,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "layered-state" = callPackage
+ ({ mkDerivation, base, constraints, criterion, data-default
+ , deepseq, either, exceptions, kan-extensions, lens, lens-utils
+ , monad-branch, monoid, mtl, mtl-c, primitive, profunctors
+ , prologue, timeit, transformers, typelevel
+ }:
+ mkDerivation {
+ pname = "layered-state";
+ version = "1.1.2";
+ sha256 = "1z9xz9nvzlqvzrp4dva9skci70g70lzzf5d5d38ilxvfk7kh56h6";
+ libraryHaskellDepends = [
+ base constraints data-default exceptions lens lens-utils
+ monad-branch monoid mtl primitive profunctors prologue transformers
+ typelevel
+ ];
+ benchmarkHaskellDepends = [
+ criterion deepseq either kan-extensions mtl-c timeit
+ ];
+ homepage = "https://github.com/luna/layered-state";
+ description = "Control structure similar to Control.Monad.State, allowing multiple nested states, distinguishable by provided phantom types.";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"layers" = callPackage
({ mkDerivation, base, transformers }:
mkDerivation {
@@ -127554,6 +128739,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "layouting" = callPackage
+ ({ mkDerivation, base, container, layered-state, prologue
+ , terminal-text, text
+ }:
+ mkDerivation {
+ pname = "layouting";
+ version = "1.1.2";
+ sha256 = "1j3bki62ldi5gbl3asa31rjjlah2842rhgylxwab13c3r50a7p85";
+ libraryHaskellDepends = [
+ base container layered-state prologue terminal-text text
+ ];
+ homepage = "https://github.com/luna/layouting";
+ description = "General layouting library. Currently supports layouting 2D areas and can be used as a backend for text pretty printing or automatic windows layouting managers.";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"lazy-csv" = callPackage
({ mkDerivation, base, bytestring }:
mkDerivation {
@@ -128013,6 +129214,19 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "left4deadrl" = callPackage
+ ({ mkDerivation, base, hscharm, random, random-shuffle }:
+ mkDerivation {
+ pname = "left4deadrl";
+ version = "0.0.2";
+ sha256 = "1lwpkhlhiy8dbw3ln0dz65ci8my7cmqs7d08f5wy728ixmmcn84w";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [ base hscharm random random-shuffle ];
+ description = "left4dead-inspired roguelike";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"legion" = callPackage
({ mkDerivation, aeson, base, binary, binary-conduit, bytestring
, canteven-http, conduit, conduit-extra, containers
@@ -128258,6 +129472,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "lens-accelerate_0_2_0_0" = callPackage
+ ({ mkDerivation, accelerate, base, lens }:
+ mkDerivation {
+ pname = "lens-accelerate";
+ version = "0.2.0.0";
+ sha256 = "099vvakv7gq9sr9mh3hxj5byxxb4dw8lw7y1g3c4j1kz4gf2vxfk";
+ libraryHaskellDepends = [ accelerate base lens ];
+ homepage = "https://github.com/tmcdonell/lens-accelerate";
+ description = "Instances to mix lens with accelerate";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"lens-action" = callPackage
({ mkDerivation, base, Cabal, cabal-doctest, comonad, contravariant
, directory, doctest, filepath, lens, mtl, profunctors
@@ -128515,6 +129742,7 @@ self: {
homepage = "https://github.com/xngns/lens-toml-parser";
description = "Lenses for toml-parser";
license = stdenv.lib.licenses.isc;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lens-tutorial" = callPackage
@@ -128531,13 +129759,17 @@ self: {
}) {};
"lens-utils" = callPackage
- ({ mkDerivation, base, lens }:
+ ({ mkDerivation, aeson, base, containers, data-default, lens
+ , monoid, template-haskell
+ }:
mkDerivation {
pname = "lens-utils";
- version = "1.2";
- sha256 = "1ysr9ph03f8klvnbhvzjn45vsnxbfp1ry34lbcrhdm6gy7x0maib";
- libraryHaskellDepends = [ base lens ];
- homepage = "https://github.com/wdanilo/lens-utils";
+ version = "1.4.2";
+ sha256 = "1sgsahb2cgfhbv3vw0h1cqls5g5kgbq9crx4w0rfjxcwk9d5jzds";
+ libraryHaskellDepends = [
+ aeson base containers data-default lens monoid template-haskell
+ ];
+ homepage = "https://github.com/luna/lens-utils";
description = "Collection of missing lens utilities";
license = stdenv.lib.licenses.asl20;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -128612,6 +129844,34 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "lentil_1_0_11_3" = callPackage
+ ({ mkDerivation, ansi-wl-pprint, base, csv, directory, filemanip
+ , filepath, hspec, natural-sort, optparse-applicative, parsec
+ , pipes, regex-tdfa, semigroups, terminal-progress-bar, text
+ , transformers
+ }:
+ mkDerivation {
+ pname = "lentil";
+ version = "1.0.11.3";
+ sha256 = "0kb9fydcv0skp94bhvhbqggam8vrq2wv5iradxmggaf41h0ly123";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ ansi-wl-pprint base csv directory filemanip filepath natural-sort
+ optparse-applicative parsec pipes regex-tdfa semigroups
+ terminal-progress-bar text transformers
+ ];
+ testHaskellDepends = [
+ ansi-wl-pprint base csv directory filemanip filepath hspec
+ natural-sort optparse-applicative parsec pipes regex-tdfa
+ semigroups terminal-progress-bar text transformers
+ ];
+ homepage = "http://www.ariis.it/static/articles/lentil/page.html";
+ description = "frugal issue tracker";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"lenz" = callPackage
({ mkDerivation, base, base-unicode-symbols, hs-functors
, transformers
@@ -130178,6 +131438,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "linear-accelerate_0_6_0_0" = callPackage
+ ({ mkDerivation, accelerate, base, Cabal, cabal-doctest
+ , distributive, doctest, lens, linear
+ }:
+ mkDerivation {
+ pname = "linear-accelerate";
+ version = "0.6.0.0";
+ sha256 = "1bwqbs4816xrrc0bcf3nllad1an7c8gv2n9d1qv3ybk7s4fw288s";
+ setupHaskellDepends = [ base Cabal cabal-doctest ];
+ libraryHaskellDepends = [
+ accelerate base distributive lens linear
+ ];
+ testHaskellDepends = [ base doctest ];
+ homepage = "http://github.com/ekmett/linear-accelerate/";
+ description = "Lifting linear vector spaces into Accelerate";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"linear-algebra-cblas" = callPackage
({ mkDerivation, base, ieee754, QuickCheck, storable-complex
, test-framework, test-framework-quickcheck2, vector
@@ -131174,8 +132453,8 @@ self: {
({ mkDerivation, base, doctest, mtl }:
mkDerivation {
pname = "list-transformer";
- version = "1.0.3";
- sha256 = "13pasfggjbzldy85d0kaydw95myxna63299k021fmbaifz26q2fx";
+ version = "1.0.4";
+ sha256 = "0zia1b2phk4skv39q2k481jsagz1syd6rkgfcdra15i2s5dhzvyp";
libraryHaskellDepends = [ base mtl ];
testHaskellDepends = [ base doctest ];
homepage = "https://github.com/Gabriel439/Haskell-List-Transformer-Library";
@@ -132399,6 +133678,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "log-elasticsearch_0_10_0_0" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring
+ , bloodhound, bytestring, deepseq, http-client, http-client-tls
+ , log-base, semigroups, text, text-show, time, transformers
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "log-elasticsearch";
+ version = "0.10.0.0";
+ sha256 = "0bjsng7ganwbqxvj9zi7w7l547iw9yh972bc0mc82cnwd6awclj5";
+ libraryHaskellDepends = [
+ aeson aeson-pretty base base64-bytestring bloodhound bytestring
+ deepseq http-client http-client-tls log-base semigroups text
+ text-show time transformers unordered-containers vector
+ ];
+ homepage = "https://github.com/scrive/log";
+ description = "Structured logging solution (Elasticsearch back end)";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"log-postgres" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring
, bytestring, deepseq, hpqtypes, http-client, lifted-base, log-base
@@ -132482,6 +133782,42 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "log-warper_1_8_11" = callPackage
+ ({ mkDerivation, aeson, ansi-terminal, async, base, containers
+ , data-default, deepseq, directory, filepath, fmt, hspec
+ , hspec-discover, HUnit, lifted-async, markdown-unlit, microlens
+ , microlens-mtl, microlens-platform, mmorph, monad-control
+ , monad-loops, mtl, o-clock, QuickCheck, text, time, transformers
+ , transformers-base, universum, unix, unordered-containers, vector
+ , yaml
+ }:
+ mkDerivation {
+ pname = "log-warper";
+ version = "1.8.11";
+ sha256 = "0xhvipk5dlv7r2pmgn5mf46rrz092xhm6ar611y5lrr99i2kg172";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson ansi-terminal base containers deepseq directory filepath fmt
+ lifted-async microlens-platform mmorph monad-control monad-loops
+ mtl o-clock text time transformers transformers-base universum unix
+ unordered-containers vector yaml
+ ];
+ executableHaskellDepends = [
+ base markdown-unlit microlens monad-control mtl o-clock text
+ universum yaml
+ ];
+ testHaskellDepends = [
+ async base data-default directory filepath hspec HUnit
+ microlens-mtl QuickCheck universum unordered-containers
+ ];
+ testToolDepends = [ hspec-discover ];
+ homepage = "https://github.com/serokell/log-warper";
+ description = "Flexible, configurable, monadic and pretty logging";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"log2json" = callPackage
({ mkDerivation, base, containers, json, parsec }:
mkDerivation {
@@ -133415,8 +134751,8 @@ self: {
pname = "lrucaching";
version = "0.3.3";
sha256 = "192a2zap1bmxa2y48n48rmngf18fr8k0az4a230hziv3g795yzma";
- revision = "1";
- editedCabalFile = "0axg26s9gssg3ig613rnqj5v4aczki4kgyqmnd208kljkawq6c7k";
+ revision = "2";
+ editedCabalFile = "0ypilhv8im5vqwdy6wk9ql2dlpr4cykag6ikvyjapl8bpyfm44xa";
libraryHaskellDepends = [
base base-compat deepseq hashable psqueues vector
];
@@ -133534,6 +134870,7 @@ self: {
];
description = "Parameterized file evaluator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ltiv1p1" = callPackage
@@ -133686,6 +135023,8 @@ self: {
pname = "lucid";
version = "2.9.10";
sha256 = "14238cnrvkbr81hpaqg1r342sryj8k0p6igkwf140s9phfpdzry0";
+ revision = "1";
+ editedCabalFile = "0n94x2havrvks85z8azsa4pvz33amhb444cias3kfxmkyvypn5ah";
libraryHaskellDepends = [
base blaze-builder bytestring containers hashable mmorph mtl text
transformers unordered-containers
@@ -134531,21 +135870,21 @@ self: {
, composition-prelude, containers, criterion, directory, file-embed
, hspec, hspec-megaparsec, http-client, http-client-tls, megaparsec
, MonadRandom, mtl, optparse-applicative, random-shuffle
- , recursion-schemes, recursion-schemes-ext, tar, template-haskell
- , text, th-lift-instances, titlecase, zip-archive, zlib
+ , recursion-schemes, tar, template-haskell, text, th-lift-instances
+ , titlecase, zip-archive, zlib
}:
mkDerivation {
pname = "madlang";
- version = "4.0.2.0";
- sha256 = "1syq92bxbyf5nxywpm1prds9ki63a601v55cjba1dalv3z2zh6n6";
+ version = "4.0.2.6";
+ sha256 = "079100sdqh4g7mlbf7p1j04r7g6c6b3q58nm4qiy8yrdvbzjdrhv";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal cli-setup ];
libraryHaskellDepends = [
ansi-wl-pprint base binary composition-prelude containers directory
file-embed http-client http-client-tls megaparsec MonadRandom mtl
- random-shuffle recursion-schemes recursion-schemes-ext tar
- template-haskell text th-lift-instances titlecase zip-archive zlib
+ random-shuffle recursion-schemes tar template-haskell text
+ th-lift-instances titlecase zip-archive zlib
];
executableHaskellDepends = [
base directory megaparsec optparse-applicative text
@@ -134813,6 +136152,23 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "main-tester" = callPackage
+ ({ mkDerivation, base, bytestring, directory, doctest, hspec
+ , hspec-core, QuickCheck, text
+ }:
+ mkDerivation {
+ pname = "main-tester";
+ version = "0.1.0.0";
+ sha256 = "0sagm9fkdgjv8x602bjj32glcrivjf3yz47gpbbm48k0mk0dj2dc";
+ libraryHaskellDepends = [ base bytestring directory ];
+ testHaskellDepends = [
+ base bytestring doctest hspec hspec-core QuickCheck text
+ ];
+ homepage = "https://gitlab.com/igrep/main-tester#readme";
+ description = "Capture stdout/stderr/exit code, and replace stdin of your main function";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"mainland-pretty" = callPackage
({ mkDerivation, base, containers, srcloc, text, transformers }:
mkDerivation {
@@ -134827,6 +136183,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "mainland-pretty_0_7" = callPackage
+ ({ mkDerivation, base, containers, srcloc, text, transformers }:
+ mkDerivation {
+ pname = "mainland-pretty";
+ version = "0.7";
+ sha256 = "1xzavchbp345a63i24hs8632l3xk0c1pxqd32b2i6615cp9pnxqi";
+ libraryHaskellDepends = [
+ base containers srcloc text transformers
+ ];
+ homepage = "https://github.com/mainland/mainland-pretty";
+ description = "Pretty printing designed for printing source code";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"majordomo" = callPackage
({ mkDerivation, base, bytestring, cmdargs, monad-loops, old-locale
, threads, time, unix, zeromq-haskell
@@ -135509,6 +136880,23 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "map-classes" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers
+ , kan-extensions, transformers, utility-ht
+ }:
+ mkDerivation {
+ pname = "map-classes";
+ version = "0.1.0.0";
+ sha256 = "1bimmnr6k1a87l24a7gzylx02gal64jcvg0zv6ci82nxbb7i1v0c";
+ libraryHaskellDepends = [
+ array base bytestring containers kan-extensions transformers
+ utility-ht
+ ];
+ homepage = "https://github.com/clintonmead/map-classes";
+ description = "A set of classes and instances for working with key/value mappings";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"map-exts" = callPackage
({ mkDerivation, base, bytestring, cassava, containers }:
mkDerivation {
@@ -135542,6 +136930,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "map-syntax_0_3" = callPackage
+ ({ mkDerivation, base, containers, deepseq, hspec, HUnit, mtl
+ , QuickCheck, transformers
+ }:
+ mkDerivation {
+ pname = "map-syntax";
+ version = "0.3";
+ sha256 = "0b3ddi998saw5gi5r4bjbpid03rxlifn08zv15wf0b90ambhcc4k";
+ libraryHaskellDepends = [ base containers mtl ];
+ testHaskellDepends = [
+ base containers deepseq hspec HUnit mtl QuickCheck transformers
+ ];
+ description = "Syntax sugar for defining maps";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"mappy" = callPackage
({ mkDerivation, ansi-terminal, base, containers, directory
, haskeline, hspec, parsec, QuickCheck
@@ -135583,6 +136988,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "marihana" = callPackage
+ ({ mkDerivation, base, directory }:
+ mkDerivation {
+ pname = "marihana";
+ version = "0.1.1.0";
+ sha256 = "1wcrmjxw39pcarvwn4cfzd4wimvsf57qg8vl5lykcd9s4p2dnyvw";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base directory ];
+ executableHaskellDepends = [ base directory ];
+ testHaskellDepends = [ base directory ];
+ homepage = "https://github.com/suzukeno/marihana#readme";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"marionetta" = callPackage
({ mkDerivation, base, containers, gloss, mtl, splines, vector
, vector-space
@@ -135610,8 +137030,8 @@ self: {
}:
mkDerivation {
pname = "markdown";
- version = "0.1.17";
- sha256 = "11bcbhrlfddjlifrab46qywbrabxcf8hg1zp26l17dlxs3nm681w";
+ version = "0.1.17.1";
+ sha256 = "0n1vcw0vmhpgsmyxxafc82r2kp27g081zwx9md96zj5x5642vxz1";
libraryHaskellDepends = [
attoparsec base blaze-html blaze-markup conduit conduit-extra
containers data-default text transformers xml-conduit xml-types
@@ -136390,8 +137810,8 @@ self: {
}:
mkDerivation {
pname = "matterhorn";
- version = "40800.0.0";
- sha256 = "0wzgy39halqd6bm0wvcsnk4l5ngdr4nwqbqk46jgnfb99nwsd3z6";
+ version = "40800.0.2";
+ sha256 = "0fgk0my3r0vcw545xqjcda8ikj5cbfzgg9vxfs3jzdcnsa0rgcyf";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -136407,8 +137827,8 @@ self: {
base base-compat brick bytestring cheapskate checkers config-ini
connection containers directory filepath hashable Hclip
mattermost-api mattermost-api-qc microlens-platform mtl process
- quickcheck-text stm strict string-conversions tasty tasty-hunit
- tasty-quickcheck text text-zipper time timezone-olson
+ quickcheck-text semigroups stm strict string-conversions tasty
+ tasty-hunit tasty-quickcheck text text-zipper time timezone-olson
timezone-series transformers Unique unordered-containers vector vty
xdg-basedir
];
@@ -136426,8 +137846,8 @@ self: {
}:
mkDerivation {
pname = "mattermost-api";
- version = "40800.0.0";
- sha256 = "0yjs97c4rf2idj88y5gnkdvshlaz49zna1ssx1d910gm5b5cnqy5";
+ version = "40800.0.2";
+ sha256 = "1l2yb9nvy2haw5kyjjij465g45w8xm8vm97jbkx5jb3p4cs44xl8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -136451,8 +137871,8 @@ self: {
}:
mkDerivation {
pname = "mattermost-api-qc";
- version = "40800.0.0";
- sha256 = "1j9f291s51a8i55y338kcvfkmlb3xsd0c4cjh0nl97x7p30dxcm6";
+ version = "40800.0.2";
+ sha256 = "04whpcbcd5cqnwfrskk3r2gjmyvap2m7d8xsjdry56kil6iqznk5";
libraryHaskellDepends = [
base containers mattermost-api QuickCheck text time
];
@@ -137224,6 +138644,32 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
+ "megaparsec_6_5_0" = callPackage
+ ({ mkDerivation, base, bytestring, case-insensitive, containers
+ , criterion, deepseq, hspec, hspec-discover, hspec-expectations
+ , mtl, parser-combinators, QuickCheck, scientific, text
+ , transformers, weigh
+ }:
+ mkDerivation {
+ pname = "megaparsec";
+ version = "6.5.0";
+ sha256 = "12iggy7qpf8x93jm64zf0g215xwy779bqyfyjk2bhmxqqr1yzgdy";
+ libraryHaskellDepends = [
+ base bytestring case-insensitive containers deepseq mtl
+ parser-combinators scientific text transformers
+ ];
+ testHaskellDepends = [
+ base bytestring containers hspec hspec-expectations mtl QuickCheck
+ scientific text transformers
+ ];
+ testToolDepends = [ hspec-discover ];
+ benchmarkHaskellDepends = [ base criterion deepseq text weigh ];
+ homepage = "https://github.com/mrkkrp/megaparsec";
+ description = "Monadic parser combinators";
+ license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"meldable-heap" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -137243,8 +138689,8 @@ self: {
}:
mkDerivation {
pname = "mellon-core";
- version = "0.8.0.6";
- sha256 = "07dhbqw0x7vbwzkhf1wh083h4b8xrw8sv75db2s72zgjrh8igpfm";
+ version = "0.8.0.7";
+ sha256 = "1nlqqkmm4163260zgl9cqxrd47iy3fpdyhd52y79c2cr1mqjw39q";
libraryHaskellDepends = [
async base mtl protolude time transformers
];
@@ -137261,8 +138707,8 @@ self: {
({ mkDerivation, base, hpio, mellon-core, protolude }:
mkDerivation {
pname = "mellon-gpio";
- version = "0.8.0.6";
- sha256 = "08mr37wmg1paigbhs1wv7rpdxkhy2jiba8nd22rg1lhscc04k7g1";
+ version = "0.8.0.7";
+ sha256 = "0hg878il0d31lfqwkb3rsd7gxbhs5cb1sxgc3rwdv70fdg63iirp";
libraryHaskellDepends = [ base hpio mellon-core protolude ];
homepage = "https://github.com/quixoftic/mellon#readme";
description = "GPIO support for mellon";
@@ -137274,34 +138720,37 @@ self: {
, exceptions, hpio, hspec, hspec-wai, http-client, http-client-tls
, http-types, lens, lucid, mellon-core, mellon-gpio, mtl, network
, optparse-applicative, protolude, QuickCheck, quickcheck-instances
- , servant, servant-client, servant-docs, servant-lucid
- , servant-server, servant-swagger, servant-swagger-ui, swagger2
- , text, time, transformers, wai, wai-extra, warp
+ , servant, servant-client, servant-client-core, servant-docs
+ , servant-lucid, servant-server, servant-swagger
+ , servant-swagger-ui, swagger2, text, time, transformers, wai
+ , wai-extra, warp
}:
mkDerivation {
pname = "mellon-web";
- version = "0.8.0.6";
- sha256 = "0hfb2gkfn9kdg8a5n6l8c7jky8d4545qqlpdzl2qv63500nr4wz3";
+ version = "0.8.0.7";
+ sha256 = "1m3ch98i8wzhi7g2c2l9klp0a3xcqfwfbq6ad6grl43v8fh1q737";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson aeson-pretty base bytestring http-client http-types lens
- lucid mellon-core protolude servant servant-client servant-docs
- servant-lucid servant-server servant-swagger servant-swagger-ui
- swagger2 text time transformers wai warp
+ lucid mellon-core protolude servant servant-client
+ servant-client-core servant-docs servant-lucid servant-server
+ servant-swagger servant-swagger-ui swagger2 text time transformers
+ wai warp
];
executableHaskellDepends = [
base bytestring exceptions hpio http-client http-client-tls
http-types mellon-core mellon-gpio mtl network optparse-applicative
- protolude servant-client time transformers warp
+ protolude servant-client servant-client-core time transformers warp
];
testHaskellDepends = [
aeson aeson-pretty base bytestring doctest hspec hspec-wai
http-client http-types lens lucid mellon-core network protolude
- QuickCheck quickcheck-instances servant servant-client servant-docs
- servant-lucid servant-server servant-swagger servant-swagger-ui
- swagger2 text time transformers wai wai-extra warp
+ QuickCheck quickcheck-instances servant servant-client
+ servant-client-core servant-docs servant-lucid servant-server
+ servant-swagger servant-swagger-ui swagger2 text time transformers
+ wai wai-extra warp
];
homepage = "https://github.com/quixoftic/mellon#readme";
description = "A REST web service for Mellon controllers";
@@ -139293,15 +140742,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "miso_0_17_0_0" = callPackage
+ "miso_0_18_0_0" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, http-api-data
, http-types, lucid, network-uri, servant, servant-lucid, text
, transformers, vector
}:
mkDerivation {
pname = "miso";
- version = "0.17.0.0";
- sha256 = "0vf6yd2yib2snxsvaw78c4nzk5pghi7mh8bkykgy8vpcllg204ym";
+ version = "0.18.0.0";
+ sha256 = "17znwg6spm950qnjrw2v72lff5xng4c1rpcq3140qkmcq99v1zvi";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -139474,6 +140923,31 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "mltool_0_2_0_0" = callPackage
+ ({ mkDerivation, ascii-progress, base, deepseq, hmatrix
+ , hmatrix-gsl, hmatrix-morpheus, HUnit, MonadRandom, random
+ , test-framework, test-framework-hunit, test-framework-quickcheck2
+ , vector
+ }:
+ mkDerivation {
+ pname = "mltool";
+ version = "0.2.0.0";
+ sha256 = "0yjq9wbvni9sgh966jccfcsm6ajicrfkgvwg08383rwnsqbbjm8q";
+ libraryHaskellDepends = [
+ ascii-progress base deepseq hmatrix hmatrix-gsl hmatrix-morpheus
+ MonadRandom random vector
+ ];
+ testHaskellDepends = [
+ base hmatrix hmatrix-morpheus HUnit MonadRandom random
+ test-framework test-framework-hunit test-framework-quickcheck2
+ vector
+ ];
+ homepage = "https://github.com/alexander-ignatyev/mltool";
+ description = "Machine Learning Toolbox";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"mmap" = callPackage
({ mkDerivation, base, bytestring }:
mkDerivation {
@@ -139772,6 +141246,31 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "modify-fasta_0_8_3_0" = callPackage
+ ({ mkDerivation, base, containers, fasta, mtl, optparse-applicative
+ , pipes, pipes-text, regex-tdfa, regex-tdfa-text, semigroups, split
+ , text, text-show, transformers
+ }:
+ mkDerivation {
+ pname = "modify-fasta";
+ version = "0.8.3.0";
+ sha256 = "1hvn55c0cg4h2980ia28b2n2r9p7p0rqyfr5wvkkqyhz4si7dp9r";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers fasta regex-tdfa regex-tdfa-text split text
+ text-show
+ ];
+ executableHaskellDepends = [
+ base containers fasta mtl optparse-applicative pipes pipes-text
+ semigroups split text transformers
+ ];
+ homepage = "https://github.com/GregorySchwartz/modify-fasta";
+ description = "Modify fasta (and CLIP) files in several optional ways";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"modsplit" = callPackage
({ mkDerivation, base, directory, filepath, haskell98, mtl
, utf8-string
@@ -140026,8 +141525,8 @@ self: {
}:
mkDerivation {
pname = "monad-abort-fd";
- version = "0.6.1";
- sha256 = "1wwaia512sb3kh8k0p4ql6zqkmj4fpxzwqfnp7s939j2simmv8gp";
+ version = "0.7";
+ sha256 = "0w1v39n93zg6i22qx312m6z8pc35im3whp5sb13wfvj2ws0nl1z7";
libraryHaskellDepends = [
base mtl stm transformers transformers-abort transformers-base
transformers-compat
@@ -140086,6 +141585,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "monad-branch" = callPackage
+ ({ mkDerivation, base, mtl, transformers }:
+ mkDerivation {
+ pname = "monad-branch";
+ version = "1.0.3";
+ sha256 = "15nk9lvwz4s6lx8g08x5npai0bk13s6mj26vz6biwy3shpf5v11r";
+ libraryHaskellDepends = [ base mtl transformers ];
+ homepage = "https://github.com/luna/monad-branch";
+ description = "Monadic abstraction for computations that can be branched and run independently";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"monad-classes" = callPackage
({ mkDerivation, base, conduit, data-lens-light, ghc-prim, mmorph
, monad-control, peano, reflection, tasty, tasty-hunit
@@ -140174,22 +141685,6 @@ self: {
}) {};
"monad-control-aligned" = callPackage
- ({ mkDerivation, base, stm, transformers, transformers-base
- , transformers-compat
- }:
- mkDerivation {
- pname = "monad-control-aligned";
- version = "0.0.1";
- sha256 = "11s226d80dbzq7as6ik077hg82swfj2svlk662l32sc9y03m3dyx";
- libraryHaskellDepends = [
- base stm transformers transformers-base transformers-compat
- ];
- homepage = "https://github.com/athanclark/monad-control#readme";
- description = "Just like monad-control, except less efficient, and the monadic state terms are all * -> *";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "monad-control-aligned_0_0_1_1" = callPackage
({ mkDerivation, base, stm, transformers, transformers-base
, transformers-compat
}:
@@ -140203,7 +141698,6 @@ self: {
homepage = "https://github.com/athanclark/monad-control#readme";
description = "Just like monad-control, except less efficient, and the monadic state terms are all * -> *";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monad-coroutine" = callPackage
@@ -140279,8 +141773,8 @@ self: {
}:
mkDerivation {
pname = "monad-finally";
- version = "0.1.1";
- sha256 = "0f2bb8l00vqsswsckc6zgnzl372jg1w7c1zgpcj8fq8bnvia23hb";
+ version = "0.1.2";
+ sha256 = "1vg9mg748frf63l428wsdjdbf25pphjqixdslvlwgvf8d1ayl2xz";
libraryHaskellDepends = [
base monad-abort-fd monad-control transformers transformers-abort
transformers-base transformers-compat
@@ -140456,30 +141950,6 @@ self: {
}) {};
"monad-logger" = callPackage
- ({ mkDerivation, base, bytestring, conduit, conduit-extra
- , exceptions, fast-logger, lifted-base, monad-control, monad-loops
- , mtl, resourcet, stm, stm-chans, template-haskell, text
- , transformers, transformers-base, transformers-compat
- , unliftio-core
- }:
- mkDerivation {
- pname = "monad-logger";
- version = "0.3.28.2";
- sha256 = "1dqrsqpqw4qfyida4j0z6dffds4sj7j282x4ir6wrq9j7nmns4yx";
- revision = "1";
- editedCabalFile = "1mk69zg6bbh0420ndf5f0qgsdzy11mn0pdcqgyna4r0pqkzflc0i";
- libraryHaskellDepends = [
- base bytestring conduit conduit-extra exceptions fast-logger
- lifted-base monad-control monad-loops mtl resourcet stm stm-chans
- template-haskell text transformers transformers-base
- transformers-compat unliftio-core
- ];
- homepage = "https://github.com/kazu-yamamoto/logger";
- description = "A class of monads which can log messages";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "monad-logger_0_3_28_3" = callPackage
({ mkDerivation, base, bytestring, conduit, conduit-extra
, exceptions, fast-logger, lifted-base, monad-control, monad-loops
, mtl, resourcet, stm, stm-chans, template-haskell, text
@@ -140499,7 +141969,6 @@ self: {
homepage = "https://github.com/kazu-yamamoto/logger";
description = "A class of monads which can log messages";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monad-logger-json" = callPackage
@@ -141006,11 +142475,11 @@ self: {
({ mkDerivation, base, mtl }:
mkDerivation {
pname = "monad-supply";
- version = "0.6";
- sha256 = "1gg4r7fwaq2fa0lz8pz301mk3q16xpbs7qv54hhggxrv3i1h33ir";
+ version = "0.7";
+ sha256 = "1786rj4n0rrjpp07gn2y8vwpf6ijkjaim1q34rq7lvbjx1fhr2z5";
libraryHaskellDepends = [ base mtl ];
description = "Stateful supply monad";
- license = "unknown";
+ license = stdenv.lib.licenses.mit;
}) {};
"monad-task" = callPackage
@@ -141040,6 +142509,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "monad-time_0_3_0_0" = callPackage
+ ({ mkDerivation, base, mtl, time }:
+ mkDerivation {
+ pname = "monad-time";
+ version = "0.3.0.0";
+ sha256 = "0adl246zrj2ryxx9b0a0c0d5gia1am21k0i0m3k2dwivhypdyq81";
+ libraryHaskellDepends = [ base mtl time ];
+ testHaskellDepends = [ base mtl time ];
+ homepage = "https://github.com/scrive/monad-time";
+ description = "Type class for monads which carry the notion of the current time";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"monad-timing" = callPackage
({ mkDerivation, base, containers, exceptions, hlint, hspec
, monad-control, mtl, time, transformers, transformers-base
@@ -141663,6 +143146,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "monoid" = callPackage
+ ({ mkDerivation, base, containers, lens, mtl }:
+ mkDerivation {
+ pname = "monoid";
+ version = "0.1.8";
+ sha256 = "15mwj4w46wszawhiabykamaf020m795zg017jb2j49gpzk8abqjf";
+ libraryHaskellDepends = [ base containers lens mtl ];
+ homepage = "https://github.com/luna/monoid";
+ description = "Monoid type classes, designed in modular way, distinguish Monoid from Mempty and Semigroup. This design allows mempty operation don't bring Semigroups related constraints until (<>) is used.";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"monoid-absorbing" = callPackage
({ mkDerivation, base, mtl }:
mkDerivation {
@@ -141690,6 +143185,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "monoid-extras_0_4_3" = callPackage
+ ({ mkDerivation, base, criterion, groups, semigroupoids, semigroups
+ }:
+ mkDerivation {
+ pname = "monoid-extras";
+ version = "0.4.3";
+ sha256 = "1c2zdsyq0iyagzp9y64j75nxvpbjr5y3fdg8cd1pkfqgms977qsr";
+ revision = "1";
+ editedCabalFile = "08961ibwiqks8qw5cwpkzpz3acrlrd48l2sl1qny96gycaslzrps";
+ libraryHaskellDepends = [ base groups semigroupoids semigroups ];
+ benchmarkHaskellDepends = [ base criterion ];
+ description = "Various extra monoid-related definitions and utilities";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"monoid-owns" = callPackage
({ mkDerivation, base, bytestring, containers }:
mkDerivation {
@@ -145822,6 +147333,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "netlib-carray_0_0_1_1" = callPackage
+ ({ mkDerivation, base, carray, netlib-ffi, transformers }:
+ mkDerivation {
+ pname = "netlib-carray";
+ version = "0.0.1.1";
+ sha256 = "1vxyffhpayyxwak36b9i7gw35gz61ym9lxnhk45l0h4js3v05iwv";
+ libraryHaskellDepends = [ base carray netlib-ffi transformers ];
+ homepage = "http://hub.darcs.net/thielema/netlib-carray/";
+ description = "Helper modules for CArray wrappers to BLAS and LAPACK";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"netlib-ffi" = callPackage
({ mkDerivation, base, storable-complex, transformers }:
mkDerivation {
@@ -145834,6 +147358,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "netlib-ffi_0_1" = callPackage
+ ({ mkDerivation, base, storable-complex, transformers }:
+ mkDerivation {
+ pname = "netlib-ffi";
+ version = "0.1";
+ sha256 = "0ckwa5r8fx2j7qb5phy6gm3xbg9crr9amglcicdxgnzgjd8aap2h";
+ libraryHaskellDepends = [ base storable-complex transformers ];
+ homepage = "http://hub.darcs.net/thielema/netlib-ffi/";
+ description = "Helper modules for FFI to BLAS and LAPACK";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"netlines" = callPackage
({ mkDerivation, base, bytestring, contstuff, enumerator, HTF
, random, text, time
@@ -145887,8 +147424,8 @@ self: {
({ mkDerivation, base, netlist, pretty }:
mkDerivation {
pname = "netlist-to-vhdl";
- version = "0.3.2";
- sha256 = "107pkkihj62qjkfwrnhwfscpph5r76lx6r3s0m3b0dbsf1jy2a61";
+ version = "0.3.3";
+ sha256 = "1f62l4i1l1z47gbrv49xx5y78ykcf6iq6bish3sx5fw46mhcr1j4";
libraryHaskellDepends = [ base netlist pretty ];
description = "Convert a Netlist AST to VHDL";
license = stdenv.lib.licenses.bsd3;
@@ -146065,23 +147602,6 @@ self: {
}) {};
"netwire" = callPackage
- ({ mkDerivation, base, containers, deepseq, parallel, profunctors
- , random, semigroups, time, transformers
- }:
- mkDerivation {
- pname = "netwire";
- version = "5.0.2";
- sha256 = "10yd28himql3gkilxzwky3d87k2nva43vmb7s5ayaqicchchyyad";
- libraryHaskellDepends = [
- base containers deepseq parallel profunctors random semigroups time
- transformers
- ];
- homepage = "https://github.com/esoeylemez/netwire";
- description = "Functional reactive programming library";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "netwire_5_0_3" = callPackage
({ mkDerivation, base, containers, deepseq, parallel, profunctors
, random, semigroups, time, transformers
}:
@@ -146096,7 +147616,6 @@ self: {
homepage = "https://github.com/esoeylemez/netwire";
description = "Functional reactive programming library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"netwire-input" = callPackage
@@ -146187,18 +147706,13 @@ self: {
}) {};
"network" = callPackage
- ({ mkDerivation, base, bytestring, directory, doctest, HUnit
- , test-framework, test-framework-hunit, unix
- }:
+ ({ mkDerivation, base, bytestring, doctest, hspec, HUnit, unix }:
mkDerivation {
pname = "network";
- version = "2.6.3.4";
- sha256 = "1yswp78fg7i1w1inn6p07vhz7lmfs33niavxhq60z6yv0qx2c3dw";
+ version = "2.6.3.5";
+ sha256 = "0h84pv672psxhh5ls407w175cik0gbyx39zynzmw991hr7jgc64s";
libraryHaskellDepends = [ base bytestring unix ];
- testHaskellDepends = [
- base bytestring directory doctest HUnit test-framework
- test-framework-hunit
- ];
+ testHaskellDepends = [ base bytestring doctest hspec HUnit ];
homepage = "https://github.com/haskell/network";
description = "Low-level networking interface";
license = stdenv.lib.licenses.bsd3;
@@ -146573,18 +148087,6 @@ self: {
}) {};
"network-info" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "network-info";
- version = "0.2.0.9";
- sha256 = "0rmajccwhkf0p4inb8jjj0dzsksgn663w90km00xvf4mq3pkjab3";
- libraryHaskellDepends = [ base ];
- homepage = "http://github.com/jystic/network-info";
- description = "Access the local computer's basic network configuration";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "network-info_0_2_0_10" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "network-info";
@@ -146594,7 +148096,6 @@ self: {
homepage = "http://github.com/jystic/network-info";
description = "Access the local computer's basic network configuration";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"network-interfacerequest" = callPackage
@@ -147971,6 +149472,21 @@ self: {
broken = true;
}) {Nmis = null;};
+ "nn" = callPackage
+ ({ mkDerivation, base, random, split, tasty, tasty-hspec
+ , tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "nn";
+ version = "0.2.0";
+ sha256 = "1jl267495x7rc34x35dzrwb05z57w1w97vzgj774ld6z2w1yri7l";
+ libraryHaskellDepends = [ base random split ];
+ testHaskellDepends = [ base tasty tasty-hspec tasty-quickcheck ];
+ homepage = "https://github.com/saschagrunert/nn#readme";
+ description = "A tiny neural network";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"nntp" = callPackage
({ mkDerivation, base, bytestring, monad-loops, mtl, network
, old-locale, parsec, time
@@ -149113,52 +150629,76 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "numhask_0_2_0_0" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "numhask";
+ version = "0.2.0.0";
+ sha256 = "1n465rjgmpwjixnnwn054323rg55abbj98brqzw4ff17hrvy97g0";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/tonyday567/numhask#readme";
+ description = "numeric classes";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"numhask-array" = callPackage
({ mkDerivation, adjunctions, base, deepseq, dimensions
- , distributive, doctest, ghc-typelits-natnormalise, numhask
- , protolude, QuickCheck, singletons, tasty, tasty-quickcheck
- , typelits-witnesses, vector
+ , distributive, doctest, numhask-prelude, protolude, QuickCheck
+ , singletons, tasty, tasty-quickcheck, vector
}:
mkDerivation {
pname = "numhask-array";
- version = "0.1.1.0";
- sha256 = "0qdlc8ipjb6p5hcp7kvjspa3yjjdsjah1k5c35w6njy0ld9rdi54";
+ version = "0.2.0.1";
+ sha256 = "05y41d8xnrzgrb5w6skkac5hr6c7npwzmryx308cd0lp4nbfmvql";
libraryHaskellDepends = [
- adjunctions base deepseq dimensions distributive
- ghc-typelits-natnormalise numhask protolude QuickCheck singletons
- typelits-witnesses vector
+ adjunctions base deepseq dimensions distributive numhask-prelude
+ protolude QuickCheck singletons vector
];
testHaskellDepends = [
- base doctest numhask QuickCheck tasty tasty-quickcheck
+ base doctest numhask-prelude tasty tasty-quickcheck
];
homepage = "https://github.com/tonyday567/numhask-array#readme";
- description = "See readme.md";
+ description = "n-dimensional arrays";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"numhask-histogram" = callPackage
- ({ mkDerivation, base, containers, doctest, foldl, HUnit, numhask
- , numhask-range, protolude, QuickCheck, tasty, tasty-hunit
- , tasty-quickcheck, tdigest
+ ({ mkDerivation, base, containers, doctest, foldl, numhask-prelude
+ , numhask-range, protolude, tasty, tdigest
}:
mkDerivation {
pname = "numhask-histogram";
- version = "0.0.1.0";
- sha256 = "1s8z2fwgrnsaq0w9zda5rpf9dcrd51dqaq118r6pi2r7y1vwzd6k";
+ version = "0.1.0.0";
+ sha256 = "1ql07s8l9ci4k69y8g7x4227z5shdi5y8crqxqv45m6xcafhrv46";
libraryHaskellDepends = [
- base containers foldl numhask numhask-range protolude tdigest
- ];
- testHaskellDepends = [
- base doctest HUnit protolude QuickCheck tasty tasty-hunit
- tasty-quickcheck
+ base containers foldl numhask-prelude numhask-range tdigest
];
+ testHaskellDepends = [ base doctest protolude tasty ];
homepage = "https://github.com/tonyday567/numhask-histogram#readme";
description = "See readme.md";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "numhask-prelude" = callPackage
+ ({ mkDerivation, base, doctest, numhask, protolude, QuickCheck
+ , tasty, tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "numhask-prelude";
+ version = "0.0.3.0";
+ sha256 = "128hnq32826d2rmrlik4p0c72jnsy586gz9lgfk7hnx0fqpr94gy";
+ libraryHaskellDepends = [
+ base numhask protolude QuickCheck tasty tasty-quickcheck
+ ];
+ testHaskellDepends = [ base doctest tasty ];
+ homepage = "https://github.com/tonyday567/numhask#readme";
+ description = "A numeric prelude";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"numhask-range" = callPackage
({ mkDerivation, adjunctions, base, distributive, doctest, numhask
, protolude, QuickCheck, semigroupoids, tasty
@@ -149178,6 +150718,25 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "numhask-range_0_2_0_0" = callPackage
+ ({ mkDerivation, adjunctions, base, distributive, doctest
+ , numhask-prelude, protolude, QuickCheck, semigroupoids, tasty
+ }:
+ mkDerivation {
+ pname = "numhask-range";
+ version = "0.2.0.0";
+ sha256 = "16al3f6w7g3616baz2xqp7pxlhzikchkr0l7qn7qif827qxmwgrz";
+ libraryHaskellDepends = [
+ adjunctions base distributive numhask-prelude protolude QuickCheck
+ semigroupoids
+ ];
+ testHaskellDepends = [ base doctest numhask-prelude tasty ];
+ homepage = "https://github.com/tonyday567/numhask-range#readme";
+ description = "Numbers that are range representations";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"nums" = callPackage
({ mkDerivation }:
mkDerivation {
@@ -149258,8 +150817,8 @@ self: {
}:
mkDerivation {
pname = "nvim-hs";
- version = "1.0.0.0";
- sha256 = "036zf20aarrshqh0vpkmba5fj5sz28q0cd92dhxag12lp3zsindf";
+ version = "1.0.0.1";
+ sha256 = "05kqrnzxhydns3iyqk1rhdgx3cyqgcskhfwa1d87hcyx0p4w51pw";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -149450,6 +151009,29 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "oasis-xrd" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers
+ , text, time, uri-bytestring, xml-conduit, xml-conduit-writer
+ }:
+ mkDerivation {
+ pname = "oasis-xrd";
+ version = "1.0";
+ sha256 = "105m258yqfdmp1n7gd824gsry07xqlhfnpla2kb7sn36nckqr3a0";
+ revision = "1";
+ editedCabalFile = "1jwvncyyn8njzhjdgqwakqfddp34h26abnhypzbdsgn4nyxad1qs";
+ libraryHaskellDepends = [
+ aeson base bytestring containers text time uri-bytestring
+ xml-conduit xml-conduit-writer
+ ];
+ testHaskellDepends = [
+ aeson aeson-pretty base bytestring containers text time
+ uri-bytestring xml-conduit xml-conduit-writer
+ ];
+ homepage = "https://gitlab.com/dpwiz/oasis-xrd";
+ description = "Extensible Resource Descriptor";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"oauth10a" = callPackage
({ mkDerivation, aeson, base, base64-bytestring, bytestring
, cryptohash, entropy, http-types, time, transformers
@@ -149679,13 +151261,17 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "ochintin-daicho_0_1_0_2" = callPackage
- ({ mkDerivation, base, bookkeeping, doctest, Glob, text }:
+ "ochintin-daicho_0_3_1_1" = callPackage
+ ({ mkDerivation, base, bookkeeping, doctest, Glob, mono-traversable
+ , text, transaction
+ }:
mkDerivation {
pname = "ochintin-daicho";
- version = "0.1.0.2";
- sha256 = "1j44dbp0fdsbm117rgwfsg2n3hbl782nz4484p5fif489yqv62vp";
- libraryHaskellDepends = [ base bookkeeping text ];
+ version = "0.3.1.1";
+ sha256 = "06xdr5763xipzpl83190p8ha1rm9akqa49dh0588ibbhk2zbk0ln";
+ libraryHaskellDepends = [
+ base bookkeeping mono-traversable text transaction
+ ];
testHaskellDepends = [ base doctest Glob ];
homepage = "https://github.com/arowM/haskell-ochintin-daicho#readme";
description = "A module to manage payroll books for Japanese companies";
@@ -149794,18 +151380,18 @@ self: {
"odbc" = callPackage
({ mkDerivation, async, base, bytestring, containers, deepseq
- , formatting, hspec, optparse-applicative, QuickCheck, text, time
- , unixODBC, unliftio-core, weigh
+ , formatting, hspec, optparse-applicative, QuickCheck, semigroups
+ , text, time, transformers, unixODBC, unliftio-core, weigh
}:
mkDerivation {
pname = "odbc";
- version = "0.0.1";
- sha256 = "173ixmhw505306qg3ig3xvi16h30fk5314yk5mbmmv212k2w2vrp";
+ version = "0.0.4";
+ sha256 = "1fh8yqdycna3if5dd55qc6hic70nwy71vjy2yflzvpjpqkdd8qz6";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- async base bytestring containers deepseq formatting text time
- unliftio-core
+ async base bytestring containers deepseq formatting semigroups text
+ time transformers unliftio-core
];
librarySystemDepends = [ unixODBC ];
executableHaskellDepends = [
@@ -149815,6 +151401,7 @@ self: {
base bytestring hspec QuickCheck text time
];
benchmarkHaskellDepends = [ async base text weigh ];
+ homepage = "https://github.com/fpco/odbc";
description = "Haskell binding to the ODBC API, aimed at SQL Server driver";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -150393,6 +151980,32 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "online_0_2_2_0" = callPackage
+ ({ mkDerivation, base, doctest, foldl, formatting, numhask-prelude
+ , optparse-generic, perf, protolude, scientific, tasty, tdigest
+ , text, vector, vector-algorithms
+ }:
+ mkDerivation {
+ pname = "online";
+ version = "0.2.2.0";
+ sha256 = "0k51wjj6ik7r65gp1kzkq1n7y8yxjiracs8i1yx2slz9jnfasgy5";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base foldl numhask-prelude protolude tdigest vector
+ vector-algorithms
+ ];
+ executableHaskellDepends = [
+ base foldl formatting numhask-prelude optparse-generic perf
+ protolude scientific tdigest text
+ ];
+ testHaskellDepends = [ base doctest protolude tasty ];
+ homepage = "https://github.com/tonyday567/online#readme";
+ description = "online statistics";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"only" = callPackage
({ mkDerivation, base, parsec, regex-compat }:
mkDerivation {
@@ -150454,6 +152067,8 @@ self: {
pname = "opaleye";
version = "0.6.1.0";
sha256 = "0vjiwpdrff4nrs5ww8q3j77ysrq0if20yfk4gy182lr7nzhhwz0l";
+ revision = "1";
+ editedCabalFile = "07sz4a506hlx8da2ppiglja6hm9ipb2myh6s702ac6xx700cnl7f";
libraryHaskellDepends = [
aeson base base16-bytestring bytestring case-insensitive
contravariant postgresql-simple pretty product-profunctors
@@ -150962,23 +152577,24 @@ self: {
}) {};
"openpgp-asciiarmor" = callPackage
- ({ mkDerivation, attoparsec, base, base64-bytestring, bytestring
- , cereal, HUnit, test-framework, test-framework-hunit
+ ({ mkDerivation, attoparsec, base, base64-bytestring, binary
+ , bytestring, criterion, tasty, tasty-hunit
}:
mkDerivation {
pname = "openpgp-asciiarmor";
- version = "0.1";
- sha256 = "1xrv0n7n1n8izvxvqm8wmj6mkn5l6wcq18bxs9zd1q5riynmmm2w";
+ version = "0.1.1";
+ sha256 = "01zna9zifixnzgalr3k21g9dv143cn49imawm4q9x37i2r9kybxr";
libraryHaskellDepends = [
- attoparsec base base64-bytestring bytestring cereal
+ attoparsec base base64-bytestring binary bytestring
];
testHaskellDepends = [
- attoparsec base base64-bytestring bytestring cereal HUnit
- test-framework test-framework-hunit
+ attoparsec base base64-bytestring binary bytestring tasty
+ tasty-hunit
];
+ benchmarkHaskellDepends = [ base bytestring criterion ];
homepage = "http://floss.scru.org/openpgp-asciiarmor";
description = "OpenPGP (RFC4880) ASCII Armor codec";
- license = "unknown";
+ license = stdenv.lib.licenses.isc;
}) {};
"openpgp-crypto-api" = callPackage
@@ -152420,8 +154036,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "packcheck";
- version = "0.2.0";
- sha256 = "0frxr78vkwm0yjxz1rq71h8b01krdidi19ld1yragkfk54krcz1n";
+ version = "0.3.0";
+ sha256 = "02ixa91wp0jxdc046gi5qxyyw332znkgknfz5chf4j3ydn7qjlha";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base ];
benchmarkHaskellDepends = [ base ];
@@ -152665,6 +154281,38 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "pads-haskell" = callPackage
+ ({ mkDerivation, base, byteorder, bytestring, Cabal, containers
+ , directory, Glob, haskell-src, haskell-src-meta, HUnit
+ , mainland-pretty, mtl, normaldistribution, old-locale, parsec
+ , QuickCheck, random, regex-posix, syb, template-haskell
+ , test-framework, test-framework-hunit, test-framework-quickcheck2
+ , th-lift, time, transformers
+ }:
+ mkDerivation {
+ pname = "pads-haskell";
+ version = "0.0.0.1";
+ sha256 = "1glf9zfzl8lg6hvqzh76y7kpi1d8jhxgxplnkzz4pdzrh1dfzm9a";
+ revision = "1";
+ editedCabalFile = "1nfh2i2g4xzqr534hkwa7gygkgsdvyjk4g075n78dp6r48zynbz6";
+ libraryHaskellDepends = [
+ base byteorder bytestring containers Glob haskell-src
+ haskell-src-meta HUnit mainland-pretty normaldistribution
+ old-locale parsec random regex-posix syb template-haskell th-lift
+ time transformers
+ ];
+ testHaskellDepends = [
+ base byteorder bytestring Cabal containers directory Glob
+ haskell-src haskell-src-meta HUnit mainland-pretty mtl old-locale
+ parsec QuickCheck regex-posix syb template-haskell test-framework
+ test-framework-hunit test-framework-quickcheck2 th-lift time
+ transformers
+ ];
+ homepage = "http://www.padsproj.org";
+ description = "PADS data description language for Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"pagarme" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, lens, text
, wreq
@@ -153001,8 +154649,8 @@ self: {
}:
mkDerivation {
pname = "pandoc-crossref";
- version = "0.3.0.3";
- sha256 = "1w24s76w5jj6nngq0q13m7szqs2d5jc70gm94n37pwvxgm4kabrc";
+ version = "0.3.1.0";
+ sha256 = "11lvsr30f0x2vsqnwr4s3j9v3n4zxx5a83qc95j5c1xijlrzcc3k";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -153508,8 +155156,8 @@ self: {
({ mkDerivation, base, semigroups }:
mkDerivation {
pname = "papa-base-export";
- version = "0.3.1";
- sha256 = "13gd3ldpiwmms3di80smk68x4mf9nigy0irz506cayd9bwqpw3jv";
+ version = "0.4";
+ sha256 = "120b3ks9h3m9w6z365hmqrcp349kh3w8ii4kgki1zxjhh9z05mnm";
libraryHaskellDepends = [ base semigroups ];
homepage = "https://github.com/qfpl/papa";
description = "Prelude with only useful functions";
@@ -155060,6 +156708,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "path-extra_0_1_0" = callPackage
+ ({ mkDerivation, base, path }:
+ mkDerivation {
+ pname = "path-extra";
+ version = "0.1.0";
+ sha256 = "0y6lx93xj6lnlwgvv8lwifnwkniz3grcgp8ic92pshpqcxyd90a4";
+ libraryHaskellDepends = [ base path ];
+ description = "Some extensions to Chris Done's path library, for use with urlpath and attoparsec-uri";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"path-io" = callPackage
({ mkDerivation, base, containers, directory, dlist, exceptions
, filepath, hspec, path, temporary, time, transformers, unix-compat
@@ -156250,6 +157910,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "perf_0_4_0_1" = callPackage
+ ({ mkDerivation, base, containers, deepseq, doctest, foldl, rdtsc
+ , text, time, transformers
+ }:
+ mkDerivation {
+ pname = "perf";
+ version = "0.4.0.1";
+ sha256 = "1am2wzj43gi0naz5mwpvja9i005g05d6gpkqw0qvdy63mddz9b96";
+ libraryHaskellDepends = [
+ base containers deepseq foldl rdtsc text time transformers
+ ];
+ testHaskellDepends = [ base doctest ];
+ homepage = "https://github.com/tonyday567/perf#readme";
+ description = "Low-level run time measurement";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"perfect-hash-generator" = callPackage
({ mkDerivation, base, binary, bytestring, containers, data-ordlist
, directory, filepath, hashable, HUnit, optparse-applicative
@@ -156400,25 +158078,6 @@ self: {
}) {};
"persistable-record" = callPackage
- ({ mkDerivation, array, base, containers, dlist, names-th
- , product-isomorphic, quickcheck-simple, template-haskell
- , th-data-compat, transformers
- }:
- mkDerivation {
- pname = "persistable-record";
- version = "0.6.0.2";
- sha256 = "1sj2izz8ppam28qcja02jj6fx7khdjmnr4xn2yglbxyzs91fjg44";
- libraryHaskellDepends = [
- array base containers dlist names-th product-isomorphic
- template-haskell th-data-compat transformers
- ];
- testHaskellDepends = [ base quickcheck-simple ];
- homepage = "http://khibino.github.io/haskell-relational-record/";
- description = "Binding between SQL database values and haskell records";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "persistable-record_0_6_0_3" = callPackage
({ mkDerivation, array, base, containers, dlist, names-th
, product-isomorphic, quickcheck-simple, template-haskell
, th-data-compat, transformers
@@ -156435,7 +158094,6 @@ self: {
homepage = "http://khibino.github.io/haskell-relational-record/";
description = "Binding between SQL database values and haskell records";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"persistable-types-HDBC-pg" = callPackage
@@ -157307,6 +158965,8 @@ self: {
pname = "pgdl";
version = "10.10";
sha256 = "0wqj7i4shdcy80aiib0dkp3y6ccilqq4g3p8bvndh4vl3cyd2pwv";
+ revision = "1";
+ editedCabalFile = "17d525qv26y15zbc7kl0vdxfi7n1v1g8v9r821a96dd49zkccsck";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -157924,6 +159584,22 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "pig" = callPackage
+ ({ mkDerivation, base, containers, random, random-shuffle }:
+ mkDerivation {
+ pname = "pig";
+ version = "0.0.1";
+ sha256 = "0fh8lv85h2w6gs7zv1bqb4gc4id84c3vp3ivdrd9cvnxksr50ffr";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base containers random random-shuffle ];
+ executableHaskellDepends = [
+ base containers random random-shuffle
+ ];
+ description = "dice game";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"piki" = callPackage
({ mkDerivation, base, mtl, parsec, text }:
mkDerivation {
@@ -159089,16 +160765,17 @@ self: {
({ mkDerivation, base, bifunctors, bytestring, conceit, doctest
, foldl, free, microlens, pipes, pipes-bytestring
, pipes-concurrency, pipes-group, pipes-parse, pipes-safe
- , pipes-text, tasty, tasty-hunit, text, transformers, void
+ , pipes-text, streaming, tasty, tasty-hunit, text, transformers
+ , void
}:
mkDerivation {
pname = "pipes-transduce";
- version = "0.4.1";
- sha256 = "10lf6fnnq1zf9v04l00f1nd4s6qq6a0pcdl72vxczmj6rn3c0kgq";
+ version = "0.4.3.2";
+ sha256 = "0q4xc2r0yzyj6gpg16z9scdxm0a3fjzsm1r6qihkr2zks9sac36x";
libraryHaskellDepends = [
base bifunctors bytestring conceit foldl free microlens pipes
pipes-bytestring pipes-concurrency pipes-group pipes-parse
- pipes-safe pipes-text text transformers void
+ pipes-safe pipes-text streaming text transformers void
];
testHaskellDepends = [
base doctest foldl free pipes tasty tasty-hunit text
@@ -159561,6 +161238,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "plex" = callPackage
+ ({ mkDerivation, async, base, bytestring, deepseq, hspec
+ , QuickCheck, unix
+ }:
+ mkDerivation {
+ pname = "plex";
+ version = "0.2.0.0";
+ sha256 = "0y0a3d30k4d3111smfidzzv1z7cq0i47wxvyh9iwbnn223s3446y";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ async base bytestring deepseq unix ];
+ testHaskellDepends = [
+ async base bytestring deepseq hspec QuickCheck unix
+ ];
+ homepage = "https://github.com/phlummox/hs-plex#readme";
+ description = "run a subprocess, combining stdout and stderr";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"plist" = callPackage
({ mkDerivation, base, base64-bytestring, bytestring, hxt }:
mkDerivation {
@@ -159813,8 +161509,8 @@ self: {
}:
mkDerivation {
pname = "ploton";
- version = "1.1.2.0";
- sha256 = "11a4kij1bz38bklaanlsyzwdvps7v9c0c8w4yblmxxdwxwdfvi6g";
+ version = "1.1.3.0";
+ sha256 = "1bq2qnzlms6j6hl7d728h5mc672h0lpbxcxfh2bz327nhhqid3hn";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -160150,8 +161846,8 @@ self: {
}:
mkDerivation {
pname = "pointfree-fancy";
- version = "1.1.1.4";
- sha256 = "1llqlxcgafbgzb84gzgwldb0lsa9nnqsn3irbrlljralx2zfhxk3";
+ version = "1.1.1.5";
+ sha256 = "0wrsk5l83dzq0pv0dy24gil0mipw1yalalivjq92qx0dv68z15ja";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -160165,7 +161861,7 @@ self: {
transformers
];
description = "Tool for refactoring expressions into pointfree form";
- license = "unknown";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -161113,8 +162809,8 @@ self: {
}:
mkDerivation {
pname = "posix-paths";
- version = "0.2.1.3";
- sha256 = "1z5brmqraz2smpgbp3ldd9da0cz78glc8bfc5l6842qgc588iljp";
+ version = "0.2.1.4";
+ sha256 = "0axaq7249nmg17b0qx9374xhgb7wzfdaa6pkriq218h4jnfiq1r6";
libraryHaskellDepends = [ base bytestring unix ];
testHaskellDepends = [
base bytestring doctest HUnit QuickCheck unix
@@ -161126,6 +162822,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "posix-paths_0_2_1_5" = callPackage
+ ({ mkDerivation, base, bytestring, criterion, directory, doctest
+ , filepath, HUnit, process, QuickCheck, unix
+ }:
+ mkDerivation {
+ pname = "posix-paths";
+ version = "0.2.1.5";
+ sha256 = "1pyi25gz2r3pc64f1i5awyp3mg5w74ik9wh5s9i9hs7bfmkjk1as";
+ libraryHaskellDepends = [ base bytestring unix ];
+ testHaskellDepends = [
+ base bytestring doctest HUnit QuickCheck unix
+ ];
+ benchmarkHaskellDepends = [
+ base bytestring criterion directory filepath process unix
+ ];
+ description = "POSIX filepath/directory functionality";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"posix-pty" = callPackage
({ mkDerivation, base, bytestring, process, unix, util }:
mkDerivation {
@@ -161467,7 +163183,7 @@ self: {
"postgresql-query" = callPackage
({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring
- , containers, data-default, derive, either, exceptions, file-embed
+ , containers, data-default, derive, exceptions, file-embed
, haskell-src-meta, hreader, hset, inflections, monad-control
, monad-logger, mtl, postgresql-simple, QuickCheck
, quickcheck-assertions, quickcheck-instances, resource-pool
@@ -161477,12 +163193,12 @@ self: {
}:
mkDerivation {
pname = "postgresql-query";
- version = "3.3.0";
- sha256 = "0ilny7vj5ch77kic1bmpm160phv3yxm1cd3ksj6j8gc2nvaysrr8";
+ version = "3.4.0";
+ sha256 = "1f69rjwhww6knivk8gkx82b8xp8hkg0mhb9z2lm69vv3k5fxv8mb";
libraryHaskellDepends = [
aeson attoparsec base blaze-builder bytestring containers
- data-default either exceptions file-embed haskell-src-meta hreader
- hset inflections monad-control monad-logger mtl postgresql-simple
+ data-default exceptions file-embed haskell-src-meta hreader hset
+ inflections monad-control monad-logger mtl postgresql-simple
resource-pool semigroups template-haskell text th-lift
th-lift-instances time transformers transformers-base
transformers-compat type-fun
@@ -161730,8 +163446,8 @@ self: {
}:
mkDerivation {
pname = "postgresql-typed";
- version = "0.5.2";
- sha256 = "0ws9xmh199jsvdmxjxkhm59j05ljfsrf16xchkbxqd8p1pg8786c";
+ version = "0.5.3.0";
+ sha256 = "0apq662lhkjc1xl4alpz20yz20x6mf3gz6li7wb86sp94441rh5k";
libraryHaskellDepends = [
aeson array attoparsec base binary bytestring containers cryptonite
haskell-src-meta HDBC memory network old-locale postgresql-binary
@@ -162008,14 +163724,15 @@ self: {
}:
mkDerivation {
pname = "potoki-hasql";
- version = "1.1";
- sha256 = "03bssi3qdayrxrsy5ykf38r5kbl0m5svfm76k4yrwcpzpqk5h0sh";
+ version = "1.2";
+ sha256 = "1viq19rycrm8zdwj3anqam45hlmdlh9wqji3xf120nk8ffqnwks1";
libraryHaskellDepends = [
base bytestring hasql potoki potoki-core profunctors text vector
];
homepage = "https://github.com/metrix-ai/potoki-hasql";
description = "Integration of \"potoki\" and \"hasql\"";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"potrace" = callPackage
@@ -162108,6 +163825,7 @@ self: {
homepage = "https://github.com/agrafix/powerqueue#readme";
description = "A distributed worker backend for powerqueu";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"powerqueue-levelmem" = callPackage
@@ -162313,23 +164031,20 @@ self: {
"preamble" = callPackage
({ mkDerivation, aeson, base, basic-prelude, exceptions
, fast-logger, lens, lifted-base, monad-control, monad-logger
- , MonadRandom, mtl, network, resourcet, safe, shakers
- , template-haskell, text, text-manipulate, time, transformers-base
+ , MonadRandom, mtl, network, resourcet, safe, template-haskell
+ , text, text-manipulate, time, transformers-base
, unordered-containers, uuid
}:
mkDerivation {
pname = "preamble";
- version = "0.0.59";
- sha256 = "0i9blxkdjm4fm288qr6isl3jyjrw6x6x58z6lvaj62xr3y4rqd43";
- isLibrary = true;
- isExecutable = true;
+ version = "0.0.60";
+ sha256 = "1ygpyaniv4f9ahmnrpkirhmfry40afqwaici4ksrnr3pz64fsll5";
libraryHaskellDepends = [
aeson base basic-prelude exceptions fast-logger lens lifted-base
monad-control monad-logger MonadRandom mtl network resourcet safe
template-haskell text text-manipulate time transformers-base
unordered-containers uuid
];
- executableHaskellDepends = [ base shakers ];
homepage = "https://github.com/swift-nav/preamble";
description = "Yet another prelude";
license = stdenv.lib.licenses.mit;
@@ -163781,8 +165496,8 @@ self: {
}:
mkDerivation {
pname = "process-streaming";
- version = "0.9.2.1";
- sha256 = "1p1nfb09sg9krwm7k6j8y5ggbc28yddlkf2yifs06iqfkcmbsbm6";
+ version = "0.9.3.0";
+ sha256 = "06x2xcjbhwhnwyml8kxqa5wl89mr9fbbpgplysd68d01yhm2dnmr";
libraryHaskellDepends = [
base bifunctors bytestring conceit free kan-extensions pipes
pipes-bytestring pipes-concurrency pipes-parse pipes-safe
@@ -163971,6 +165686,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "product-profunctors_0_10_0_0" = callPackage
+ ({ mkDerivation, base, bifunctors, contravariant, criterion
+ , deepseq, profunctors, tagged, template-haskell
+ }:
+ mkDerivation {
+ pname = "product-profunctors";
+ version = "0.10.0.0";
+ sha256 = "0s0ssl2900r16992mgl0idkryg3l7psp8nljyg9brr7fqa3pd3dd";
+ libraryHaskellDepends = [
+ base bifunctors contravariant profunctors tagged template-haskell
+ ];
+ testHaskellDepends = [ base profunctors ];
+ benchmarkHaskellDepends = [ base criterion deepseq ];
+ homepage = "https://github.com/tomjaguarpaw/product-profunctors";
+ description = "product-profunctors";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"prof2dot" = callPackage
({ mkDerivation, base, containers, filepath, haskell98, parsec }:
mkDerivation {
@@ -164373,20 +166107,25 @@ self: {
}) {};
"prologue" = callPackage
- ({ mkDerivation, base, bifunctors, binary, cond, container, convert
- , data-default, data-layer, errors, functor-utils, impossible, lens
- , lens-utils, mtl, pretty-show, string-qq, text, transformers
- , transformers-base, tuple, typelevel, vector
+ ({ mkDerivation, base, bifunctors, binary, comonad, cond, container
+ , convert, data-default, deepseq, deriving-compat, either, errors
+ , exceptions, functor-utils, ghc-prim, impossible, lens, lens-utils
+ , monoid, mtl, neat-interpolation, placeholders, pointed
+ , pretty-show, primitive, raw-strings-qq, recursion-schemes
+ , semigroupoids, string-qq, template-haskell, text, transformers
+ , transformers-base, typelevel, vector
}:
mkDerivation {
pname = "prologue";
- version = "1.0.7";
- sha256 = "0nwk6m93c2mgzagzad1zkp5p6wnjdz668bw109vwwb0yi23c3s1p";
+ version = "3.1.3";
+ sha256 = "1nzm4hgjwpbxmvd1y1x58smxbk5ahfyygi22jwwyzqaknrgs5ara";
libraryHaskellDepends = [
- base bifunctors binary cond container convert data-default
- data-layer errors functor-utils impossible lens lens-utils mtl
- pretty-show string-qq text transformers transformers-base tuple
- typelevel vector
+ base bifunctors binary comonad cond container convert data-default
+ deepseq deriving-compat either errors exceptions functor-utils
+ ghc-prim impossible lens lens-utils monoid mtl neat-interpolation
+ placeholders pointed pretty-show primitive raw-strings-qq
+ recursion-schemes semigroupoids string-qq template-haskell text
+ transformers transformers-base typelevel vector
];
homepage = "https://github.com/wdanilo/prologue";
description = "Better, more general Prelude exporting common utilities";
@@ -164521,6 +166260,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "proof-combinators" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "proof-combinators";
+ version = "0.1.0.0";
+ sha256 = "1wcm5wxzqm4lq340l3ga15cmjfabpf8njnvma3zagwyhmndabxfw";
+ libraryHaskellDepends = [ base ];
+ homepage = "http://nikivazou.github.io/";
+ description = "Proof Combinators used in Liquid Haskell for Theorem Proving";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"propane" = callPackage
({ mkDerivation, base, colour, containers, directory, filepath
, repa, repa-devil, spawn
@@ -165002,18 +166753,16 @@ self: {
"protolude" = callPackage
({ mkDerivation, array, async, base, bytestring, containers
- , deepseq, ghc-prim, hashable, mtl, mtl-compat, safe, stm, text
+ , deepseq, ghc-prim, hashable, mtl, mtl-compat, stm, text
, transformers, transformers-compat
}:
mkDerivation {
pname = "protolude";
- version = "0.2.1";
- sha256 = "1r2baxx6q4z75sswirlqsnyynk4i7amfmpzajggh31fbz13hxgxx";
- revision = "2";
- editedCabalFile = "03w9051jdbldbid9iyvibdhxdr73cawrvp9qdsc0czxix5ggfr75";
+ version = "0.2.2";
+ sha256 = "0z251xxv8rhds981acdf6dr34ac2kc062mbq9gl2nj339grhqpb8";
libraryHaskellDepends = [
array async base bytestring containers deepseq ghc-prim hashable
- mtl mtl-compat safe stm text transformers transformers-compat
+ mtl mtl-compat stm text transformers transformers-compat
];
homepage = "https://github.com/sdiehl/protolude";
description = "A small prelude";
@@ -165290,8 +167039,8 @@ self: {
}:
mkDerivation {
pname = "ptr";
- version = "0.16.2";
- sha256 = "0sa3akkhydyxr7caig8z6bjwiaarr171qazfbwm9kh8x1pdah5dv";
+ version = "0.16.4";
+ sha256 = "0na3by8mh43cd0xn1s1l7hi3mmm3damr9swgv6mzyg9lhilsndxb";
libraryHaskellDepends = [
base base-prelude bug bytestring contravariant mtl profunctors
semigroups text time transformers
@@ -165965,8 +167714,8 @@ self: {
}:
mkDerivation {
pname = "push-notify-apn";
- version = "0.1.0.5";
- sha256 = "1gxna2ikq6q1gnarqwsy1xcbqz19j5015girn4mc52sai852ny5z";
+ version = "0.1.0.7";
+ sha256 = "1rkd7vr2l5136jv1afknqvg6lgvny5wdadh3fcy2k5phihmv9qfd";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -166100,6 +167849,32 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "pusher-http-haskell_1_5_1_4" = callPackage
+ ({ mkDerivation, aeson, base, base16-bytestring, bytestring
+ , cryptonite, hashable, hspec, http-client, http-types, memory
+ , QuickCheck, scientific, text, time, transformers
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "pusher-http-haskell";
+ version = "1.5.1.4";
+ sha256 = "1h6dl0h9ybbnjqs834bd1n5w4cx0vdbmi52mqdk2y9y267qc9k4a";
+ libraryHaskellDepends = [
+ aeson base base16-bytestring bytestring cryptonite hashable
+ http-client http-types memory text time transformers
+ unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson base base16-bytestring bytestring cryptonite hspec
+ http-client http-types QuickCheck scientific text time transformers
+ unordered-containers vector
+ ];
+ homepage = "https://github.com/pusher-community/pusher-http-haskell";
+ description = "Haskell client library for the Pusher HTTP API";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"pusher-ws" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, deepseq
, hashable, http-conduit, lens, lens-aeson, network, scientific
@@ -167210,15 +168985,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "quickcheck-classes_0_4_5" = callPackage
+ "quickcheck-classes_0_4_9" = callPackage
({ mkDerivation, aeson, base, bifunctors, containers, primitive
, QuickCheck, semigroupoids, semigroups, tagged, transformers
, vector
}:
mkDerivation {
pname = "quickcheck-classes";
- version = "0.4.5";
- sha256 = "0nbfizi0f7cacspv5w008gmmw0nvbjv6nafsxifiy7mqhdlv4qx5";
+ version = "0.4.9";
+ sha256 = "1m5qszs50hjfycds84arfcfqj7z4l622479bd2w55vin49mp12pn";
libraryHaskellDepends = [
aeson base bifunctors containers primitive QuickCheck semigroupoids
semigroups tagged transformers
@@ -167253,6 +169028,8 @@ self: {
pname = "quickcheck-instances";
version = "0.3.18";
sha256 = "1bh1pzz5fdcqvzdcirqxna6fnjms02min5md716299g5niz46w55";
+ revision = "1";
+ editedCabalFile = "1sngfq3v71bvgjsl8cj5kh65m3fziwy8dkvwjzs0kxfrzr87faly";
libraryHaskellDepends = [
array base base-compat bytestring case-insensitive containers
hashable old-time QuickCheck scientific tagged text time
@@ -167422,6 +169199,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "quickcheck-simple_0_1_0_3" = callPackage
+ ({ mkDerivation, base, QuickCheck }:
+ mkDerivation {
+ pname = "quickcheck-simple";
+ version = "0.1.0.3";
+ sha256 = "08f87mqnm04sgi21q5snvr4li3zm4m86jydc3s4b71i9czy4q8wg";
+ libraryHaskellDepends = [ base QuickCheck ];
+ description = "Test properties and default-mains for QuickCheck";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"quickcheck-special" = callPackage
({ mkDerivation, base, QuickCheck, special-values }:
mkDerivation {
@@ -167983,18 +169772,14 @@ self: {
}) {};
"radian" = callPackage
- ({ mkDerivation, base, directory, doctest, filepath, lens
- , profunctors, QuickCheck, template-haskell
- }:
+ ({ mkDerivation, base, HUnit, lens, profunctors }:
mkDerivation {
pname = "radian";
- version = "0.0.6";
- sha256 = "0p6caw8vnlzmamcka9wfsbgsfffgp2y6jjf5yyibvnb9av8zdnzp";
+ version = "0.1";
+ sha256 = "150vb9wk73avh8rrsz92y1fcwlm30w4k23lbdncb8ivinqhdi4pv";
libraryHaskellDepends = [ base profunctors ];
- testHaskellDepends = [
- base directory doctest filepath lens QuickCheck template-haskell
- ];
- homepage = "https://github.com/NICTA/radian";
+ testHaskellDepends = [ base HUnit lens ];
+ homepage = "https://github.com/qfpl/radian";
description = "Isomorphisms for measurements that use radians";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -168422,8 +170207,8 @@ self: {
({ mkDerivation, base, containers, microspec, tf-random, vector }:
mkDerivation {
pname = "rando";
- version = "0.0.0.2";
- sha256 = "0c12z3nd9g30chlz3ylcajxjbwm868nnsnlj6xc803gyficw2vdp";
+ version = "0.0.0.4";
+ sha256 = "1cvwmp4882xdavfzhg5hwssddg0wjgwh8jxpd3251plf96jz9f4f";
libraryHaskellDepends = [ base tf-random vector ];
testHaskellDepends = [
base containers microspec tf-random vector
@@ -169570,22 +171355,22 @@ self: {
}) {};
"rdf4h" = callPackage
- ({ mkDerivation, base, binary, bytestring, containers, criterion
- , deepseq, directory, hashable, hgal, HTTP, HUnit, hxt, network
- , network-uri, parsec, QuickCheck, safe, tasty, tasty-hunit
- , tasty-quickcheck, text, text-binary, unordered-containers
- , utf8-string
+ ({ mkDerivation, attoparsec, base, binary, bytestring, containers
+ , criterion, deepseq, directory, hashable, hgal, HTTP, HUnit, hxt
+ , mtl, network, network-uri, parsec, parsers, QuickCheck, safe
+ , tasty, tasty-hunit, tasty-quickcheck, text, text-binary
+ , unordered-containers, utf8-string
}:
mkDerivation {
pname = "rdf4h";
- version = "3.0.1";
- sha256 = "0d45gwldxh1rai1jsvxnb794wdhvxqhjnnqfyh9ql0rzwcwzbv54";
+ version = "3.0.2";
+ sha256 = "0a9klg4a6ilgmv1p3aa55p5pdimgs9xays8msy01gz38441nnpd3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base binary bytestring containers deepseq directory hashable hgal
- HTTP hxt network network-uri parsec text text-binary
- unordered-containers utf8-string
+ attoparsec base binary bytestring containers deepseq directory
+ hashable hgal HTTP hxt mtl network network-uri parsec parsers text
+ text-binary unordered-containers utf8-string
];
executableHaskellDepends = [
base containers network network-uri text
@@ -169594,7 +171379,7 @@ self: {
base bytestring containers directory HUnit network network-uri
QuickCheck safe tasty tasty-hunit tasty-quickcheck text
];
- benchmarkHaskellDepends = [ base criterion text ];
+ benchmarkHaskellDepends = [ base criterion deepseq text ];
homepage = "https://github.com/robstewart57/rdf4h";
description = "A library for RDF processing in Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -171290,12 +173075,12 @@ self: {
}) {};
"reform" = callPackage
- ({ mkDerivation, base, containers, mtl, text }:
+ ({ mkDerivation, base, containers, mtl, semigroups, text }:
mkDerivation {
pname = "reform";
- version = "0.2.7.1";
- sha256 = "0c4jh64rszp9rk62kh8nqyhafnbi5vm9lmc2rx7fx237j24j3gjr";
- libraryHaskellDepends = [ base containers mtl text ];
+ version = "0.2.7.2";
+ sha256 = "14as5chpwfrrqdfxk5g03f4zia0dx10npb802cphfq2j598mjczv";
+ libraryHaskellDepends = [ base containers mtl semigroups text ];
homepage = "http://www.happstack.com/";
description = "reform is a type-safe HTML form generation and validation library";
license = stdenv.lib.licenses.bsd3;
@@ -173759,8 +175544,8 @@ self: {
}:
mkDerivation {
pname = "rest-client";
- version = "0.5.2.1";
- sha256 = "0axilkrqjbq1l30cnm05fl0mm3ngnijnxgl6idi6mcydyrdgl14n";
+ version = "0.5.2.3";
+ sha256 = "1c4p68n3vb5w5xv0ha5bfq73qkcaqkyz0srfdn27pipy2s1h6p22";
libraryHaskellDepends = [
aeson-utils base bytestring case-insensitive data-default
exceptions http-client http-conduit http-types hxt hxt-pickle-utils
@@ -173801,6 +175586,34 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "rest-core_0_39_0_2" = callPackage
+ ({ mkDerivation, aeson, aeson-utils, base, base-compat, bytestring
+ , case-insensitive, errors, fclabels, HUnit, hxt, hxt-pickle-utils
+ , json-schema, mtl, mtl-compat, multipart, random, rest-stringmap
+ , rest-types, safe, split, test-framework, test-framework-hunit
+ , text, transformers, transformers-compat, unordered-containers
+ , uri-encode, utf8-string, uuid
+ }:
+ mkDerivation {
+ pname = "rest-core";
+ version = "0.39.0.2";
+ sha256 = "0vr538sp8i5qwgd91bzvq9fxv939imxck6358xfzlgrk6x89cr1z";
+ libraryHaskellDepends = [
+ aeson aeson-utils base base-compat bytestring case-insensitive
+ errors fclabels hxt hxt-pickle-utils json-schema mtl mtl-compat
+ multipart random rest-stringmap rest-types safe split text
+ transformers transformers-compat unordered-containers uri-encode
+ utf8-string uuid
+ ];
+ testHaskellDepends = [
+ aeson base bytestring HUnit mtl test-framework test-framework-hunit
+ transformers transformers-compat unordered-containers
+ ];
+ description = "Rest API library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"rest-example" = callPackage
({ mkDerivation, aeson, base, base-compat, bytestring, containers
, generic-aeson, generic-xmlpickler, hxt, json-schema, mtl
@@ -173835,8 +175648,8 @@ self: {
}:
mkDerivation {
pname = "rest-gen";
- version = "0.20.0.1";
- sha256 = "0fa4mz7drfy60lcg1j73qajy00byvhy759x195prj4nvbrsn5x31";
+ version = "0.20.0.3";
+ sha256 = "1kd8i5kqjsdc3pl5gpg3i3lhy807qd6x4gxc86hr9a8kkv7y7hfn";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base base-compat blaze-html Cabal code-builder directory
@@ -173894,10 +175707,8 @@ self: {
}:
mkDerivation {
pname = "rest-stringmap";
- version = "0.2.0.6";
- sha256 = "0jjj0yam4d4w36lnxk0ci7ylb9ya48y0ag3b54k9ikyg0hps7rb6";
- revision = "7";
- editedCabalFile = "14jqqpxxs7vkrf6syycrg2ymh79gl83z13kq261alw5gy8yjnszv";
+ version = "0.2.0.7";
+ sha256 = "0l2l46c1mqpxq7hi37vjhaihfyapifjaxbzyi1bdhjkybx7n9m32";
libraryHaskellDepends = [
aeson base containers hashable hxt json-schema tostring
unordered-containers
@@ -173913,10 +175724,8 @@ self: {
}:
mkDerivation {
pname = "rest-types";
- version = "1.14.1.1";
- sha256 = "16lnwd7rwjb67sqklrwl40bq4h8qhp3wj1893y4vs85fpdjqxq5p";
- revision = "4";
- editedCabalFile = "04s5xcjycbw9fqhmpx0kmy5wmkpgcs84vam68w428rb7y64099mb";
+ version = "1.14.1.2";
+ sha256 = "0cjxnb4zvj7iafgy9h4wq8817wkm1mvas45xcb9346kwd3yqgvmy";
libraryHaskellDepends = [
aeson base base-compat case-insensitive generic-aeson
generic-xmlpickler hxt json-schema rest-stringmap text uuid
@@ -174672,8 +176481,8 @@ self: {
}:
mkDerivation {
pname = "rio";
- version = "0.0.3.0";
- sha256 = "1mbxd2v0n0hbrmb1xh27snxxp1r8k87g4ijqsp99hnis8vmqmz84";
+ version = "0.1.0.0";
+ sha256 = "0k3r7859in1dyybc7lr3bqh91harf7g5yknwxmmsqnhlffzc6ygr";
libraryHaskellDepends = [
base bytestring containers deepseq directory exceptions filepath
hashable microlens mtl primitive process text time typed-process
@@ -174689,6 +176498,25 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "rio-orphans" = callPackage
+ ({ mkDerivation, base, exceptions, hspec, monad-control, resourcet
+ , rio, transformers-base
+ }:
+ mkDerivation {
+ pname = "rio-orphans";
+ version = "0.1.0.0";
+ sha256 = "09wy9h6smh532lrh13qzmni91yfb702x8i97r24d3ny6i3krzqi7";
+ libraryHaskellDepends = [
+ base exceptions monad-control resourcet rio transformers-base
+ ];
+ testHaskellDepends = [
+ base exceptions hspec monad-control resourcet rio transformers-base
+ ];
+ homepage = "https://github.com/commercialhaskell/rio#readme";
+ description = "Orphan instances for the RIO type in the rio package";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"riot" = callPackage
({ mkDerivation, base, containers, directory, haskell98, mtl
, ncurses, old-locale, packedstring, process, unix
@@ -175114,8 +176942,8 @@ self: {
}:
mkDerivation {
pname = "robots-txt";
- version = "0.4.1.4";
- sha256 = "18dkha42dcxl9f9771wpkji11m12v139wnscb47bm7s693w7p4nc";
+ version = "0.4.1.5";
+ sha256 = "025dm3rv4cpig8j02yzkr7xinzfcqmfiaaj8x5kzjw8mgcb1qpn3";
libraryHaskellDepends = [
attoparsec base bytestring old-locale time
];
@@ -175275,6 +177103,7 @@ self: {
];
description = "Bindings to Roku's External Control API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"roles" = callPackage
@@ -175806,6 +177635,32 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "rowdy" = callPackage
+ ({ mkDerivation, base, containers, dlist, hspec, mtl }:
+ mkDerivation {
+ pname = "rowdy";
+ version = "0.0.1.0";
+ sha256 = "19nafk4zmhx76j0qzg1d5kh6mnzwnr5x3kvvxi56x24kfmvrq5qq";
+ libraryHaskellDepends = [ base containers dlist mtl ];
+ testHaskellDepends = [ base containers dlist hspec mtl ];
+ homepage = "https://github.com/parsonsmatt/rowdy#readme";
+ description = "An EDSL for web application routes";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "rowdy-yesod" = callPackage
+ ({ mkDerivation, base, hspec, rowdy, yesod-core }:
+ mkDerivation {
+ pname = "rowdy-yesod";
+ version = "0.0.1.0";
+ sha256 = "17k9bbxwpmxpswkmax6jrlcfrp6qhgdkjixsp4d6rn7mj676010g";
+ libraryHaskellDepends = [ base rowdy yesod-core ];
+ testHaskellDepends = [ base hspec rowdy yesod-core ];
+ homepage = "https://github.com/parsonsmatt/rowdy#readme";
+ description = "An EDSL for web application routes";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"rowrecord" = callPackage
({ mkDerivation, base, containers, template-haskell }:
mkDerivation {
@@ -178403,6 +180258,35 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "scotty_0_11_1" = callPackage
+ ({ mkDerivation, aeson, async, base, blaze-builder, bytestring
+ , case-insensitive, data-default-class, directory, exceptions, fail
+ , hpc-coveralls, hspec, hspec-discover, hspec-wai, http-types
+ , lifted-base, monad-control, mtl, nats, network, regex-compat
+ , text, transformers, transformers-base, transformers-compat, wai
+ , wai-extra, warp
+ }:
+ mkDerivation {
+ pname = "scotty";
+ version = "0.11.1";
+ sha256 = "1xcdfx43v1p2a20jjmnb70v2sm34iprn17ssa81fcfnabcn4blhw";
+ libraryHaskellDepends = [
+ aeson base blaze-builder bytestring case-insensitive
+ data-default-class exceptions fail http-types monad-control mtl
+ nats network regex-compat text transformers transformers-base
+ transformers-compat wai wai-extra warp
+ ];
+ testHaskellDepends = [
+ async base bytestring data-default-class directory hpc-coveralls
+ hspec hspec-wai http-types lifted-base network text wai
+ ];
+ testToolDepends = [ hspec-discover ];
+ homepage = "https://github.com/scotty-web/scotty";
+ description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"scotty-binding-play" = callPackage
({ mkDerivation, base, bytestring, hspec, http-client, HUnit, mtl
, scotty, template-haskell, text, transformers
@@ -179413,6 +181297,24 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "selda_0_2_0_0" = callPackage
+ ({ mkDerivation, base, bytestring, exceptions, hashable, mtl
+ , psqueues, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "selda";
+ version = "0.2.0.0";
+ sha256 = "1l9ad4d1m0ylfihg0hpfxanxil09c658jl1bmgzn8268akqay9nj";
+ libraryHaskellDepends = [
+ base bytestring exceptions hashable mtl psqueues text time
+ unordered-containers
+ ];
+ homepage = "https://selda.link";
+ description = "Multi-backend, high-level EDSL for interacting with SQL databases";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"selda-postgresql" = callPackage
({ mkDerivation, base, bytestring, exceptions, postgresql-libpq
, selda, text
@@ -179421,6 +181323,8 @@ self: {
pname = "selda-postgresql";
version = "0.1.7.2";
sha256 = "06z5zrika018433p5l011wxc308zw7l9ilnkgwcykagsnmai4y7z";
+ revision = "1";
+ editedCabalFile = "08f2xdfpmbwhrwkjaqfmd9k25c3xn3p477d7a1mnnn7kf7328782";
libraryHaskellDepends = [
base bytestring exceptions postgresql-libpq selda text
];
@@ -179437,8 +181341,8 @@ self: {
pname = "selda-sqlite";
version = "0.1.6.0";
sha256 = "1473igqgjs5282rykqj1zg7420mfh3sbqy74nx1cwbm82j8shyy6";
- revision = "1";
- editedCabalFile = "0yf1n9iaaafnllkb2yi38ncyd3q062g4p7ln9ypb6h8gcym8s8m1";
+ revision = "2";
+ editedCabalFile = "198pg9i0lfx3fwf7b7cw0x5kial6vbf0dqwh18jnh7na3pyn1jr6";
libraryHaskellDepends = [
base direct-sqlite directory exceptions selda text
];
@@ -181093,6 +182997,28 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "servant-elm_0_5_0_0" = callPackage
+ ({ mkDerivation, aeson, base, Diff, elm-export, hspec, HUnit, lens
+ , servant, servant-foreign, text, wl-pprint-text
+ }:
+ mkDerivation {
+ pname = "servant-elm";
+ version = "0.5.0.0";
+ sha256 = "0l5rjml46qbnq4p3d7zjk8zl9gnpz8m5n6n8yf8kgy89ybm6xnfr";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base elm-export lens servant servant-foreign text wl-pprint-text
+ ];
+ testHaskellDepends = [
+ aeson base Diff elm-export hspec HUnit servant text
+ ];
+ homepage = "http://github.com/mattjbray/servant-elm#readme";
+ description = "Automatically derive Elm functions to query servant webservices";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-examples" = callPackage
({ mkDerivation, aeson, base, bytestring, directory, either
, http-types, js-jquery, lucid, random, servant, servant-client
@@ -181245,6 +183171,30 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "servant-github-webhook_0_4_1_0" = callPackage
+ ({ mkDerivation, aeson, base, base16-bytestring, bytestring
+ , cryptonite, github, github-webhooks, http-types, memory, servant
+ , servant-server, string-conversions, text, transformers
+ , unordered-containers, wai, warp
+ }:
+ mkDerivation {
+ pname = "servant-github-webhook";
+ version = "0.4.1.0";
+ sha256 = "0v6gd7swhl58x3sqbb5cmn5ac6x1p5mg7jqbwk9ny9bzggz9pglb";
+ libraryHaskellDepends = [
+ aeson base base16-bytestring bytestring cryptonite github
+ github-webhooks http-types memory servant servant-server
+ string-conversions text transformers unordered-containers wai
+ ];
+ testHaskellDepends = [
+ aeson base bytestring servant-server text transformers wai warp
+ ];
+ homepage = "https://github.com/tsani/servant-github-webhook";
+ description = "Servant combinators to facilitate writing GitHub webhooks";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-haxl-client" = callPackage
({ mkDerivation, aeson, async, attoparsec, base, bytestring
, deepseq, either, exceptions, hashable, haxl, hspec, http-client
@@ -181510,10 +183460,8 @@ self: {
({ mkDerivation, base, safe, servant, servant-server, text }:
mkDerivation {
pname = "servant-pagination";
- version = "1.0.0";
- sha256 = "1cxd9sqryk619ss7x55w8xh4y3dkxl0gcdr3kawryzcm64qlgyja";
- revision = "1";
- editedCabalFile = "0y9mg8jaag07f89krsk2n3y635rjgmcym1kx130s7hb3h3ly7713";
+ version = "2.0.0";
+ sha256 = "1z6sr43ir9sl85x65yfj21s77y1fqwzfmrfgjlqdas2zygd3fhh3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base safe servant servant-server text ];
@@ -182006,6 +183954,37 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-tracing" = callPackage
+ ({ mkDerivation, aeson, async, base, bytestring, bytestring-lexing
+ , containers, hashable, http-api-data, http-client, HUnit
+ , lifted-base, monad-control, mtl, QuickCheck, random, servant
+ , servant-server, tasty, tasty-hunit, tasty-quickcheck, text, time
+ , transformers, unordered-containers, wai, warp
+ }:
+ mkDerivation {
+ pname = "servant-tracing";
+ version = "0.1.0.0";
+ sha256 = "0wpybm1vl1bh3sj3vam8y40a0sjrx2ys761jyqrj2dnqymk8xc10";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson async base bytestring bytestring-lexing containers hashable
+ http-api-data http-client lifted-base monad-control mtl random
+ servant servant-server text time unordered-containers wai
+ ];
+ executableHaskellDepends = [
+ async base bytestring containers http-client lifted-base
+ monad-control mtl servant servant-server text transformers wai warp
+ ];
+ testHaskellDepends = [
+ aeson base containers http-api-data HUnit monad-control mtl
+ QuickCheck tasty tasty-hunit tasty-quickcheck text time
+ transformers
+ ];
+ homepage = "https://github.com/ChrisCoffey/servant-tracing#readme";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"servant-websockets" = callPackage
({ mkDerivation, aeson, async, base, bytestring, conduit
, exceptions, resourcet, servant-server, text, wai, wai-websockets
@@ -183081,6 +185060,40 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "shake_0_16_4" = callPackage
+ ({ mkDerivation, base, binary, bytestring, deepseq, directory
+ , extra, filepath, hashable, js-flot, js-jquery, primitive, process
+ , QuickCheck, random, time, transformers, unix
+ , unordered-containers, utf8-string
+ }:
+ mkDerivation {
+ pname = "shake";
+ version = "0.16.4";
+ sha256 = "0dhlkcn1zsg1w97vzs1yrpkn6iwhlzh36dwclx2lafzbdjja6cmp";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ base binary bytestring deepseq directory extra filepath hashable
+ js-flot js-jquery primitive process random time transformers unix
+ unordered-containers utf8-string
+ ];
+ executableHaskellDepends = [
+ base binary bytestring deepseq directory extra filepath hashable
+ js-flot js-jquery primitive process random time transformers unix
+ unordered-containers utf8-string
+ ];
+ testHaskellDepends = [
+ base binary bytestring deepseq directory extra filepath hashable
+ js-flot js-jquery primitive process QuickCheck random time
+ transformers unix unordered-containers utf8-string
+ ];
+ homepage = "https://shakebuild.com";
+ description = "Build system library, like Make, but more accurate dependencies";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"shake-ats" = callPackage
({ mkDerivation, base, binary, dependency, directory, hashable
, hs2ats, language-ats, microlens, microlens-th, shake, shake-ext
@@ -183088,8 +185101,8 @@ self: {
}:
mkDerivation {
pname = "shake-ats";
- version = "1.5.0.11";
- sha256 = "1i7ijgy5n0lqzmmggsbf4vf55y3yxz2anlhrw6n3a4jsb4ram3lx";
+ version = "1.6.0.2";
+ sha256 = "0imvw9bivp2dzs4086c481w7ss7z8dvphn0l163dkyzxdw8xgkzl";
libraryHaskellDepends = [
base binary dependency directory hashable hs2ats language-ats
microlens microlens-th shake shake-ext text
@@ -183118,19 +185131,21 @@ self: {
}) {};
"shake-ext" = callPackage
- ({ mkDerivation, base, Cabal, composition-prelude, directory, shake
- , template-haskell
+ ({ mkDerivation, base, Cabal, composition-prelude, cpphs, directory
+ , shake, template-haskell
}:
mkDerivation {
pname = "shake-ext";
- version = "2.7.0.5";
- sha256 = "1s69gvxjjn1s8smlhbrc1dvq1saivpslp7150xwavmxkiynp54lc";
+ version = "2.11.0.0";
+ sha256 = "1ny8fj8wdshwp5df8skl3lsl5rp30fa8yclhh696pwk433pijc8f";
libraryHaskellDepends = [
- base Cabal composition-prelude directory shake template-haskell
+ base Cabal composition-prelude cpphs directory shake
+ template-haskell
];
homepage = "https://hub.darcs.net/vmchale/shake-ext";
description = "Helper functions for linting with shake";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shake-extras" = callPackage
@@ -183279,19 +185294,15 @@ self: {
}) {};
"shakers" = callPackage
- ({ mkDerivation, base, basic-prelude, deepseq, directory
- , lifted-base, regex-compat, shake
+ ({ mkDerivation, base, basic-prelude, directory, lifted-base, shake
}:
mkDerivation {
pname = "shakers";
- version = "0.0.42";
- sha256 = "020j1j5lpl5x0hxgscy1skx1fqw77w184h86rvgkq1kli7pp9kpk";
- isLibrary = true;
- isExecutable = true;
+ version = "0.0.45";
+ sha256 = "0abzw28861k3larph3i6kaqsx4zcbk25f69y47v4i61riwdxcj0j";
libraryHaskellDepends = [
- base basic-prelude deepseq directory lifted-base regex-compat shake
+ base basic-prelude directory lifted-base shake
];
- executableHaskellDepends = [ base ];
homepage = "https://github.com/swift-nav/shakers";
description = "Shake helpers";
license = stdenv.lib.licenses.mit;
@@ -183579,23 +185590,22 @@ self: {
"shell-conduit" = callPackage
({ mkDerivation, async, base, bytestring, conduit, conduit-extra
- , control-monad-loop, directory, filepath, hspec
- , hspec-expectations, monad-control, monads-tf, process, resourcet
- , semigroups, split, template-haskell, text, transformers
- , transformers-base, unix
+ , directory, filepath, hspec, hspec-expectations, monads-tf
+ , process, resourcet, semigroups, split, template-haskell, text
+ , transformers, unix, unliftio
}:
mkDerivation {
pname = "shell-conduit";
- version = "4.6.1";
- sha256 = "0hmdfrq2i1smgn6sjnxxzz4hyx9x8i1dwjpycia2xrssn3w63lc6";
+ version = "4.7.0";
+ sha256 = "0c5yvm08l37qblqks1r23znixxas39gl1d3mlm6rq8a6zfvcacbg";
libraryHaskellDepends = [
- async base bytestring conduit conduit-extra control-monad-loop
- directory filepath monad-control monads-tf process resourcet
- semigroups split template-haskell text transformers
- transformers-base unix
+ async base bytestring conduit conduit-extra directory filepath
+ monads-tf process resourcet semigroups split template-haskell text
+ transformers unix unliftio
];
testHaskellDepends = [
- base hspec hspec-expectations template-haskell
+ base bytestring conduit conduit-extra hspec hspec-expectations
+ template-haskell
];
homepage = "https://github.com/psibi/shell-conduit";
description = "Write shell scripts with Conduit";
@@ -185065,6 +187075,22 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "simple-src-utils" = callPackage
+ ({ mkDerivation, base, extra, tasty, tasty-hunit, text }:
+ mkDerivation {
+ pname = "simple-src-utils";
+ version = "0.1";
+ sha256 = "0cfa2l7a0c8kgr0707jnk2qzh12a2564bdzzynjzcdjdqda6d5ch";
+ isLibrary = false;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ executableHaskellDepends = [ base extra text ];
+ testHaskellDepends = [ base extra tasty tasty-hunit text ];
+ homepage = "https://github.com/elaforge/simple-src-utils";
+ description = "source code editing utilities";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"simple-stacked-vm" = callPackage
({ mkDerivation, array, base, binary-state, containers, filepath
, mtl, parsec
@@ -185664,8 +187690,8 @@ self: {
}:
mkDerivation {
pname = "sitepipe";
- version = "0.2.0.0";
- sha256 = "15cynic59qkfgb8d3ca6hr3dag0cs48af266xaiblpvim39rk1fb";
+ version = "0.3.0.0";
+ sha256 = "0h1qcc9d721yczd1szylxpxc1nzi2np6xa5b1rlsck6yjr238bwz";
libraryHaskellDepends = [
aeson base bytestring containers directory exceptions filepath Glob
lens lens-aeson megaparsec MissingH mtl mustache
@@ -185704,8 +187730,8 @@ self: {
pname = "size-based";
version = "0.1.0.0";
sha256 = "1h791s39nr057w5f2fr4v7p1czw9jm0dk5qrhr26qyw97j4ysngx";
- revision = "1";
- editedCabalFile = "089942604ikg40v4nl25c4j856bylmmm06py4k2spz3y2z4k49rb";
+ revision = "2";
+ editedCabalFile = "1p4iglrrl5s47cxn520saiszw5wwr4x1kn9xbgn7awz29mv7pmd2";
libraryHaskellDepends = [
base dictionary-sharing template-haskell testing-type-modifiers
];
@@ -186158,8 +188184,8 @@ self: {
}:
mkDerivation {
pname = "slack-web";
- version = "0.2.0.3";
- sha256 = "1zxs697fmcgwrbrkzh7qgmrxcc6l75m1p300zinzqxvxv3zvk5l6";
+ version = "0.2.0.4";
+ sha256 = "1wbqz6shqm39ivmw7k2pwslaygxf4rxxbkiczxzpvd29y5pm81ah";
libraryHaskellDepends = [
aeson base containers errors http-api-data http-client
http-client-tls megaparsec mtl servant servant-client
@@ -186182,8 +188208,8 @@ self: {
}:
mkDerivation {
pname = "slate";
- version = "0.9.0.0";
- sha256 = "19619ladqp1faqdn4z2yrxvffpcr9k0s942s6rjg73i229hccv8f";
+ version = "0.10.0.0";
+ sha256 = "0f21bmv0dckdim27mm5m7vphci45h6fjbxyzpahai2nlydilhnc6";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -186977,20 +189003,21 @@ self: {
"snap-auth-cli" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, bytestring
- , clientsession, cmdargs, snap, text, unordered-containers
- , utf8-string
+ , clientsession, cmdargs, snap, snaplet-sqlite-simple
+ , sqlite-simple, text, unordered-containers, utf8-string
}:
mkDerivation {
pname = "snap-auth-cli";
- version = "0.1.0.1";
- sha256 = "0spdn7zazd17yrcx004m4yag8vy4bac4997f81nfvy25jvg87hhl";
+ version = "0.2";
+ sha256 = "1h93v7fkrdpp5ls2b2g7r7wnf6abfl8q0nld1qzzqj927lzgnzwa";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- aeson aeson-pretty base bytestring clientsession cmdargs snap text
- unordered-containers utf8-string
+ aeson aeson-pretty base bytestring clientsession cmdargs snap
+ snaplet-sqlite-simple sqlite-simple text unordered-containers
+ utf8-string
];
- homepage = "https://github.com/dzhus/snap-auth-cli";
+ homepage = "https://github.com/dzhus/snap-auth-cli#readme";
description = "Command-line tool to manage Snap AuthManager database";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -189462,15 +191489,15 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
- "sparse-linear-algebra_0_3" = callPackage
+ "sparse-linear-algebra_0_3_1" = callPackage
({ mkDerivation, base, containers, exceptions, hspec
, matrix-market-attoparsec, mtl, mwc-random, primitive, QuickCheck
, scientific, transformers, vector, vector-algorithms
}:
mkDerivation {
pname = "sparse-linear-algebra";
- version = "0.3";
- sha256 = "10s3z0mva8hf9f2ckbpfkzdkhnixp73xli5yigh4d44662rzwqn1";
+ version = "0.3.1";
+ sha256 = "1jfwydr0pzph932h7jvnmp1d8qqrhxsq7rbb6cjbmga55s5pfqn7";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base containers exceptions hspec mtl primitive QuickCheck
@@ -190083,8 +192110,8 @@ self: {
pname = "splitmix";
version = "0";
sha256 = "0qa86iflw1v8vqci8krj4kdvp648hnl8wx3wyhnd1c95jrla0fpi";
- revision = "1";
- editedCabalFile = "0dh4p3rzvx3zwj0bh5flf4qsiw831rb4vxmbh5jq45qkvry8z8hy";
+ revision = "2";
+ editedCabalFile = "0fl7z9lxkyvqk0d14d778j3lk8zi8jgncwq41gqi4z78a20xb2pg";
libraryHaskellDepends = [ base random time ];
testHaskellDepends = [
base base-compat bytestring random tf-random
@@ -190554,15 +192581,15 @@ self: {
"sqlite-simple" = callPackage
({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder
, blaze-textual, bytestring, containers, direct-sqlite, HUnit, Only
- , text, time, transformers
+ , semigroups, text, time, transformers
}:
mkDerivation {
pname = "sqlite-simple";
- version = "0.4.14.0";
- sha256 = "0zx4fdv6larfyj6m1d4livb5cqdx10yi06yd6px2n0wnxcmvdyj9";
+ version = "0.4.15.0";
+ sha256 = "1qk9dzrqfyjavyl9p0l24hbncp2c1faxx0yvjz5iq3s4dl6fswf0";
libraryHaskellDepends = [
attoparsec base blaze-builder blaze-textual bytestring containers
- direct-sqlite Only text time transformers
+ direct-sqlite Only semigroups text time transformers
];
testHaskellDepends = [
base base16-bytestring bytestring direct-sqlite HUnit text time
@@ -190576,8 +192603,8 @@ self: {
({ mkDerivation, base, mtl, parsec, sqlite-simple, text }:
mkDerivation {
pname = "sqlite-simple-errors";
- version = "0.6.0.0";
- sha256 = "106rpzxdnsp7g84fh5yvmj145pz5ghrd5cicg1yj5pxlyrgvm5z6";
+ version = "0.6.1.0";
+ sha256 = "0vvim8zcrl3yqhf30j69x59qs5f6sdx5bvy4ihwmimkldm5gh0ai";
libraryHaskellDepends = [ base parsec sqlite-simple text ];
testHaskellDepends = [ base mtl sqlite-simple text ];
homepage = "https://github.com/caneroj1/sqlite-simple-errors";
@@ -190667,6 +192694,35 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "squeal-postgresql_0_2_1_0" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, deepseq, doctest
+ , generics-sop, lifted-base, mmorph, monad-control, mtl, network-ip
+ , postgresql-binary, postgresql-libpq, resource-pool, scientific
+ , text, time, transformers, transformers-base, uuid-types, vector
+ }:
+ mkDerivation {
+ pname = "squeal-postgresql";
+ version = "0.2.1.0";
+ sha256 = "1qfz1c4yzjshgvc64plahy3aar96yvcmn2m5giyp17nrfgq266qs";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring deepseq generics-sop lifted-base mmorph
+ monad-control mtl network-ip postgresql-binary postgresql-libpq
+ resource-pool scientific text time transformers transformers-base
+ uuid-types vector
+ ];
+ executableHaskellDepends = [
+ base bytestring generics-sop mtl text transformers
+ transformers-base vector
+ ];
+ testHaskellDepends = [ base doctest ];
+ homepage = "https://github.com/morphismtech/squeal";
+ description = "Squeal PostgreSQL Library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"squeeze" = callPackage
({ mkDerivation, base, Cabal, data-default, directory, extra
, factory, filepath, mtl, QuickCheck, random, toolshed
@@ -190734,8 +192790,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "srcloc";
- version = "0.5.1.1";
- sha256 = "05qsyrpzbbawpnfmq8v1rr36kvnycarlr3v91hmbj33vk73acj1i";
+ version = "0.5.1.2";
+ sha256 = "0vn0zqsk191ghh2993hls05hp7kvnskaafnfrrqhfbmpdg7dp7h6";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/mainland/srcloc";
description = "Data types for managing source code locations";
@@ -192021,8 +194077,8 @@ self: {
pname = "statestack";
version = "0.2.0.5";
sha256 = "0rjzx9iy5mx5igir6gvslznnx3gpxlb1xy1n8h4cn54cn3wxrspl";
- revision = "1";
- editedCabalFile = "0kf1jdhdv9fiwlbn2915sg39x23lfxlyp2qb7jkrvx8p8v2sam7i";
+ revision = "2";
+ editedCabalFile = "0c10cv107ls0wm7gs3gvknd8a1gqvrkk97frn8lp1ch697mz44rp";
libraryHaskellDepends = [
base mtl transformers transformers-compat
];
@@ -192336,6 +194392,29 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "status-notifier-item" = callPackage
+ ({ mkDerivation, base, bytestring, containers, dbus, filepath
+ , hslogger, lens, mtl, network, optparse-applicative, spool
+ , template-haskell, transformers, vector
+ }:
+ mkDerivation {
+ pname = "status-notifier-item";
+ version = "0.1.0.0";
+ sha256 = "1g1gf3anqrg8mfdyjvymk5wlg0h4pfc0pv4wlw5phk6r93dxah1n";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring containers dbus filepath hslogger lens mtl network
+ spool template-haskell transformers vector
+ ];
+ executableHaskellDepends = [
+ base dbus hslogger optparse-applicative
+ ];
+ homepage = "https://github.com/IvanMalison/status-notifier-item#readme";
+ description = "A wrapper over the StatusNotifierItem/libappindicator dbus specification";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"statvfs" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -192937,6 +195016,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "stocks" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, http-conduit, semigroups
+ }:
+ mkDerivation {
+ pname = "stocks";
+ version = "0.1.0.0";
+ sha256 = "10ws7mg0236iqkjclajwph2lb5719adkay5imaxrsj13d10f8ssq";
+ libraryHaskellDepends = [
+ aeson base bytestring http-conduit semigroups
+ ];
+ homepage = "https://github.com/dabcoder/stocks#readme";
+ description = "Library for the IEX Trading API";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"stomp-conduit" = callPackage
({ mkDerivation, base, conduit, mime, mtl, resourcet, stomp-queue
, stompl
@@ -193476,6 +195570,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "streaming-attoparsec" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, streaming
+ , streaming-bytestring, tasty, tasty-hunit
+ }:
+ mkDerivation {
+ pname = "streaming-attoparsec";
+ version = "1.0.0";
+ sha256 = "00k1vwqr7ns7s4r6xvq59kpwimqd0f02jj0ay4zg167dd5994a7z";
+ libraryHaskellDepends = [
+ attoparsec base bytestring streaming streaming-bytestring
+ ];
+ testHaskellDepends = [
+ attoparsec base bytestring streaming streaming-bytestring tasty
+ tasty-hunit
+ ];
+ homepage = "https://github.com/haskell-streaming/streaming-attoparsec";
+ description = "Attoparsec integration for the streaming ecosystem";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"streaming-benchmarks" = callPackage
({ mkDerivation, base, bytestring, Chart, Chart-diagrams, conduit
, csv, deepseq, directory, gauge, list-t, list-transformer, logict
@@ -193543,6 +195657,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "streaming-bytestring_0_1_6" = callPackage
+ ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl
+ , resourcet, smallcheck, streaming, tasty, tasty-smallcheck
+ , transformers, transformers-base
+ }:
+ mkDerivation {
+ pname = "streaming-bytestring";
+ version = "0.1.6";
+ sha256 = "1lsklavhk6wcsgjr2rcwkkv827gnd9spv4zwz5i5zf3njvy27my1";
+ libraryHaskellDepends = [
+ base bytestring deepseq exceptions mmorph mtl resourcet streaming
+ transformers transformers-base
+ ];
+ testHaskellDepends = [
+ base bytestring smallcheck streaming tasty tasty-smallcheck
+ transformers
+ ];
+ homepage = "https://github.com/haskell-streaming/streaming-bytestring";
+ description = "effectful byte steams, or: bytestring io done right";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"streaming-cassava" = callPackage
({ mkDerivation, base, bytestring, cassava, hspec, mtl, QuickCheck
, quickcheck-instances, streaming, streaming-bytestring, text
@@ -193859,28 +195996,6 @@ self: {
}) {};
"streamly" = callPackage
- ({ mkDerivation, atomic-primops, base, containers, criterion
- , exceptions, hspec, lifted-base, lockfree-queue, monad-control
- , mtl, stm, transformers, transformers-base
- }:
- mkDerivation {
- pname = "streamly";
- version = "0.1.1";
- sha256 = "1zblhnn2rjsmbdliihsghwl6rv7g0bcdh3d10xx8c4x420hwg2f6";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- atomic-primops base containers exceptions lifted-base
- lockfree-queue monad-control mtl stm transformers transformers-base
- ];
- testHaskellDepends = [ base containers hspec ];
- benchmarkHaskellDepends = [ atomic-primops base criterion mtl ];
- homepage = "https://github.com/composewell/streamly";
- description = "Beautiful Streaming, Concurrent and Reactive Composition";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "streamly_0_1_2" = callPackage
({ mkDerivation, atomic-primops, base, containers, criterion
, exceptions, hspec, lifted-base, lockfree-queue, monad-control
, mtl, stm, transformers, transformers-base
@@ -193900,7 +196015,6 @@ self: {
homepage = "https://github.com/composewell/streamly";
description = "Beautiful Streaming, Concurrent and Reactive Composition";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"streamproc" = callPackage
@@ -194344,6 +196458,24 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "string-transform_1_1_0" = callPackage
+ ({ mkDerivation, base, bytestring, tasty, tasty-hunit
+ , tasty-smallcheck, text, utf8-string
+ }:
+ mkDerivation {
+ pname = "string-transform";
+ version = "1.1.0";
+ sha256 = "1f76aiimm2knc68g08dc9j495mjkas87jw8w27silrsq3pzayzad";
+ libraryHaskellDepends = [ base bytestring text utf8-string ];
+ testHaskellDepends = [
+ base bytestring tasty tasty-hunit tasty-smallcheck text utf8-string
+ ];
+ homepage = "https://github.com/ncaq/string-transform#readme";
+ description = "simple and easy haskell string transform wrapper";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"string-typelits" = callPackage
({ mkDerivation, base, template-haskell, type-combinators
, type-combinators-quote
@@ -194854,8 +196986,8 @@ self: {
}:
mkDerivation {
pname = "stylish-cabal";
- version = "0.4.0.0";
- sha256 = "1357yrnzyc7rhd98dz33m84yckzs2djrlv8dmh5a2p97s31gcp03";
+ version = "0.4.0.1";
+ sha256 = "00jwq35dr60c9gjwy8hg3i8b39gxknr92mrz21657gazl90cxy4z";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -195925,6 +198057,8 @@ self: {
pname = "swagger2";
version = "2.2.1";
sha256 = "11i0yg2g4bw8pjz9p0w7qz7hpriji9zkiz3y5gr26pwb3fzab5qz";
+ revision = "1";
+ editedCabalFile = "00snyp95rjh3h7yqfwg3x4y9gjhypm6zfv45i2sag4w5cydvkzb5";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
aeson base base-compat bytestring containers generics-sop hashable
@@ -196048,6 +198182,8 @@ self: {
pname = "sws";
version = "0.4.1.0";
sha256 = "1xcbmwpwp2nvi7adihkddpgi9pkdc7q7ly08vm57r56lcpzvs70p";
+ revision = "1";
+ editedCabalFile = "1mlyk1959yy4lmx7zsc5iafw1y7vj1d39dndn9as34pqd1rvdk5j";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -196055,7 +198191,7 @@ self: {
network resourcet transformers wai wai-extra wai-middleware-static
warp warp-tls
];
- description = "A simple web server for serving directories, similar to weborf";
+ description = "A simple web server for serving directories";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -196108,8 +198244,8 @@ self: {
}:
mkDerivation {
pname = "syb-with-class";
- version = "0.6.1.8";
- sha256 = "01b187jhhfp77l4zgks5gszkn9jmgjc44mw9yympw1fsfskljiz3";
+ version = "0.6.1.9";
+ sha256 = "1apvvzzc19lbchmbginmhxzcrvrcg76dvdgsk51pxrnr4glnva86";
libraryHaskellDepends = [
array base bytestring containers template-haskell
];
@@ -197555,36 +199691,37 @@ self: {
}) {};
"taffybar" = callPackage
- ({ mkDerivation, base, cairo, containers, dbus, dyre
- , enclosed-exceptions, filepath, gtk, gtk-traymanager, gtk2
- , HStringTemplate, HTTP, mtl, network, network-uri, old-locale
- , parsec, process, safe, split, stm, text, time, time-locale-compat
- , transformers, utf8-string, X11, xdg-basedir, xmonad
- , xmonad-contrib
+ ({ mkDerivation, alsa-mixer, base, cairo, ConfigFile, containers
+ , dbus, directory, dyre, either, enclosed-exceptions, filepath
+ , glib, gtk-traymanager, gtk3, HStringTemplate, HTTP, mtl, multimap
+ , network, network-uri, old-locale, parsec, process, rate-limit
+ , safe, split, stm, text, time, time-locale-compat, time-units
+ , transformers, tuple, unix, utf8-string, X11, xdg-basedir, xml
+ , xml-helpers, xmonad, xmonad-contrib
}:
mkDerivation {
pname = "taffybar";
- version = "0.4.6";
- sha256 = "1xfaw32yq17a6wm6gzvpdnpabxfnskwbs541h1kk1lvrkm31h2b2";
+ version = "1.0.0";
+ sha256 = "1n2hxryh8l1ym498ckba1nf9533zpsxscvbriiwxixdr27mgk6zy";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- base cairo containers dbus dyre enclosed-exceptions filepath gtk
- gtk-traymanager HStringTemplate HTTP mtl network network-uri
- old-locale parsec process safe split stm text time
- time-locale-compat transformers utf8-string X11 xdg-basedir xmonad
- xmonad-contrib
+ alsa-mixer base cairo ConfigFile containers dbus directory dyre
+ either enclosed-exceptions filepath glib gtk-traymanager gtk3
+ HStringTemplate HTTP mtl multimap network network-uri old-locale
+ parsec process rate-limit safe split stm text time
+ time-locale-compat time-units transformers tuple unix utf8-string
+ X11 xdg-basedir xml xml-helpers xmonad xmonad-contrib
];
- libraryPkgconfigDepends = [ gtk2 ];
executableHaskellDepends = [
- base dyre filepath gtk safe xdg-basedir
+ base containers directory dyre filepath glib gtk3 mtl safe split
+ utf8-string X11 xdg-basedir
];
- executablePkgconfigDepends = [ gtk2 ];
homepage = "http://github.com/travitch/taffybar";
description = "A desktop bar similar to xmobar, but with more GUI";
license = stdenv.lib.licenses.bsd3;
- }) {gtk2 = pkgs.gnome2.gtk;};
+ }) {};
"tag-bits" = callPackage
({ mkDerivation, base, ghc-prim }:
@@ -198550,6 +200687,19 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "tasty-dejafu_1_2_0_0" = callPackage
+ ({ mkDerivation, base, dejafu, random, tagged, tasty }:
+ mkDerivation {
+ pname = "tasty-dejafu";
+ version = "1.2.0.0";
+ sha256 = "0dhrcra1vzrw7xxnph28iz3c9pkmkhza0m9xjb9qxc75p2f684p3";
+ libraryHaskellDepends = [ base dejafu random tagged tasty ];
+ homepage = "https://github.com/barrucadu/dejafu";
+ description = "Deja Fu support for the Tasty test framework";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"tasty-discover" = callPackage
({ mkDerivation, base, containers, directory, filepath, Glob
, hedgehog, tasty, tasty-hedgehog, tasty-hspec, tasty-hunit
@@ -200172,6 +202322,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "terminal-text" = callPackage
+ ({ mkDerivation, ansi-terminal, base, container, layered-state
+ , prologue, text
+ }:
+ mkDerivation {
+ pname = "terminal-text";
+ version = "1.1.1";
+ sha256 = "1jgdxqck3ck65mppi694w0f5x0547148y5agi100zggp8r3yxsy3";
+ libraryHaskellDepends = [
+ ansi-terminal base container layered-state prologue text
+ ];
+ homepage = "https://github.com/luna/terminal-text";
+ description = "Text data type for styled terminal output, including all standard ANSI effects (bold, italic, blinking) and ANSI / 256 / truecolor colors support for Unix and Windows (whenever possible)";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"termination-combinators" = callPackage
({ mkDerivation, base, containers, contravariant }:
mkDerivation {
@@ -201091,8 +203257,8 @@ self: {
}:
mkDerivation {
pname = "text-format-heavy";
- version = "0.1.5.0";
- sha256 = "127h2pw3p9ixx34jiql9kgpjbjmkmwigm56iklaz6wxd69zr0sfx";
+ version = "0.1.5.1";
+ sha256 = "14hmzsxhbqr95r7sbpziv897akdw8p54fhwh56j0h9hqnpwxxwgd";
libraryHaskellDepends = [
base bytestring containers data-default parsec text time
];
@@ -201452,8 +203618,8 @@ self: {
}:
mkDerivation {
pname = "text-regex-replace";
- version = "0.1.1.1";
- sha256 = "0n0jk3qdcdhy3b91x7xkyc87xk3405g49qrgcfzb3ksr9qyw89rg";
+ version = "0.1.1.2";
+ sha256 = "1v6gjimq4qzldpc3ihvf0mn24n3mfk4vs87b7xzgmzk63sbpijyk";
libraryHaskellDepends = [ attoparsec base text text-icu ];
testHaskellDepends = [
base hspec QuickCheck smallcheck text text-icu
@@ -201555,8 +203721,8 @@ self: {
pname = "text-show";
version = "3.7.2";
sha256 = "0gb7y83w81zvfi7szb62d17w0qi7ca7ybri81adqk141c3cxc83s";
- revision = "1";
- editedCabalFile = "1iaa9scqwys9da98ya62jz2lyqia79ys8zq4hhcgb3l45x0ngc27";
+ revision = "2";
+ editedCabalFile = "0fjysjlmvvzvndxsni2ja92kr1pyqgl4dyc5c7x2ffaf02g9h2d2";
libraryHaskellDepends = [
array base base-compat bifunctors bytestring bytestring-builder
containers contravariant generic-deriving ghc-boot-th ghc-prim
@@ -201582,6 +203748,47 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "text-show_3_7_3" = callPackage
+ ({ mkDerivation, array, base, base-compat-batteries, base-orphans
+ , bifunctors, bytestring, bytestring-builder, containers
+ , contravariant, criterion, deepseq, deriving-compat
+ , generic-deriving, ghc-boot-th, ghc-prim, hspec, hspec-discover
+ , integer-gmp, nats, QuickCheck, quickcheck-instances, semigroups
+ , tagged, template-haskell, text, th-abstraction, th-lift
+ , transformers, transformers-compat, void
+ }:
+ mkDerivation {
+ pname = "text-show";
+ version = "3.7.3";
+ sha256 = "1d8wmdndl8qsz90fb67xxbrprlmmp47p4f3ik6psp5m6r0cdvpzg";
+ libraryHaskellDepends = [
+ array base base-compat-batteries bifunctors bytestring
+ bytestring-builder containers contravariant generic-deriving
+ ghc-boot-th ghc-prim integer-gmp nats semigroups tagged
+ template-haskell text th-abstraction th-lift transformers
+ transformers-compat void
+ ];
+ testHaskellDepends = [
+ array base base-compat-batteries base-orphans bifunctors bytestring
+ bytestring-builder containers contravariant deriving-compat
+ generic-deriving ghc-boot-th ghc-prim hspec integer-gmp nats
+ QuickCheck quickcheck-instances semigroups tagged template-haskell
+ text th-lift transformers transformers-compat void
+ ];
+ testToolDepends = [ hspec-discover ];
+ benchmarkHaskellDepends = [
+ array base base-compat-batteries bifunctors bytestring
+ bytestring-builder containers contravariant criterion deepseq
+ generic-deriving ghc-boot-th ghc-prim integer-gmp nats semigroups
+ tagged template-haskell text th-lift transformers
+ transformers-compat void
+ ];
+ homepage = "https://github.com/RyanGlScott/text-show";
+ description = "Efficient conversion of values into Text";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"text-show-instances" = callPackage
({ mkDerivation, base, base-compat, bifunctors, binary, bytestring
, containers, directory, generic-deriving, ghc-boot-th, ghc-prim
@@ -201616,6 +203823,42 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "text-show-instances_3_6_4" = callPackage
+ ({ mkDerivation, base, base-compat-batteries, bifunctors, binary
+ , bytestring, containers, directory, generic-deriving, ghc-boot-th
+ , ghc-prim, haskeline, hoopl, hpc, hspec, hspec-discover
+ , old-locale, old-time, pretty, process, QuickCheck
+ , quickcheck-instances, random, semigroups, tagged
+ , template-haskell, terminfo, text, text-show, th-orphans, time
+ , transformers, transformers-compat, unix, unordered-containers
+ , vector, xhtml
+ }:
+ mkDerivation {
+ pname = "text-show-instances";
+ version = "3.6.4";
+ sha256 = "1a2aacy6l58b49868hhvqws4900rq9dpb8zwkb5cz45gsb7zpgjf";
+ libraryHaskellDepends = [
+ base base-compat-batteries bifunctors binary bytestring containers
+ directory ghc-boot-th haskeline hoopl hpc old-locale old-time
+ pretty process random semigroups tagged template-haskell terminfo
+ text text-show time transformers transformers-compat unix
+ unordered-containers vector xhtml
+ ];
+ testHaskellDepends = [
+ base base-compat-batteries bifunctors binary bytestring containers
+ directory generic-deriving ghc-boot-th ghc-prim haskeline hoopl hpc
+ hspec old-locale old-time pretty process QuickCheck
+ quickcheck-instances random semigroups tagged template-haskell
+ terminfo text text-show th-orphans time transformers
+ transformers-compat unix unordered-containers vector xhtml
+ ];
+ testToolDepends = [ hspec-discover ];
+ homepage = "https://github.com/RyanGlScott/text-show-instances";
+ description = "Additional instances for text-show";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"text-stream-decode" = callPackage
({ mkDerivation, base, bytestring, criterion, deepseq, hspec, text
}:
@@ -202137,8 +204380,8 @@ self: {
}:
mkDerivation {
pname = "th-format";
- version = "0.1.0.0";
- sha256 = "0vyvw9m28xb2playrzc533173p26jnlr8w1sbjc9w81y17676z3x";
+ version = "0.1.1.0";
+ sha256 = "1axan3icxz9yxkra2kb9r66h9h51v4zbjncd1xsvgiplqmwf6fjl";
libraryHaskellDepends = [
base Earley haskell-src-meta template-haskell text
];
@@ -202291,6 +204534,8 @@ self: {
pname = "th-orphans";
version = "0.13.5";
sha256 = "1b9599vyn0wjwbq7b7n0w25s3wbihdxr958hscfpwc8lg55lsr4m";
+ revision = "1";
+ editedCabalFile = "1rgsrnh0qvlriz0c2c3q8wbb3ykby8d3lli0j553ml3n1sn9k4zv";
libraryHaskellDepends = [
base mtl template-haskell th-lift th-lift-instances th-reify-many
];
@@ -203028,8 +205273,8 @@ self: {
pname = "through-text";
version = "0.1.0.0";
sha256 = "1kdl36n98kajaa7v7js2sy8bi09p8rrxmlfcclcfc1l92bd2aclk";
- revision = "2";
- editedCabalFile = "1qbzxll2zfc2y9r17yk2077lyq6f2dw1745kxn5f4r33970128k6";
+ revision = "3";
+ editedCabalFile = "1gia9j7zq3g74kqvkzwp68d690nhddix1kpmj23d5a3zns3rxasn";
libraryHaskellDepends = [ base bytestring case-insensitive text ];
homepage = "https://www.github.com/bergmark/through-text";
description = "Convert textual types through Text without needing O(n^2) instances";
@@ -203180,6 +205425,28 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "tibetan-utils_0_1_1_5" = callPackage
+ ({ mkDerivation, base, composition-prelude, either, hspec
+ , hspec-megaparsec, megaparsec, text, text-show
+ }:
+ mkDerivation {
+ pname = "tibetan-utils";
+ version = "0.1.1.5";
+ sha256 = "09bqix2a2js98rhp748qx2i0vnxya3c6zvpjizbbnf5fwpspy01q";
+ revision = "1";
+ editedCabalFile = "0wmfv4dxjhjwsnkc8n7jfhbkvc7zwgcmkj7pvabmhcjzn5ch0dck";
+ libraryHaskellDepends = [
+ base composition-prelude either megaparsec text text-show
+ ];
+ testHaskellDepends = [
+ base hspec hspec-megaparsec megaparsec text
+ ];
+ homepage = "https://github.com/vmchale/tibetan-utils#readme";
+ description = "Parse and display tibetan numerals";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"tic-tac-toe" = callPackage
({ mkDerivation, base, glade, gtk, haskell98 }:
mkDerivation {
@@ -203601,6 +205868,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "time-locale-compat_0_1_1_4" = callPackage
+ ({ mkDerivation, base, old-locale, time }:
+ mkDerivation {
+ pname = "time-locale-compat";
+ version = "0.1.1.4";
+ sha256 = "0qmyxf8nz0q6brvplc4s2wsb1bbpq7kb65b69m503g9bgranblgj";
+ libraryHaskellDepends = [ base old-locale time ];
+ homepage = "https://github.com/khibino/haskell-time-locale-compat";
+ description = "Compatibile module for time-format locale";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"time-locale-vietnamese" = callPackage
({ mkDerivation, base, time }:
mkDerivation {
@@ -203957,6 +206237,33 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "timemap_0_0_7" = callPackage
+ ({ mkDerivation, base, containers, criterion, focus, hashable
+ , list-t, QuickCheck, quickcheck-instances, stm, stm-containers
+ , tasty, tasty-quickcheck, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "timemap";
+ version = "0.0.7";
+ sha256 = "06rx5q1b0r4chiiy9wi9k0q9qc4yxjk794hcq8dr7gpixgcrjjrg";
+ libraryHaskellDepends = [
+ base containers focus hashable list-t stm stm-containers time
+ unordered-containers
+ ];
+ testHaskellDepends = [
+ base containers focus hashable list-t QuickCheck
+ quickcheck-instances stm stm-containers tasty tasty-quickcheck time
+ unordered-containers
+ ];
+ benchmarkHaskellDepends = [
+ base containers criterion focus hashable list-t stm stm-containers
+ time unordered-containers
+ ];
+ homepage = "https://github.com/athanclark/timemap#readme";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"timeout" = callPackage
({ mkDerivation, base, exceptions, mtl, QuickCheck, tasty
, tasty-quickcheck, time
@@ -204321,24 +206628,6 @@ self: {
}) {};
"tinylog" = callPackage
- ({ mkDerivation, base, bytestring, containers, criterion
- , double-conversion, fast-logger, text, transformers, unix-time
- }:
- mkDerivation {
- pname = "tinylog";
- version = "0.14.0";
- sha256 = "1skk59sxz2n96nv8vbc9yxla8m2jkj3ll8z5m0v78w0ih0bmcbrj";
- libraryHaskellDepends = [
- base bytestring containers double-conversion fast-logger text
- transformers unix-time
- ];
- benchmarkHaskellDepends = [ base bytestring criterion ];
- homepage = "https://gitlab.com/twittner/tinylog/";
- description = "Simplistic logging using fast-logger";
- license = stdenv.lib.licenses.mpl20;
- }) {};
-
- "tinylog_0_14_1" = callPackage
({ mkDerivation, base, bytestring, containers, criterion
, double-conversion, fast-logger, text, transformers, unix-time
}:
@@ -204354,7 +206643,6 @@ self: {
homepage = "https://gitlab.com/twittner/tinylog/";
description = "Simplistic logging using fast-logger";
license = stdenv.lib.licenses.mpl20;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tinytemplate" = callPackage
@@ -205492,10 +207780,8 @@ self: {
}:
mkDerivation {
pname = "tracetree";
- version = "0.1.0.1";
- sha256 = "05aigx15kyvy19gdzh9si2avl5a7g8c4yzrcp7sgy1d94dwypl0j";
- revision = "1";
- editedCabalFile = "0yppsjjvq2zpk9k3fpi7q9msww4biz6hn02waschca65s2gbc84y";
+ version = "0.1.0.2";
+ sha256 = "0ga78nkrfg2hlanqfd65il0yw596n7xy9jx76l7sffs438mx4wvr";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -205524,8 +207810,8 @@ self: {
}:
mkDerivation {
pname = "trackit";
- version = "0.2.1";
- sha256 = "1rdsjpmilc2k7141glqswngckqlvfynfcppf84111x5ppdhkmvb4";
+ version = "0.3";
+ sha256 = "0n4ypg2g82ajnmvv94sgympvbwji0bkw5kmd4zfzrvzrdxq91yvh";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -205600,8 +207886,8 @@ self: {
}:
mkDerivation {
pname = "transaction";
- version = "0.1.1.1";
- sha256 = "18i0x6abg02w9lf5zxb8gj1fw5450a45nw66sjy9kc0dhi7dcwq5";
+ version = "0.1.1.3";
+ sha256 = "1if04fm2kvkd25ksk1llqqkwaqy8y7pafbywmz70mrr68wrb2r6j";
libraryHaskellDepends = [ base mono-traversable ];
testHaskellDepends = [
base doctest Glob hspec mono-traversable QuickCheck
@@ -205609,6 +207895,7 @@ self: {
homepage = "https://github.com/arowM/haskell-transaction#readme";
description = "Monadic representation of transactions";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"transactional-events" = callPackage
@@ -205754,6 +208041,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "transformers-base_0_4_5_2" = callPackage
+ ({ mkDerivation, base, base-orphans, stm, transformers
+ , transformers-compat
+ }:
+ mkDerivation {
+ pname = "transformers-base";
+ version = "0.4.5.2";
+ sha256 = "1s256bi0yh0x2hp2gwd30f3mg1cv53zz397dv1yhfsnfzmihrj6h";
+ libraryHaskellDepends = [
+ base base-orphans stm transformers transformers-compat
+ ];
+ homepage = "https://github.com/mvv/transformers-base";
+ description = "Lift computations from the bottom of a transformer stack";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"transformers-bifunctors" = callPackage
({ mkDerivation, base, mmorph, transformers }:
mkDerivation {
@@ -205778,20 +208082,13 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "transformers-compat_0_6_0_6" = callPackage
- ({ mkDerivation, base, deriving-compat, ghc-prim, hspec, QuickCheck
- , tagged, transformers
- }:
+ "transformers-compat_0_6_1_6" = callPackage
+ ({ mkDerivation, base, ghc-prim, transformers }:
mkDerivation {
pname = "transformers-compat";
- version = "0.6.0.6";
- sha256 = "0fdnc8qnm42llp3nyfmg7ij6wscrigb43x3f2w1d38dvjkycyags";
- revision = "1";
- editedCabalFile = "0spzhq7c53vrgxlnakavq2fag3zjss76fbmz1hkzgk5bcmk7mlq7";
+ version = "0.6.1.6";
+ sha256 = "0db1l90pp4f1b829b3gv6xxklc8cnhkqq383rzd7r9b4hyjdvpmx";
libraryHaskellDepends = [ base ghc-prim transformers ];
- testHaskellDepends = [
- base deriving-compat hspec QuickCheck tagged transformers
- ];
homepage = "http://github.com/ekmett/transformers-compat/";
description = "A small compatibility shim for the transformers library";
license = stdenv.lib.licenses.bsd3;
@@ -205921,6 +208218,8 @@ self: {
pname = "transformers-lift";
version = "0.2.0.1";
sha256 = "17g03r5hpnygx0c9ybr9za6208ay0cjvz47rkyplv1r9zcivzn0b";
+ revision = "1";
+ editedCabalFile = "1dy9vg0drkm9ria80hlfx6v72ji2fwmv3ik7lryv7i7hk0bdzk8l";
libraryHaskellDepends = [
base transformers writer-cps-transformers
];
@@ -206319,6 +208618,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "tree-traversals" = callPackage
+ ({ mkDerivation, base, containers, doctest, mtl }:
+ mkDerivation {
+ pname = "tree-traversals";
+ version = "0.1.0.0";
+ sha256 = "0wdy1p94096qdc00w8pmbz6qcawc0ivlhy0sg0b3jir0s2ksdccb";
+ libraryHaskellDepends = [ base containers ];
+ testHaskellDepends = [ base containers doctest mtl ];
+ homepage = "https://github.com/rampion/tree-traversals";
+ description = "Functions and newtype wrappers for traversing Trees";
+ license = stdenv.lib.licenses.cc0;
+ }) {};
+
"tree-view" = callPackage
({ mkDerivation, base, containers, mtl }:
mkDerivation {
@@ -207264,6 +209576,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "turn-loop" = callPackage
+ ({ mkDerivation, base, containers, stm }:
+ mkDerivation {
+ pname = "turn-loop";
+ version = "0.1.0";
+ sha256 = "180yplkjf0c4n17a5ad2pakjwnh7830rldzmaqjj7gwcl3pg0lc6";
+ libraryHaskellDepends = [ base containers stm ];
+ homepage = "https://github.com/jxv/turn-loop#readme";
+ description = "Manage multiple turned-based sessions";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"turni" = callPackage
({ mkDerivation, base, containers, MonadRandom, random }:
mkDerivation {
@@ -207382,22 +209706,24 @@ self: {
({ mkDerivation, aeson, ansi-wl-pprint, authenticate-oauth, base
, bytestring, composition-prelude, containers, criterion
, data-default, directory, extra, hspec, htoml-megaparsec
- , http-client, http-client-tls, http-types, lens, megaparsec
+ , http-client, http-client-tls, http-types, megaparsec, microlens
, optparse-applicative, split, text, unordered-containers
}:
mkDerivation {
pname = "tweet-hs";
- version = "1.0.1.35";
- sha256 = "1rg7yn5072dr8kpd5m3c4p1brq9sbs2npvvyqkjpvfxsbyziblw7";
+ version = "1.0.1.36";
+ sha256 = "1gmp1936cmz42vf8m3622pjf6gb9c2pi8z0jfki1di9m1p1lbr53";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson ansi-wl-pprint authenticate-oauth base bytestring
- composition-prelude containers data-default directory extra
- htoml-megaparsec http-client http-client-tls http-types lens
- megaparsec optparse-applicative split text unordered-containers
+ composition-prelude containers data-default extra htoml-megaparsec
+ http-client http-client-tls http-types megaparsec microlens split
+ text unordered-containers
+ ];
+ executableHaskellDepends = [
+ base bytestring directory optparse-applicative
];
- executableHaskellDepends = [ base ];
testHaskellDepends = [ base hspec ];
benchmarkHaskellDepends = [ base bytestring criterion megaparsec ];
homepage = "https://github.com/vmchale/command-line-tweeter#readme";
@@ -208447,26 +210773,6 @@ self: {
}) {};
"type-of-html" = callPackage
- ({ mkDerivation, base, blaze-html, bytestring, criterion
- , double-conversion, ghc-prim, hspec, QuickCheck, text
- }:
- mkDerivation {
- pname = "type-of-html";
- version = "1.3.3.0";
- sha256 = "0q3r2imr63nv7l08w6q850xqak4gwzvk43qv1vq8x9qwdaf1nisv";
- libraryHaskellDepends = [
- base bytestring double-conversion ghc-prim text
- ];
- testHaskellDepends = [ base hspec QuickCheck ];
- benchmarkHaskellDepends = [
- base blaze-html bytestring criterion QuickCheck text
- ];
- homepage = "https://github.com/knupfer/type-of-html";
- description = "High performance type driven html generation";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "type-of-html_1_3_3_2" = callPackage
({ mkDerivation, base, blaze-html, bytestring, criterion, deepseq
, double-conversion, ghc-prim, hspec, QuickCheck, random, text
, weigh
@@ -208485,6 +210791,28 @@ self: {
homepage = "https://github.com/knupfer/type-of-html";
description = "High performance type driven html generation";
license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "type-of-html_1_3_4_0" = callPackage
+ ({ mkDerivation, base, blaze-html, bytestring, criterion, deepseq
+ , double-conversion, ghc, ghc-paths, ghc-prim, hspec, QuickCheck
+ , random, temporary, text, weigh
+ }:
+ mkDerivation {
+ pname = "type-of-html";
+ version = "1.3.4.0";
+ sha256 = "11drppw8xl3wzjj5qks8mqrbl83yrj7c4r01s06v38bc319g8ksf";
+ libraryHaskellDepends = [
+ base bytestring double-conversion ghc-prim text
+ ];
+ testHaskellDepends = [ base hspec QuickCheck ];
+ benchmarkHaskellDepends = [
+ base blaze-html bytestring criterion deepseq ghc ghc-paths random
+ temporary text weigh
+ ];
+ homepage = "https://github.com/knupfer/type-of-html";
+ description = "High performance type driven html generation";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -208638,6 +210966,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "type-tree" = callPackage
+ ({ mkDerivation, base, base-compat, Cabal, cabal-doctest
+ , containers, doctest, mtl, pretty, template-haskell, zenc
+ }:
+ mkDerivation {
+ pname = "type-tree";
+ version = "0.2.0.1";
+ sha256 = "1gwa8dklc9hipgwcx068p4a49m9hgjh97qp5q3p5yai6jdg24j94";
+ setupHaskellDepends = [ base Cabal cabal-doctest ];
+ libraryHaskellDepends = [
+ base base-compat containers mtl pretty template-haskell zenc
+ ];
+ testHaskellDepends = [ base doctest ];
+ homepage = "https://github.com/pikajude/type-tree";
+ description = "Tree representations of datatypes";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"type-unary" = callPackage
({ mkDerivation, applicative-numbers, base, constraints, newtype
, ty, vector-space
@@ -208836,13 +211182,18 @@ self: {
}) {};
"typelevel" = callPackage
- ({ mkDerivation, base, pretty, pretty-show }:
+ ({ mkDerivation, base, constraints, convert, exceptions, lens, mtl
+ , pretty, pretty-show, primitive, transformers
+ }:
mkDerivation {
pname = "typelevel";
- version = "1.0.4";
- sha256 = "1hhx8zgsxpd5y2lp72c7dpyp7p678fjp63cqd14wiy9cdqd17j0w";
- libraryHaskellDepends = [ base pretty pretty-show ];
- homepage = "https://github.com/wdanilo/typelevel";
+ version = "1.2.2";
+ sha256 = "0baigk89rd5cdy35v3abvdwh7g11fnz2rpnzfy4ahr0q1lj395f5";
+ libraryHaskellDepends = [
+ base constraints convert exceptions lens mtl pretty pretty-show
+ primitive transformers
+ ];
+ homepage = "https://github.com/luna/typelevel";
description = "Useful type level operations (type families and related operators)";
license = stdenv.lib.licenses.asl20;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -208873,8 +211224,8 @@ self: {
}:
mkDerivation {
pname = "typelits-witnesses";
- version = "0.3.0.1";
- sha256 = "0d2537dwz5kiq81amrj2v00bvlwjfkidlz45g1h96zv78mlw1l7c";
+ version = "0.3.0.2";
+ sha256 = "0k76ir1c6ga44cj3qmjcsnikzz2nnb2kyzkcirb3ila7yfgwc9kf";
libraryHaskellDepends = [
base base-compat constraints reflection transformers
];
@@ -209983,6 +212334,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "unicode-transforms_0_3_4" = callPackage
+ ({ mkDerivation, base, bitarray, bytestring, deepseq, filepath
+ , gauge, getopt-generics, optparse-applicative, path, path-io
+ , QuickCheck, split, text
+ }:
+ mkDerivation {
+ pname = "unicode-transforms";
+ version = "0.3.4";
+ sha256 = "0lh8bj6kxvpkmc14qa34vdrmcsis82mvnq6gs11ddqyjlz5sr7l2";
+ libraryHaskellDepends = [ base bitarray bytestring text ];
+ testHaskellDepends = [
+ base deepseq getopt-generics QuickCheck split text
+ ];
+ benchmarkHaskellDepends = [
+ base deepseq filepath gauge optparse-applicative path path-io text
+ ];
+ homepage = "http://github.com/harendra-kumar/unicode-transforms";
+ description = "Unicode normalization";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"unicoder" = callPackage
({ mkDerivation, attoparsec, base, data-default, directory
, filepath, text, twitch
@@ -210142,8 +212515,8 @@ self: {
}:
mkDerivation {
pname = "uniprot-kb";
- version = "0.1.0.1";
- sha256 = "037scgl1g4754vw5fnz7bqfwd24i9mrk2l87hkpd841ln5v7j0hi";
+ version = "0.1.1.2";
+ sha256 = "15mlmappp5k8lamgmpkmyahi5vimxk3a1821c6cabs28r4d9rywy";
libraryHaskellDepends = [ attoparsec base text ];
testHaskellDepends = [
attoparsec base hspec neat-interpolation QuickCheck text
@@ -210912,6 +213285,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "unpacked-containers" = callPackage
+ ({ mkDerivation, base, data-default-class, deepseq, ghc-prim }:
+ mkDerivation {
+ pname = "unpacked-containers";
+ version = "0";
+ sha256 = "17hm6r84kark7akn18lsvb0z6q5hcy4ap89nbkhxfhkchrqc6bfr";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base data-default-class deepseq ghc-prim
+ ];
+ executableHaskellDepends = [ base ];
+ doHaddock = false;
+ homepage = "http://github.com/ekmett/unpacked-containers/";
+ description = "Unpacked containers via backpack";
+ license = stdenv.lib.licenses.bsd2;
+ }) {};
+
"unroll-ghc-plugin" = callPackage
({ mkDerivation, base, ghc }:
mkDerivation {
@@ -211606,8 +213997,8 @@ self: {
}:
mkDerivation {
pname = "usb";
- version = "1.3.0.5";
- sha256 = "0r3v6w0nqcwz2vcaz0pdkfb8fs4ry2nlg9pfy77avv7mjwlvp7r1";
+ version = "1.3.0.6";
+ sha256 = "1ipjcm8kxhi0lhqhypnppn5jk7z70rnrybawxwhdij9gj4jz3bhh";
libraryHaskellDepends = [
base bindings-libusb bytestring containers ghc-prim text vector
];
@@ -213096,6 +215487,8 @@ self: {
pname = "vec";
version = "0.1";
sha256 = "0m70ld5vy96vca4wdm45q1ixwznl3yfj8jzil2kjfkzzac5fym5y";
+ revision = "1";
+ editedCabalFile = "0ffzb4jps0grlpbq99vx30cp4g7mad87mwcng3s1w6xqa96xr6xh";
libraryHaskellDepends = [
adjunctions base base-compat deepseq distributive fin hashable lens
semigroupoids
@@ -213475,8 +215868,8 @@ self: {
({ mkDerivation, base, random, vector }:
mkDerivation {
pname = "vector-shuffling";
- version = "1";
- sha256 = "19brlcbxha2mpmciabjw1npdi2xcpvfhd8wjn2ssfcdl0pd2n2ln";
+ version = "1.1";
+ sha256 = "04kpp7529jd4avhprfxdy6nfikx3d3ans0knhz3lspms4iky068i";
libraryHaskellDepends = [ base random vector ];
homepage = "https://github.com/metrix-ai/vector-shuffling";
description = "Algorithms for vector shuffling";
@@ -213609,6 +216002,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "vector-text" = callPackage
+ ({ mkDerivation, base, binary, prologue, text, vector
+ , vector-binary-instances
+ }:
+ mkDerivation {
+ pname = "vector-text";
+ version = "1.1.1";
+ sha256 = "0hwis2xqj86j3smk9dnq9rpf8hraxzjczpajbkzma50g2kagj5r8";
+ libraryHaskellDepends = [
+ base binary prologue text vector vector-binary-instances
+ ];
+ homepage = "https://github.com/luna/vector-text";
+ description = "Text implementation based on unboxed char vector";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"vector-th-unbox" = callPackage
({ mkDerivation, base, data-default, template-haskell, vector }:
mkDerivation {
@@ -213653,6 +216062,37 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "vectortiles_1_4_0" = callPackage
+ ({ mkDerivation, base, bytestring, containers, criterion, deepseq
+ , hashable, hex, microlens, microlens-platform, mtl
+ , protocol-buffers, protocol-buffers-descriptor, tasty, tasty-hunit
+ , text, transformers, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "vectortiles";
+ version = "1.4.0";
+ sha256 = "1h0mx5sl379486panyxpanld8qrlhak9knhz7jzqqv7is3rw8g1r";
+ libraryHaskellDepends = [
+ base bytestring containers deepseq hashable mtl protocol-buffers
+ protocol-buffers-descriptor text transformers unordered-containers
+ vector
+ ];
+ testHaskellDepends = [
+ base bytestring containers hashable hex mtl protocol-buffers
+ protocol-buffers-descriptor tasty tasty-hunit text
+ unordered-containers vector
+ ];
+ benchmarkHaskellDepends = [
+ base bytestring containers criterion hashable microlens
+ microlens-platform mtl protocol-buffers protocol-buffers-descriptor
+ text unordered-containers vector
+ ];
+ homepage = "https://github.com/fosskers/vectortiles";
+ description = "GIS Vector Tiles, as defined by Mapbox";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"verbalexpressions" = callPackage
({ mkDerivation, base, regex-pcre }:
mkDerivation {
@@ -213861,8 +216301,8 @@ self: {
}:
mkDerivation {
pname = "viewprof";
- version = "0.0.0.15";
- sha256 = "10ihmdba4rbji13lihmxf2yw77nii63k4mz6a0d03lzcw2bppr1a";
+ version = "0.0.0.16";
+ sha256 = "123dqm0rardrvvvrj8sjjs9z8yysk9qzwvrs3skqzxrq5pffyarp";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -215865,6 +218305,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "wai-middleware-static_0_8_2" = callPackage
+ ({ mkDerivation, base, bytestring, containers, cryptonite
+ , directory, expiring-cache-map, filepath, http-types, memory
+ , mime-types, mtl, old-locale, semigroups, text, time, wai
+ }:
+ mkDerivation {
+ pname = "wai-middleware-static";
+ version = "0.8.2";
+ sha256 = "1z5yapcf8j9w71f2na30snmalsajlyi8an2f9qrjdmajabyykr0b";
+ libraryHaskellDepends = [
+ base bytestring containers cryptonite directory expiring-cache-map
+ filepath http-types memory mime-types mtl old-locale semigroups
+ text time wai
+ ];
+ homepage = "https://github.com/scotty-web/wai-middleware-static";
+ description = "WAI middleware that serves requests to static files";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"wai-middleware-static-caching" = callPackage
({ mkDerivation, base, base16-bytestring, bytestring, containers
, cryptohash, directory, expiring-cache-map, filepath, http-types
@@ -216638,20 +219098,17 @@ self: {
"warped" = callPackage
({ mkDerivation, aeson, base, blaze-builder, conduit, http-types
- , lifted-async, monad-control, preamble, shakers, uuid, wai
- , wai-conduit, wai-cors, warp
+ , lifted-async, monad-control, preamble, uuid, wai, wai-conduit
+ , wai-cors, warp
}:
mkDerivation {
pname = "warped";
- version = "0.0.3";
- sha256 = "11iw5shjclns2d8baj98scm4jc773fxyzbjwbvvs6scan9d31z7m";
- isLibrary = true;
- isExecutable = true;
+ version = "0.0.4";
+ sha256 = "0gvsqabl1kh0vkzqiijkndk77jdc6md2c2p1f8bilrliqq2p21gq";
libraryHaskellDepends = [
aeson base blaze-builder conduit http-types lifted-async
monad-control preamble uuid wai wai-conduit wai-cors warp
];
- executableHaskellDepends = [ base shakers ];
homepage = "https://github.com/swift-nav/warped";
description = "Warp and Wai Library";
license = stdenv.lib.licenses.mit;
@@ -216926,15 +219383,15 @@ self: {
}:
mkDerivation {
pname = "web-inv-route";
- version = "0.1.1";
- sha256 = "16iv72jyay844668rnzmk3w98ia5cdijg8hpzy7qdhc29n3p2kzf";
+ version = "0.1.2";
+ sha256 = "1qhs2gi1591bphdr1wxbn2za7kfskywndz4bcr741q825m2bakhd";
libraryHaskellDepends = [
base bytestring case-insensitive containers happstack-server
hashable http-types invertible network-uri snap-core text
transformers unordered-containers wai
];
testHaskellDepends = [ base bytestring HUnit network-uri text ];
- description = "Composable, reversible, efficient web routing based on invertible invariants and bijections";
+ description = "Composable, reversible, efficient web routing using invertible invariants and bijections";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -217137,8 +219594,8 @@ self: {
}:
mkDerivation {
pname = "web-routes-th";
- version = "0.22.6.2";
- sha256 = "1j661bdl5nb7a02gvsi89dybzaczjynp3d6kxnrgc4jc41rwbgj8";
+ version = "0.22.6.3";
+ sha256 = "1zamjbvjxryc43wac95cdavbq4czjlfx5kgxykadx8sw63vfnk4x";
libraryHaskellDepends = [
base parsec split template-haskell text web-routes
];
@@ -217532,6 +219989,7 @@ self: {
libraryPkgconfigDepends = [ webkitgtk ];
description = "JavaScriptCore FFI from webkitgtk";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs.gnome3) webkitgtk;};
"webkitgtk3" = callPackage
@@ -217768,8 +220226,8 @@ self: {
}:
mkDerivation {
pname = "websockets-snap";
- version = "0.10.2.4";
- sha256 = "003np9jn7ja1p9vays6sk7kmia1bhqjhsz53jy0k2na6fx7rnk99";
+ version = "0.10.2.5";
+ sha256 = "14kxk6x5pygxlyn6421lkmc3lld5r545zq5qx6098mgn6bg2yknj";
libraryHaskellDepends = [
base bytestring bytestring-builder io-streams mtl snap-core
snap-server websockets
@@ -218322,8 +220780,8 @@ self: {
pname = "windns";
version = "0.1.0.0";
sha256 = "1hphwmwc1182p5aqjswcgqjbilm91rv5svjqhd93cqq599gg8q0c";
- revision = "1";
- editedCabalFile = "0kz6gv4dpppnnnyl57ibxi9gvykmkbmaz22yssx92mq306wbyimv";
+ revision = "2";
+ editedCabalFile = "19n1nb65mgz9rdp37z7sdmjxwcl2wnlrflqcwbhr99ly2anx0sy7";
libraryHaskellDepends = [ base bytestring deepseq ];
librarySystemDepends = [ dnsapi ];
description = "Domain Name Service (DNS) lookup via the Windows dnsapi standard library";
@@ -218786,13 +221244,13 @@ self: {
"wolf" = callPackage
({ mkDerivation, aeson, amazonka, amazonka-swf, base, bytestring
, conduit, directory, filepath, http-types, lifted-async
- , lifted-base, optparse-generic, preamble, process, shakers, time
- , uuid, yaml
+ , lifted-base, optparse-generic, preamble, process, time, uuid
+ , yaml
}:
mkDerivation {
pname = "wolf";
- version = "0.3.42";
- sha256 = "078pzdwhdxgqd5lszwszzcwxla17a51ikcvvas6791lvwx1ddg0d";
+ version = "0.3.43";
+ sha256 = "1iy9qbpwnnzq8d7fvpl8iqn8bc3iz44rvxi4ijjj5xd4z1w6i5fv";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -218800,7 +221258,7 @@ self: {
filepath http-types lifted-async lifted-base preamble process time
uuid yaml
];
- executableHaskellDepends = [ base optparse-generic shakers ];
+ executableHaskellDepends = [ base optparse-generic ];
homepage = "https://github.com/swift-nav/wolf";
description = "Amazon Simple Workflow Service Wrapper";
license = stdenv.lib.licenses.mit;
@@ -220039,6 +222497,8 @@ self: {
pname = "x509";
version = "1.7.3";
sha256 = "0mkk29g32fs70bqkikg83v45h9jig9c8aail3mrdqwxpkfa0yx21";
+ revision = "1";
+ editedCabalFile = "06zzirygvzp0ssdg9blipdwmd0b41p4gxh3ldai7ngjyjsdclwsx";
libraryHaskellDepends = [
asn1-encoding asn1-parse asn1-types base bytestring containers
cryptonite hourglass memory mtl pem
@@ -220117,6 +222577,8 @@ self: {
pname = "x509-validation";
version = "1.6.10";
sha256 = "1ms51scawldgyfcim5a2qlgyn3rnrclyh205d6djaa1569vrs73n";
+ revision = "1";
+ editedCabalFile = "1isap8v1gh31q4pj3gn155ya8nd1da0a5a3cryqh4yhf0ivbwl0w";
libraryHaskellDepends = [
asn1-encoding asn1-types base bytestring containers cryptonite
data-default-class hourglass memory mtl pem x509 x509-store
@@ -220697,36 +223159,6 @@ self: {
}) {};
"xlsx" = callPackage
- ({ mkDerivation, attoparsec, base, base64-bytestring, binary-search
- , bytestring, conduit, containers, criterion, data-default, deepseq
- , Diff, errors, extra, filepath, groom, lens, mtl, network-uri
- , old-locale, raw-strings-qq, safe, smallcheck, tasty, tasty-hunit
- , tasty-smallcheck, text, time, transformers, vector, xeno
- , xml-conduit, zip-archive, zlib
- }:
- mkDerivation {
- pname = "xlsx";
- version = "0.7.1";
- sha256 = "029frrwin3qx9kdh4i32yfyp1nlacr5zsv9msp5x63k2xyw7p0fh";
- libraryHaskellDepends = [
- attoparsec base base64-bytestring binary-search bytestring conduit
- containers data-default deepseq errors extra filepath lens mtl
- network-uri old-locale safe text time transformers vector xeno
- xml-conduit zip-archive zlib
- ];
- testHaskellDepends = [
- base bytestring containers Diff groom lens mtl raw-strings-qq
- smallcheck tasty tasty-hunit tasty-smallcheck text time vector
- xml-conduit
- ];
- benchmarkHaskellDepends = [ base bytestring criterion ];
- homepage = "https://github.com/qrilka/xlsx";
- description = "Simple and incomplete Excel file parser/writer";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "xlsx_0_7_2" = callPackage
({ mkDerivation, attoparsec, base, base64-bytestring, binary-search
, bytestring, conduit, containers, criterion, data-default, deepseq
, Diff, errors, extra, filepath, groom, lens, mtl, network-uri
@@ -221605,15 +224037,16 @@ self: {
"xmobar" = callPackage
({ mkDerivation, alsa-core, alsa-mixer, base, bytestring
- , containers, dbus, directory, filepath, hinotify, HTTP, iwlib
- , libmpd, libXpm, libXrandr, libXrender, mtl, old-locale, parsec
- , process, regex-compat, stm, time, timezone-olson, timezone-series
- , transformers, unix, utf8-string, wirelesstools, X11, X11-xft
+ , containers, dbus, directory, filepath, hinotify, hspec, HTTP
+ , iwlib, libmpd, libXpm, libXrandr, libXrender, mtl, old-locale
+ , parsec, process, regex-compat, stm, time, timezone-olson
+ , timezone-series, transformers, unix, utf8-string, wirelesstools
+ , X11, X11-xft
}:
mkDerivation {
pname = "xmobar";
- version = "0.25";
- sha256 = "0382r4vzqkz76jlp2069rdbwf4gh1a22r9w4rkphcn5qflw0dlb6";
+ version = "0.26";
+ sha256 = "19g40vqj3cs94i27f66194k7d5cazrv1lx54bz9kc0qy2npxjzgz";
configureFlags = [ "-fall_extensions" ];
isLibrary = false;
isExecutable = true;
@@ -221626,6 +224059,10 @@ self: {
executableSystemDepends = [
libXpm libXrandr libXrender wirelesstools
];
+ testHaskellDepends = [
+ base bytestring containers directory filepath hspec mtl old-locale
+ parsec process regex-compat stm time transformers unix X11
+ ];
homepage = "http://xmobar.org";
description = "A Minimalistic Text Based Status Bar";
license = stdenv.lib.licenses.bsd3;
@@ -222450,38 +224887,6 @@ self: {
}) {};
"yaml" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring
- , conduit, containers, directory, filepath, hspec, HUnit, libyaml
- , mockery, resourcet, scientific, semigroups, template-haskell
- , temporary, text, transformers, unordered-containers, vector
- }:
- mkDerivation {
- pname = "yaml";
- version = "0.8.28";
- sha256 = "0swgkzkfrwj0ac7lssn8rnrdfmh3lcsdn5fbq2iwv55di6jbc0pp";
- revision = "1";
- editedCabalFile = "0f8vb5v0xfpsc02zqh9pzgv4fir93sgijk342lz5k872gscfjn62";
- configureFlags = [ "-fsystem-libyaml" ];
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson attoparsec base bytestring conduit containers directory
- filepath resourcet scientific semigroups template-haskell text
- transformers unordered-containers vector
- ];
- libraryPkgconfigDepends = [ libyaml ];
- executableHaskellDepends = [ aeson base bytestring ];
- testHaskellDepends = [
- aeson base base-compat bytestring conduit directory hspec HUnit
- mockery resourcet temporary text transformers unordered-containers
- vector
- ];
- homepage = "http://github.com/snoyberg/yaml/";
- description = "Support for parsing and rendering YAML documents";
- license = stdenv.lib.licenses.bsd3;
- }) {inherit (pkgs) libyaml;};
-
- "yaml_0_8_29" = callPackage
({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring
, conduit, containers, directory, filepath, hspec, HUnit, libyaml
, mockery, resourcet, scientific, semigroups, template-haskell
@@ -222491,6 +224896,8 @@ self: {
pname = "yaml";
version = "0.8.29";
sha256 = "0x0gs80cq83i65b7g1xg6dvggkxlxhn1qs3py63c4wsjsplmyphs";
+ revision = "1";
+ editedCabalFile = "0hxmf36ydqr0gdwiagp57df7fxwhfy99r6s7mj861m8rflha0dks";
configureFlags = [ "-fsystem-libyaml" ];
isLibrary = true;
isExecutable = true;
@@ -222508,7 +224915,6 @@ self: {
homepage = "http://github.com/snoyberg/yaml/";
description = "Support for parsing and rendering YAML documents";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) libyaml;};
"yaml-combinators" = callPackage
@@ -222706,8 +225112,8 @@ self: {
pname = "yampa-canvas";
version = "0.2.2";
sha256 = "0g1yvb6snnsbvy2f74lrlqff5zgnvfh2f6r8xdwxi61dk71qsz0n";
- revision = "3";
- editedCabalFile = "1vh3v5hrd1y1m491g4h9p3c767h7kg3ffgi20vrafrg8i0r7hg3w";
+ revision = "4";
+ editedCabalFile = "1bqjfmssgg0jd6j5x727clk6wawbbh0hq8v0qpj4d5bfv4931pkb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base blank-canvas stm time Yampa ];
@@ -223525,8 +225931,8 @@ self: {
}:
mkDerivation {
pname = "yesod-auth-oauth2";
- version = "0.4.0.1";
- sha256 = "0gwl2inbjzwmxdwx51r30yd32xa17rivzmsdf6jnim5q0gyzdh4j";
+ version = "0.4.1.0";
+ sha256 = "1p0sxgi7cl6lqzkx478zva2byzanna6jicdrgdns2p91cnw5hlh9";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
diff --git a/pkgs/development/haskell-modules/lib.nix b/pkgs/development/haskell-modules/lib.nix
index 1e58eed2fe0..ff86e06979c 100644
--- a/pkgs/development/haskell-modules/lib.nix
+++ b/pkgs/development/haskell-modules/lib.nix
@@ -162,6 +162,9 @@ rec {
enableLibraryProfiling = drv: overrideCabal drv (drv: { enableLibraryProfiling = true; });
disableLibraryProfiling = drv: overrideCabal drv (drv: { enableLibraryProfiling = false; });
+ enableExecutableProfiling = drv: overrideCabal drv (drv: { enableExecutableProfiling = true; });
+ disableExecutableProfiling = drv: overrideCabal drv (drv: { enableExecutableProfiling = false; });
+
enableSharedExecutables = drv: overrideCabal drv (drv: { enableSharedExecutables = true; });
disableSharedExecutables = drv: overrideCabal drv (drv: { enableSharedExecutables = false; });
diff --git a/pkgs/development/interpreters/groovy/default.nix b/pkgs/development/interpreters/groovy/default.nix
index 6c0a9c2d375..968d9f1e8fb 100644
--- a/pkgs/development/interpreters/groovy/default.nix
+++ b/pkgs/development/interpreters/groovy/default.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
name = "groovy-${version}";
- version = "2.4.14";
+ version = "2.4.15";
src = fetchurl {
url = "http://dl.bintray.com/groovy/maven/apache-groovy-binary-${version}.zip";
- sha256 = "0an5ddfajg8jwdi1zdkpcz1g8ij1iyp0xh7zck2bl84j3pi4dj7r";
+ sha256 = "1vaa1wjnaza04hvp1n4kh10hvxx8370liz2ndm908dqv9mxa6k5x";
};
buildInputs = [ unzip makeWrapper ];
diff --git a/pkgs/development/interpreters/joker/default.nix b/pkgs/development/interpreters/joker/default.nix
index ea3974525a9..929827ce112 100644
--- a/pkgs/development/interpreters/joker/default.nix
+++ b/pkgs/development/interpreters/joker/default.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "joker-${version}";
- version = "0.8.9";
+ version = "0.9.1";
goPackagePath = "github.com/candid82/joker";
@@ -10,7 +10,7 @@ buildGoPackage rec {
rev = "v${version}";
owner = "candid82";
repo = "joker";
- sha256 = "0ph5f3vc6x1qfh3zn3va2xqx3axv1i2ywbhxayk58p55fxblj5c9";
+ sha256 = "10flfjnb9mz3dir3882agcs1lyr5qdpd9qfyvphrh08zr3jnb3hz";
};
preBuild = "go generate ./...";
diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix
index e87d4e89a46..edbb26a3bdd 100644
--- a/pkgs/development/interpreters/php/default.nix
+++ b/pkgs/development/interpreters/php/default.nix
@@ -353,7 +353,7 @@ in {
};
php72 = generic {
- version = "7.2.3";
- sha256 = "14mzsp6ysjgc7f6vl0z0j996qf8n75yh0aga121dsr571fn5lwsa";
+ version = "7.2.4";
+ sha256 = "1wvy8jdd1l5hmdqgw7lq2ynkim3mxfsx8q7vp4il1jadfq6qlr8i";
};
}
diff --git a/pkgs/development/interpreters/supercollider/default.nix b/pkgs/development/interpreters/supercollider/default.nix
index 13184ad50e8..2d350954213 100644
--- a/pkgs/development/interpreters/supercollider/default.nix
+++ b/pkgs/development/interpreters/supercollider/default.nix
@@ -9,12 +9,12 @@ in
stdenv.mkDerivation rec {
name = "supercollider-${version}";
- version = "3.9.1";
+ version = "3.9.2";
src = fetchurl {
url = "https://github.com/supercollider/supercollider/releases/download/Version-${version}/SuperCollider-${version}-Source-linux.tar.bz2";
- sha256 = "150fgnjcmb06r3pa3mbsvb4iwnqlimjwdxgbs6p55zz6g8wbln7a";
+ sha256 = "0d3cb6dw8jz7ijriqn3rlwin24gffczp69hl17pzxj1d5w57yj44";
};
hardeningDisable = [ "stackprotector" ];
diff --git a/pkgs/development/libraries/accountsservice/default.nix b/pkgs/development/libraries/accountsservice/default.nix
index d1b3b9b9827..f12dfb4635b 100644
--- a/pkgs/development/libraries/accountsservice/default.nix
+++ b/pkgs/development/libraries/accountsservice/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "accountsservice-${version}";
- version = "0.6.45";
+ version = "0.6.46";
src = fetchurl {
url = "http://www.freedesktop.org/software/accountsservice/accountsservice-${version}.tar.xz";
- sha256 = "09pg25ir7kjigvp2cxd9fkfw8c8ql8vrswfvymg9zmbmma9w43zv";
+ sha256 = "09ddndbha2wh22a0k5150d2wy0v8k8zj3vmbdijyirqwhf5vjr8q";
};
nativeBuildInputs = [ pkgconfig makeWrapper ];
diff --git a/pkgs/development/libraries/alembic/default.nix b/pkgs/development/libraries/alembic/default.nix
index 3d90eb36f3d..2276264e03f 100644
--- a/pkgs/development/libraries/alembic/default.nix
+++ b/pkgs/development/libraries/alembic/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec
{
name = "alembic-${version}";
- version = "1.7.6";
+ version = "1.7.7";
src = fetchFromGitHub {
owner = "alembic";
repo = "alembic";
rev = "${version}";
- sha256 = "0vz7pda7n50d490vv9i044xpi8rhrvs6qxcapwd49wzwrvkg67dk";
+ sha256 = "16cgzn8cz3qbfpfh53bhn4ibwp5ddam3vxgz8zaglbj7z1a3pxfv";
};
outputs = [ "bin" "dev" "out" "lib" ];
diff --git a/pkgs/development/libraries/aws-sdk-cpp/default.nix b/pkgs/development/libraries/aws-sdk-cpp/default.nix
index 3e1edcdcfbf..11005d6097a 100644
--- a/pkgs/development/libraries/aws-sdk-cpp/default.nix
+++ b/pkgs/development/libraries/aws-sdk-cpp/default.nix
@@ -15,13 +15,13 @@ let
else throw "Unsupported system!";
in stdenv.mkDerivation rec {
name = "aws-sdk-cpp-${version}";
- version = "1.4.15";
+ version = "1.4.24";
src = fetchFromGitHub {
owner = "awslabs";
repo = "aws-sdk-cpp";
rev = version;
- sha256 = "10nk8zbrh2sgw7cp03g8yqylyi29bb99w8v6dbw97pnxf689m635";
+ sha256 = "1prkivapmzjcsykxj42h0p27kjhc66hir0h2j6rz0yqdfr4pyhgl";
};
# FIXME: might be nice to put different APIs in different outputs
diff --git a/pkgs/development/libraries/chromaprint/default.nix b/pkgs/development/libraries/chromaprint/default.nix
index 4e7488f7eb3..158ae2539d3 100644
--- a/pkgs/development/libraries/chromaprint/default.nix
+++ b/pkgs/development/libraries/chromaprint/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "chromaprint-${version}";
- version = "1.3.2";
+ version = "1.4.3";
src = fetchurl {
- url = "http://bitbucket.org/acoustid/chromaprint/downloads/${name}.tar.gz";
- sha256 = "0lln8dh33gslb9cbmd1hcv33pr6jxdwipd8m8gbsyhksiq6r1by3";
+ url = "https://github.com/acoustid/chromaprint/releases/download/v${version}/${name}.tar.gz";
+ sha256 = "10kz8lncal4s2rp2rqpgc6xyjp0jzcrihgkx7chf127vfs5n067a";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/development/libraries/confuse/default.nix b/pkgs/development/libraries/confuse/default.nix
index 95af4d94cf5..3257dfe5d37 100644
--- a/pkgs/development/libraries/confuse/default.nix
+++ b/pkgs/development/libraries/confuse/default.nix
@@ -1,10 +1,11 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
- name = "confuse-2.7";
+ name = "confuse-${version}";
+ version = "3.2.1";
src = fetchurl {
- url = "mirror://savannah/confuse/${name}.tar.gz";
- sha256 = "0y47r2ashz44wvnxdb18ivpmj8nxhw3y9bf7v9w0g5byhgyp89g3";
+ url = "https://github.com/martinh/libconfuse/releases/download/v${version}/${name}.tar.xz";
+ sha256 = "0pnjmlj9i0alp407qd7c0vq83sz7gpsjrbdgpcn4xvzjp9r35ii3";
};
meta = {
diff --git a/pkgs/development/libraries/dbus/make-system-conf.xsl b/pkgs/development/libraries/dbus/make-system-conf.xsl
index 3d8b823437d..dd644b4bce7 100644
--- a/pkgs/development/libraries/dbus/make-system-conf.xsl
+++ b/pkgs/development/libraries/dbus/make-system-conf.xsl
@@ -27,6 +27,7 @@
/share/dbus-1/system-services
/etc/dbus-1/system.d
+ /share/dbus-1/system.d
diff --git a/pkgs/development/libraries/dlib/default.nix b/pkgs/development/libraries/dlib/default.nix
index d3e2f6c9c98..eaae1f7ecda 100644
--- a/pkgs/development/libraries/dlib/default.nix
+++ b/pkgs/development/libraries/dlib/default.nix
@@ -3,14 +3,14 @@
}:
stdenv.mkDerivation rec {
- version = "19.10";
+ version = "19.9";
name = "dlib-${version}";
src = fetchFromGitHub {
owner = "davisking";
repo = "dlib";
rev ="v${version}";
- sha256 = "0sgxblf4n33b8wgblyblmrkwydvy1yh7fzll1b6c4zgkz675w0m5";
+ sha256 = "0lc54r928j9dg7f2wn25m887z24d31wrc14v2hn6aknp1z084lrc";
};
postPatch = ''
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
homepage = http://www.dlib.net;
license = licenses.boost;
maintainers = with maintainers; [ christopherpoole ];
- platforms = platforms.all;
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/development/libraries/folly/default.nix b/pkgs/development/libraries/folly/default.nix
index 88339e8a8bf..c4dc5730044 100644
--- a/pkgs/development/libraries/folly/default.nix
+++ b/pkgs/development/libraries/folly/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "folly-${version}";
- version = "2018.02.26.00";
+ version = "2018.03.26.00";
src = fetchFromGitHub {
owner = "facebook";
repo = "folly";
rev = "v${version}";
- sha256 = "1pdb3nnly0x4x8yy1r13xgh9zhn34c9dq0b3nhxr8gwbzf643j1c";
+ sha256 = "137d9b9k2m02r8f2w31qj3gc18hpm5g51bcl60g6vzdqzwzizzyr";
};
nativeBuildInputs = [ autoreconfHook python pkgconfig ];
diff --git a/pkgs/development/libraries/gdcm/default.nix b/pkgs/development/libraries/gdcm/default.nix
index 6da29ef2a3c..47f9e9c6676 100644
--- a/pkgs/development/libraries/gdcm/default.nix
+++ b/pkgs/development/libraries/gdcm/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, cmake, vtk }:
stdenv.mkDerivation rec {
- version = "2.8.4";
+ version = "2.8.5";
name = "gdcm-${version}";
src = fetchurl {
url = "mirror://sourceforge/gdcm/${name}.tar.bz2";
- sha256 = "1wjs9sfdi1v4bm750xl26mik5zyvmlk88jy2zf2jsm9y3qmcyfff";
+ sha256 = "0aiwmxwa67zsb2sbadf8r2p9018qhc8gycb04kfrsf7rskz3x2h5";
};
dontUseCmakeBuildDir = true;
diff --git a/pkgs/development/libraries/gecode/default.nix b/pkgs/development/libraries/gecode/default.nix
index 5d683de404d..83ec0edfb49 100644
--- a/pkgs/development/libraries/gecode/default.nix
+++ b/pkgs/development/libraries/gecode/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "gecode-${version}";
- version = "5.0.0";
+ version = "6.0.0";
src = fetchurl {
url = "http://www.gecode.org/download/${name}.tar.gz";
- sha256 = "0yz7m4msp7g2jzsn216q74d9n7rv6qh8abcv0jdc1n7y2nhjzzzl";
+ sha256 = "0dp7bm6k790jx669y4jr0ffi5cdfpwsqm1ykj2c0zh56jsgs6hfs";
};
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/getdns/default.nix b/pkgs/development/libraries/getdns/default.nix
index 382bdb17247..779534460df 100644
--- a/pkgs/development/libraries/getdns/default.nix
+++ b/pkgs/development/libraries/getdns/default.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
pname = "getdns";
name = "${pname}-${version}";
- version = "1.3.0";
+ version = "1.4.1";
src = fetchurl {
- url = "https://getdnsapi.net/releases/${pname}-1-3-0/${pname}-${version}.tar.gz";
- sha256 = "920fa2e07c72fd0e5854db1820fa777108009fc5cb702f9aa5155ef58b12adb1";
+ url = "https://getdnsapi.net/releases/${pname}-1-4-1/${pname}-${version}.tar.gz";
+ sha256 = "07n5n5m4dnnh2xkh7wrnlx8s8myrvjf2nbs7n5m5nq8gg3f36li4";
};
nativeBuildInputs = [ libtool m4 autoreconfHook automake file ];
diff --git a/pkgs/development/libraries/gflags/default.nix b/pkgs/development/libraries/gflags/default.nix
index d79b7691335..f9fc4366b7e 100644
--- a/pkgs/development/libraries/gflags/default.nix
+++ b/pkgs/development/libraries/gflags/default.nix
@@ -7,4 +7,13 @@ stdenv.mkDerivation
sha256 = "03lxc2ah8i392kh1naq99iip34k4fpv22kwflyx3byd2ssycs9xf";
};
nativeBuildInputs = [ cmake ];
+ # for case-insensitive filesystems
+ prePatch = "mv BUILD BUILD.bazel";
+
+ meta = with stdenv.lib; {
+ description = "C++ library that implements commandline flags processing";
+ homepage = "https://github.com/gflags/gflags";
+ license = licenses.bsd3;
+ platforms = platforms.unix;
+ };
}
diff --git a/pkgs/development/libraries/globalplatform/default.nix b/pkgs/development/libraries/globalplatform/default.nix
index 5b55a09db62..3ef279616f7 100644
--- a/pkgs/development/libraries/globalplatform/default.nix
+++ b/pkgs/development/libraries/globalplatform/default.nix
@@ -16,6 +16,6 @@ stdenv.mkDerivation rec {
homepage = https://sourceforge.net/p/globalplatform/wiki/Home/;
description = "Library for interacting with smart card devices";
license = licenses.gpl3;
- platforms = platforms.all;
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/development/libraries/gpgme/default.nix b/pkgs/development/libraries/gpgme/default.nix
index 1e59e8f1d65..68762e344bd 100644
--- a/pkgs/development/libraries/gpgme/default.nix
+++ b/pkgs/development/libraries/gpgme/default.nix
@@ -1,10 +1,17 @@
{ stdenv, fetchurl, fetchpatch, libgpgerror, gnupg, pkgconfig, glib, pth, libassuan
-, qtbase ? null }:
+, file, which
+, autoreconfHook
+, git
+, texinfo5
+, qtbase ? null
+, withPython ? false, swig2 ? null, python ? null
+}:
let inherit (stdenv) lib system; in
stdenv.mkDerivation rec {
- name = "gpgme-1.10.0";
+ name = "gpgme-${version}";
+ version = "1.10.0";
src = fetchurl {
url = "mirror://gnupg/gpgme/${name}.tar.bz2";
@@ -18,11 +25,17 @@ stdenv.mkDerivation rec {
[ libgpgerror glib libassuan pth ]
++ lib.optional (qtbase != null) qtbase;
- nativeBuildInputs = [ pkgconfig gnupg ];
+ nativeBuildInputs = [ file pkgconfig gnupg autoreconfHook git texinfo5 ]
+ ++ lib.optionals withPython [ python swig2 which ];
+
+ postPatch =''
+ substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file
+ '';
configureFlags = [
"--enable-fixed-path=${gnupg}/bin"
- ];
+ "--with-libgpg-error-prefix=${libgpgerror.dev}"
+ ] ++ lib.optional withPython "--enable-languages=python";
NIX_CFLAGS_COMPILE =
# qgpgme uses Q_ASSERT which retains build inputs at runtime unless
diff --git a/pkgs/development/libraries/gsettings-qt/default.nix b/pkgs/development/libraries/gsettings-qt/default.nix
new file mode 100644
index 00000000000..9e893932a64
--- /dev/null
+++ b/pkgs/development/libraries/gsettings-qt/default.nix
@@ -0,0 +1,58 @@
+{ stdenv, fetchbzr, pkgconfig, qmake, qtbase, qtdeclarative, glib, gobjectIntrospection }:
+
+stdenv.mkDerivation rec {
+ name = "gsettings-qt-${version}";
+ version = "0.1.20170824";
+
+ src = fetchbzr {
+ url = http://bazaar.launchpad.net/~system-settings-touch/gsettings-qt/trunk;
+ rev = "85";
+ sha256 = "1kcw0fgdyndx9c0dyha11wkj0gi05spdc1adf1609mrinbb4rnyi";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ qmake
+ gobjectIntrospection
+ ];
+
+ buildInputs = [
+ glib
+ qtdeclarative
+ ];
+
+ patchPhase = ''
+ # force ordered build of subdirs
+ sed -i -e "\$aCONFIG += ordered" gsettings-qt.pro
+
+ # It seems that there is a bug in qtdeclarative: qmlplugindump fails
+ # because it can not find or load the Qt platform plugin "minimal".
+ # A workaround is to set QT_PLUGIN_PATH and QML2_IMPORT_PATH explicitly.
+ export QT_PLUGIN_PATH=${qtbase.bin}/${qtbase.qtPluginPrefix}
+ export QML2_IMPORT_PATH=${qtdeclarative.bin}/${qtbase.qtQmlPrefix}
+
+ substituteInPlace GSettings/gsettings-qt.pro \
+ --replace '$$[QT_INSTALL_QML]' "$out/$qtQmlPrefix" \
+ --replace '$$[QT_INSTALL_BINS]/qmlplugindump' "qmlplugindump"
+
+ substituteInPlace src/gsettings-qt.pro \
+ --replace '$$[QT_INSTALL_LIBS]' "$out/lib" \
+ --replace '$$[QT_INSTALL_HEADERS]' "$out/include"
+ '';
+
+ preInstall = ''
+ # do not install tests
+ for f in tests/Makefile{,.cpptest}; do
+ substituteInPlace $f \
+ --replace "install: install_target" "install: "
+ done
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Qt/QML bindings for GSettings";
+ homepage = https://launchpad.net/gsettings-qt;
+ license = licenses.lgpl3;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/development/libraries/gsl/default.nix b/pkgs/development/libraries/gsl/default.nix
index afd6391d719..f1eed726eb2 100644
--- a/pkgs/development/libraries/gsl/default.nix
+++ b/pkgs/development/libraries/gsl/default.nix
@@ -13,7 +13,8 @@ stdenv.mkDerivation rec {
./disable-fma.patch # http://lists.gnu.org/archive/html/bug-gsl/2011-11/msg00019.html
];
- doCheck = stdenv.system != "i686-linux"; # https://lists.gnu.org/archive/html/bug-gsl/2015-11/msg00012.html
+ # https://lists.gnu.org/archive/html/bug-gsl/2015-11/msg00012.html
+ doCheck = stdenv.system != "i686-linux" && stdenv.system != "aarch64-linux";
meta = {
description = "The GNU Scientific Library, a large numerical library";
diff --git a/pkgs/development/libraries/gstreamer/bad/default.nix b/pkgs/development/libraries/gstreamer/bad/default.nix
index d4cc2f43aaa..8caca820a57 100644
--- a/pkgs/development/libraries/gstreamer/bad/default.nix
+++ b/pkgs/development/libraries/gstreamer/bad/default.nix
@@ -1,8 +1,8 @@
-{ stdenv, fetchurl, pkgconfig, python, gst-plugins-base, orc
+{ stdenv, fetchurl, fetchpatch, meson, ninja, gettext
+, pkgconfig, python, gst-plugins-base, orc
, faacSupport ? false, faac ? null
-, gtkSupport ? false, gtk3 ? null
, faad2, libass, libkate, libmms
-, libmodplug, mpeg2dec, mpg123
+, libmodplug, mpeg2dec
, openjpeg, libopus, librsvg
, wildmidi, fluidsynth, libvdpau, wayland
, libwebp, xvidcore, gnutls, mjpegtools
@@ -11,7 +11,6 @@
}:
assert faacSupport -> faac != null;
-assert gtkSupport -> gtk3 != null;
let
inherit (stdenv.lib) optional optionalString;
@@ -23,7 +22,7 @@ let
in
stdenv.mkDerivation rec {
- name = "gst-plugins-bad-1.12.3";
+ name = "gst-plugins-bad-1.14.0";
meta = with stdenv.lib; {
description = "Gstreamer Bad Plugins";
@@ -38,27 +37,31 @@ stdenv.mkDerivation rec {
platforms = platforms.linux ++ platforms.darwin;
};
- # TODO: Fix Cocoa build. The problem was ARC, which might be related to too
- # old version of Apple SDK's.
- configureFlags = optional stdenv.isDarwin "--disable-cocoa";
-
- patchPhase = ''
- sed -i 's/openjpeg-2.2/openjpeg-${openJpegVersion}/' ext/openjpeg/*
+ preConfigure = ''
+ patchShebangs .
'';
+ patches = [
+ (fetchpatch {
+ url = "https://bug794856.bugzilla-attachments.gnome.org/attachment.cgi?id=370409";
+ sha256 = "0hy0rcn35alq65yqwri4fqjz2hf3nyyg5c7rnndk51msmqjxpprk";
+ })
+ ./fix_pkgconfig_includedir.patch
+ ];
+
src = fetchurl {
url = "${meta.homepage}/src/gst-plugins-bad/${name}.tar.xz";
- sha256 = "1v5z3i5ha20gmbb3r9dwsaaspv5fm1jfzlzwlzqx1gjj31v5kl1n";
+ sha256 = "17sgzgx1c54k5rzz7ljyz3is0n7yj56k74vv05h8z1gjnsnjnppd";
};
outputs = [ "out" "dev" ];
- nativeBuildInputs = [ pkgconfig python ];
+ nativeBuildInputs = [ meson ninja pkgconfig python gettext ];
buildInputs = [
gst-plugins-base orc
- faad2 gtk3 libass libkate libmms
- libmodplug mpeg2dec mpg123
+ faad2 libass libkate libmms
+ libmodplug mpeg2dec
openjpeg libopus librsvg
fluidsynth libvdpau
libwebp xvidcore gnutls libGLU_combined
@@ -66,8 +69,6 @@ stdenv.mkDerivation rec {
]
++ libintlOrEmpty
++ optional faacSupport faac
- # for gtksink
- ++ optional gtkSupport gtk3
++ optional stdenv.isLinux wayland
# wildmidi requires apple's OpenAL
# TODO: package apple's OpenAL, fix wildmidi, include on Darwin
@@ -76,6 +77,4 @@ stdenv.mkDerivation rec {
++ optional (!stdenv.isDarwin) mjpegtools;
LDFLAGS = optionalString stdenv.isDarwin "-lintl";
-
- enableParallelBuilding = true;
}
diff --git a/pkgs/development/libraries/gstreamer/bad/fix_pkgconfig_includedir.patch b/pkgs/development/libraries/gstreamer/bad/fix_pkgconfig_includedir.patch
new file mode 100644
index 00000000000..c687fffc9c0
--- /dev/null
+++ b/pkgs/development/libraries/gstreamer/bad/fix_pkgconfig_includedir.patch
@@ -0,0 +1,15 @@
+diff --git a/pkgconfig/meson.build b/pkgconfig/meson.build
+index 271f327f3..7e2afa754 100644
+--- a/pkgconfig/meson.build
++++ b/pkgconfig/meson.build
+@@ -2,8 +2,8 @@ pkgconf = configuration_data()
+
+ pkgconf.set('prefix', join_paths(get_option('prefix')))
+ pkgconf.set('exec_prefix', '${prefix}')
+-pkgconf.set('libdir', '${prefix}/@0@'.format(get_option('libdir')))
+-pkgconf.set('includedir', '${prefix}/@0@'.format(get_option('includedir')))
++pkgconf.set('libdir', join_paths(get_option('prefix'), get_option('libdir')))
++pkgconf.set('includedir', join_paths(get_option('prefix'), get_option('includedir')))
+ pkgconf.set('GST_API_VERSION', api_version)
+ pkgconf.set('VERSION', gst_version)
+
diff --git a/pkgs/development/libraries/gstreamer/base/default.nix b/pkgs/development/libraries/gstreamer/base/default.nix
index 2cd0c14c1f3..e2a8c36bf02 100644
--- a/pkgs/development/libraries/gstreamer/base/default.nix
+++ b/pkgs/development/libraries/gstreamer/base/default.nix
@@ -1,10 +1,11 @@
-{ stdenv, fetchurl, pkgconfig, python, gstreamer, gobjectIntrospection
-, orc, alsaLib, libXv, pango, libtheora
-, cdparanoia, libvisual, libintlOrEmpty
+{ stdenv, fetchurl, fetchpatch, pkgconfig, meson
+, ninja, gettext, gobjectIntrospection, python
+, gstreamer, orc, alsaLib, libXv, pango, libtheora
+, wayland, cdparanoia, libvisual, libintlOrEmpty
}:
stdenv.mkDerivation rec {
- name = "gst-plugins-base-1.12.3";
+ name = "gst-plugins-base-1.14.0";
meta = {
description = "Base plugins and helper libraries";
@@ -15,17 +16,17 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "${meta.homepage}/src/gst-plugins-base/${name}.tar.xz";
- sha256 = "19ffwdch7m777ragmwpy6prqmfb742ym1n3ki40s0zyki627plyk";
+ sha256 = "0h39bcp7fcd9kgb189lxr8l0hm0almvzpzgpdh1jpq2nzxh4d43y";
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [
- pkgconfig python gobjectIntrospection
+ pkgconfig python meson ninja gettext gobjectIntrospection
];
buildInputs = [
- orc libXv pango libtheora cdparanoia
+ orc libXv pango libtheora cdparanoia wayland
]
++ libintlOrEmpty
++ stdenv.lib.optional stdenv.isLinux alsaLib
@@ -33,14 +34,17 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ gstreamer ];
- configureFlags = if stdenv.isDarwin then [
- # Does not currently build on Darwin
- "--disable-libvisual"
- # Undefined symbols _cdda_identify and _cdda_identify_scsi in cdparanoia
- "--disable-cdparanoia"
- ] else null;
+ preConfigure = ''
+ patchShebangs .
+ '';
NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
- enableParallelBuilding = true;
+ patches = [
+ (fetchpatch {
+ url = "https://bug794856.bugzilla-attachments.gnome.org/attachment.cgi?id=370414";
+ sha256 = "07x43xis0sr0hfchf36ap0cibx0lkfpqyszb3r3w9dzz301fk04z";
+ })
+ ./fix_pkgconfig_includedir.patch
+ ];
}
diff --git a/pkgs/development/libraries/gstreamer/base/fix_pkgconfig_includedir.patch b/pkgs/development/libraries/gstreamer/base/fix_pkgconfig_includedir.patch
new file mode 100644
index 00000000000..04486a4647f
--- /dev/null
+++ b/pkgs/development/libraries/gstreamer/base/fix_pkgconfig_includedir.patch
@@ -0,0 +1,15 @@
+diff --git a/pkgconfig/meson.build b/pkgconfig/meson.build
+index 04abfbee5..88c86b431 100644
+--- a/pkgconfig/meson.build
++++ b/pkgconfig/meson.build
+@@ -2,8 +2,8 @@ pkgconf = configuration_data()
+
+ pkgconf.set('prefix', get_option('prefix'))
+ pkgconf.set('exec_prefix', '${prefix}')
+-pkgconf.set('libdir', '${prefix}/@0@'.format(get_option('libdir')))
+-pkgconf.set('includedir', '${prefix}/@0@'.format(get_option('includedir')))
++pkgconf.set('libdir', join_paths(get_option('prefix'), get_option('libdir')))
++pkgconf.set('includedir', join_paths(get_option('prefix'), get_option('includedir')))
+ pkgconf.set('GST_API_VERSION', api_version)
+ pkgconf.set('VERSION', gst_version)
+ pkgconf.set('LIBM', libm.found() ? '-lm' : '')
diff --git a/pkgs/development/libraries/gstreamer/core/default.nix b/pkgs/development/libraries/gstreamer/core/default.nix
index ee9438d3c29..ab3f78767a1 100644
--- a/pkgs/development/libraries/gstreamer/core/default.nix
+++ b/pkgs/development/libraries/gstreamer/core/default.nix
@@ -1,10 +1,11 @@
-{ stdenv, fetchurl, pkgconfig, perl, bison, flex, python, gobjectIntrospection
-, glib, makeWrapper
-, darwin
+{ stdenv, fetchurl, fetchpatch, meson, ninja
+, pkgconfig, gettext, gobjectIntrospection
+, bison, flex, python3, glib, makeWrapper
+, libcap,libunwind, darwin
}:
stdenv.mkDerivation rec {
- name = "gstreamer-1.12.3";
+ name = "gstreamer-1.14.0";
meta = {
description = "Open source multimedia framework";
@@ -16,31 +17,37 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "${meta.homepage}/src/gstreamer/${name}.tar.xz";
- sha256 = "0vi1g8rmmsnd630ds3jwv2iph46ll8y07fzf04mz15q88j9g926k";
+ sha256 = "0vj6k01lp2yva6rfd95fkyng9jdr62gkz0x8d2l81dyly1ki6dpw";
};
+ patches = [
+ (fetchpatch {
+ url = "https://bug794856.bugzilla-attachments.gnome.org/attachment.cgi?id=370411";
+ sha256 = "16plzzmkk906k4892zq68j3c9z8vdma5nxzlviq20jfv04ykhmk2";
+ })
+ ./fix_pkgconfig_includedir.patch
+ ];
+
outputs = [ "out" "dev" ];
outputBin = "dev";
nativeBuildInputs = [
- pkgconfig perl bison flex python gobjectIntrospection makeWrapper
+ meson ninja pkgconfig gettext bison flex python3 makeWrapper gobjectIntrospection
];
- buildInputs = stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.CoreServices;
+ buildInputs = [ libcap libunwind ] ++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.CoreServices;
propagatedBuildInputs = [ glib ];
- enableParallelBuilding = true;
-
- preConfigure = ''
- configureFlagsArray+=("--exec-prefix=$dev")
- '';
-
postInstall = ''
for prog in "$dev/bin/"*; do
wrapProgram "$prog" --suffix GST_PLUGIN_SYSTEM_PATH : "\$(unset _tmp; for profile in \$NIX_PROFILES; do _tmp="\$profile/lib/gstreamer-1.0''$\{_tmp:+:\}\$_tmp"; done; printf "\$_tmp")"
done
'';
+ preConfigure= ''
+ patchShebangs .
+ '';
+
preFixup = ''
moveToOutput "share/bash-completion" "$dev"
'';
diff --git a/pkgs/development/libraries/gstreamer/core/fix_pkgconfig_includedir.patch b/pkgs/development/libraries/gstreamer/core/fix_pkgconfig_includedir.patch
new file mode 100644
index 00000000000..c388a82fa2a
--- /dev/null
+++ b/pkgs/development/libraries/gstreamer/core/fix_pkgconfig_includedir.patch
@@ -0,0 +1,15 @@
+diff --git a/pkgconfig/meson.build b/pkgconfig/meson.build
+index edb0586c2..7ed46dfce 100644
+--- a/pkgconfig/meson.build
++++ b/pkgconfig/meson.build
+@@ -2,8 +2,8 @@ pkgconf = configuration_data()
+
+ pkgconf.set('prefix', join_paths(get_option('prefix')))
+ pkgconf.set('exec_prefix', '${prefix}')
+-pkgconf.set('libdir', '${prefix}/@0@'.format(get_option('libdir')))
+-pkgconf.set('includedir', '${prefix}/@0@'.format(get_option('includedir')))
++pkgconf.set('libdir', join_paths(get_option('prefix'), get_option('libdir')))
++pkgconf.set('includedir', join_paths(get_option('prefix'), get_option('includedir')))
+ pkgconf.set('GST_API_VERSION', apiversion)
+ pkgconf.set('VERSION', gst_version)
+ pkgconf.set('LIBM', mathlib.found() ? '-lm' : '')
diff --git a/pkgs/development/libraries/gstreamer/default.nix b/pkgs/development/libraries/gstreamer/default.nix
index 76cffa89dbc..ce74b2f27ff 100644
--- a/pkgs/development/libraries/gstreamer/default.nix
+++ b/pkgs/development/libraries/gstreamer/default.nix
@@ -13,13 +13,11 @@ rec {
gst-plugins-ugly = callPackage ./ugly { inherit gst-plugins-base; };
+ gst-rtsp-server = callPackage ./rtsp-server { inherit gst-plugins-base; };
+
gst-libav = callPackage ./libav { inherit gst-plugins-base; };
- gnonlin = callPackage ./gnonlin { inherit gst-plugins-base; };
-
- # TODO: gnonlin is deprecated in gst-editing-services, better switch to nle
- # (Non Linear Engine).
- gst-editing-services = callPackage ./ges { inherit gnonlin; };
+ gst-editing-services = callPackage ./ges { inherit gst-plugins-base; };
gst-vaapi = callPackage ./vaapi {
inherit gst-plugins-base gstreamer gst-plugins-bad;
diff --git a/pkgs/development/libraries/gstreamer/ges/default.nix b/pkgs/development/libraries/gstreamer/ges/default.nix
index c38ab12ec96..895f298c826 100644
--- a/pkgs/development/libraries/gstreamer/ges/default.nix
+++ b/pkgs/development/libraries/gstreamer/ges/default.nix
@@ -1,9 +1,10 @@
-{ stdenv, fetchurl, pkgconfig, python, gobjectIntrospection
-, gnonlin, libxml2, flex, perl
+{ stdenv, fetchurl, fetchpatch, meson, ninja
+, pkgconfig, python, gst-plugins-base, libxml2
+, flex, perl, gettext, gobjectIntrospection
}:
stdenv.mkDerivation rec {
- name = "gstreamer-editing-services-1.12.3";
+ name = "gstreamer-editing-services-1.14.0";
meta = with stdenv.lib; {
description = "Library for creation of audio/video non-linear editors";
@@ -14,12 +15,20 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "${meta.homepage}/src/gstreamer-editing-services/${name}.tar.xz";
- sha256 = "0xjz8r0wbzc0kwi9q8akv7w71ii1n2y2dmb0q2p5k4h78382ybh3";
+ sha256 = "14cdd6y9p4k603hsnyhdjw2igg855gwpx0362jmg8k1gagmr0pwd";
};
outputs = [ "out" "dev" ];
- nativeBuildInputs = [ pkgconfig python gobjectIntrospection flex perl ];
+ nativeBuildInputs = [ meson ninja pkgconfig gettext gobjectIntrospection python flex perl ];
- propagatedBuildInputs = [ gnonlin libxml2 ];
+ propagatedBuildInputs = [ gst-plugins-base libxml2 ];
+
+ patches = [
+ (fetchpatch {
+ url = "https://bug794856.bugzilla-attachments.gnome.org/attachment.cgi?id=370413";
+ sha256 = "1xcgbs18g6n5p7z7kqj7ffakwmkxq7ijajyvhyl7p3zvqll9dc7x";
+ })
+ ./fix_pkgconfig_includedir.patch
+ ];
}
diff --git a/pkgs/development/libraries/gstreamer/ges/fix_pkgconfig_includedir.patch b/pkgs/development/libraries/gstreamer/ges/fix_pkgconfig_includedir.patch
new file mode 100644
index 00000000000..1e12f3bbfbe
--- /dev/null
+++ b/pkgs/development/libraries/gstreamer/ges/fix_pkgconfig_includedir.patch
@@ -0,0 +1,15 @@
+diff --git a/pkgconfig/meson.build b/pkgconfig/meson.build
+index a612b21b..c017eaff 100644
+--- a/pkgconfig/meson.build
++++ b/pkgconfig/meson.build
+@@ -2,8 +2,8 @@ pkgconf = configuration_data()
+
+ pkgconf.set('prefix', get_option('prefix'))
+ pkgconf.set('exec_prefix', '${prefix}')
+-pkgconf.set('libdir', '${prefix}/@0@'.format(get_option('libdir')))
+-pkgconf.set('includedir', '${prefix}/@0@'.format(get_option('includedir')))
++pkgconf.set('libdir', join_paths(get_option('prefix'), get_option('libdir')))
++pkgconf.set('includedir', join_paths(get_option('prefix'), get_option('includedir')))
+ pkgconf.set('GST_API_VERSION', apiversion)
+ pkgconf.set('VERSION', gst_version)
+
diff --git a/pkgs/development/libraries/gstreamer/gnonlin/default.nix b/pkgs/development/libraries/gstreamer/gnonlin/default.nix
deleted file mode 100644
index c04b64ae3c6..00000000000
--- a/pkgs/development/libraries/gstreamer/gnonlin/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ stdenv, fetchurl, pkgconfig
-, gst-plugins-base
-}:
-
-stdenv.mkDerivation rec {
- name = "gnonlin-1.4.0";
-
- meta = with stdenv.lib; {
- description = "Gstreamer Non-Linear Multimedia Editing Plugins";
- homepage = "https://gstreamer.freedesktop.org";
- longDescription = ''
- Gnonlin is a library built on top of GStreamer which provides
- support for writing non-linear audio and video editing
- applications. It introduces the concept of a timeline.
- '';
- license = licenses.lgpl2Plus;
- platforms = platforms.unix;
- };
-
- src = fetchurl {
- url = "${meta.homepage}/src/gnonlin/${name}.tar.xz";
- sha256 = "0zv60rq2h736a6fivd3a3wp59dj1jar7b2vwzykahvl168b7wrid";
- };
-
- outputs = [ "out" "dev" ];
-
- nativeBuildInputs = [ pkgconfig ];
-
- propagatedBuildInputs = [ gst-plugins-base ];
-}
diff --git a/pkgs/development/libraries/gstreamer/good/default.nix b/pkgs/development/libraries/gstreamer/good/default.nix
index e4e4f3b394d..960c03b52e2 100644
--- a/pkgs/development/libraries/gstreamer/good/default.nix
+++ b/pkgs/development/libraries/gstreamer/good/default.nix
@@ -1,17 +1,20 @@
-{ stdenv, fetchurl, pkgconfig, python
-, gst-plugins-base, orc, bzip2
+{ stdenv, fetchurl, meson, ninja, pkgconfig, python
+, gst-plugins-base, orc, bzip2, gettext
, libv4l, libdv, libavc1394, libiec61883
, libvpx, speex, flac, taglib, libshout
, cairo, gdk_pixbuf, aalib, libcaca
, libsoup, libpulseaudio, libintlOrEmpty
-, darwin
+, darwin, lame, mpg123, twolame
+, gtkSupport ? false, gtk3 ? null
}:
+assert gtkSupport -> gtk3 != null;
+
let
inherit (stdenv.lib) optionals optionalString;
in
stdenv.mkDerivation rec {
- name = "gst-plugins-good-1.12.3";
+ name = "gst-plugins-good-1.14.0";
meta = with stdenv.lib; {
description = "Gstreamer Good Plugins";
@@ -27,27 +30,26 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "${meta.homepage}/src/gst-plugins-good/${name}.tar.xz";
- sha256 = "00sznj1sl97fqpn6j8ngps04clvxp8h8yhw6lvszx4b855wz9rqk";
+ sha256 = "1226s30cf7pqg3fj8shd20l7sp93yw9sqplgxns3m3ajgms3byka";
};
outputs = [ "out" "dev" ];
- nativeBuildInputs = [ pkgconfig python ];
+ patches = [ ./fix_pkgconfig_includedir.patch ];
+
+ nativeBuildInputs = [ pkgconfig python meson ninja gettext ];
buildInputs = [
gst-plugins-base orc bzip2
libdv libvpx speex flac taglib
cairo gdk_pixbuf aalib libcaca
- libsoup libshout
+ libsoup libshout lame mpg123 twolame
]
++ libintlOrEmpty
++ optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ]
- ++ optionals stdenv.isLinux [ libv4l libpulseaudio libavc1394 libiec61883 ];
-
- preFixup = ''
- mkdir -p "$dev/lib/gstreamer-1.0"
- mv "$out/lib/gstreamer-1.0/"*.la "$dev/lib/gstreamer-1.0"
- '';
+ ++ optionals stdenv.isLinux [ libv4l libpulseaudio libavc1394 libiec61883 ]
+ # for gtksink
+ ++ optionals gtkSupport [ gtk3 ];
LDFLAGS = optionalString stdenv.isDarwin "-lintl";
}
diff --git a/pkgs/development/libraries/gstreamer/good/fix_pkgconfig_includedir.patch b/pkgs/development/libraries/gstreamer/good/fix_pkgconfig_includedir.patch
new file mode 100644
index 00000000000..f68ad603a37
--- /dev/null
+++ b/pkgs/development/libraries/gstreamer/good/fix_pkgconfig_includedir.patch
@@ -0,0 +1,15 @@
+diff --git a/pkgconfig/meson.build b/pkgconfig/meson.build
+index b3bf0d4d4..3e6e576c0 100644
+--- a/pkgconfig/meson.build
++++ b/pkgconfig/meson.build
+@@ -2,8 +2,8 @@ pkgconf = configuration_data()
+
+ pkgconf.set('prefix', get_option('prefix'))
+ pkgconf.set('exec_prefix', '${prefix}')
+-pkgconf.set('libdir', '${prefix}/@0@'.format(get_option('libdir')))
+-pkgconf.set('includedir', '${prefix}/@0@'.format(get_option('includedir')))
++pkgconf.set('libdir', join_paths(get_option('prefix'), get_option('libdir')))
++pkgconf.set('includedir', join_paths(get_option('prefix'), get_option('includedir')))
+ pkgconf.set('GST_API_VERSION', api_version)
+ pkgconf.set('VERSION', gst_version)
+
diff --git a/pkgs/development/libraries/gstreamer/gstreamermm/default.nix b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix
index bee80cb24ec..14e27ab6068 100644
--- a/pkgs/development/libraries/gstreamer/gstreamermm/default.nix
+++ b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
description = "C++ interface for GStreamer";
homepage = https://gstreamer.freedesktop.org/bindings/cplusplus.html;
license = licenses.lgpl21Plus;
- platforms = platforms.unix;
+ platforms = platforms.linux;
maintainers = with maintainers; [ romildo ];
};
diff --git a/pkgs/development/libraries/gstreamer/libav/default.nix b/pkgs/development/libraries/gstreamer/libav/default.nix
index 9969c5e604f..564b37fab79 100644
--- a/pkgs/development/libraries/gstreamer/libav/default.nix
+++ b/pkgs/development/libraries/gstreamer/libav/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchurl, pkgconfig, python, yasm
-, gst-plugins-base, orc, bzip2
-, withSystemLibav ? true, libav ? null
+{ stdenv, fetchurl, meson, ninja, pkgconfig
+, python, yasm, gst-plugins-base, orc, bzip2
+, gettext, withSystemLibav ? true, libav ? null
}:
# Note that since gst-libav-1.6, libav is actually ffmpeg. See
@@ -9,7 +9,7 @@
assert withSystemLibav -> libav != null;
stdenv.mkDerivation rec {
- name = "gst-libav-1.12.3";
+ name = "gst-libav-1.14.0";
meta = {
homepage = https://gstreamer.freedesktop.org;
@@ -19,16 +19,13 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "${meta.homepage}/src/gst-libav/${name}.tar.xz";
- sha256 = "0l4nc6ikdx49l7bdrk3bd9p3pzry8a328r22zg48gyzpnv5ghph1";
+ sha256 = "12gglx6rarnxbaj0h1wivlgkv467n1bz2bwjigplciq57r6ln4zv";
};
outputs = [ "out" "dev" ];
- configureFlags = stdenv.lib.optionalString withSystemLibav
- "--with-system-libav";
-
nativeBuildInputs = with stdenv.lib;
- [ pkgconfig python ]
+ [ meson ninja gettext pkgconfig python ]
++ optional (!withSystemLibav) yasm
;
diff --git a/pkgs/development/libraries/gstreamer/rtsp-server/default.nix b/pkgs/development/libraries/gstreamer/rtsp-server/default.nix
new file mode 100644
index 00000000000..9ff799b0a27
--- /dev/null
+++ b/pkgs/development/libraries/gstreamer/rtsp-server/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl, meson, ninja, pkgconfig
+, gst-plugins-base, gettext, gobjectIntrospection
+}:
+
+stdenv.mkDerivation rec {
+ name = "gst-rtsp-server-1.14.0";
+
+ meta = with stdenv.lib; {
+ description = "Gstreamer RTSP server";
+ homepage = "https://gstreamer.freedesktop.org";
+ longDescription = ''
+ a library on top of GStreamer for building an RTSP server.
+ '';
+ license = licenses.lgpl2Plus;
+ platforms = platforms.linux ++ platforms.darwin;
+ maintainers = with maintainers; [ bkchr ];
+ };
+
+ src = fetchurl {
+ url = "${meta.homepage}/src/gst-rtsp-server/${name}.tar.xz";
+ sha256 = "0mlp9ms5hfbyzyvmc9xgi7934g4zrh1sbgky2p9zc5fqprvs0rbb";
+ };
+
+ outputs = [ "out" "dev" ];
+
+ nativeBuildInputs = [ meson ninja gettext gobjectIntrospection pkgconfig ];
+
+ buildInputs = [ gst-plugins-base ];
+}
diff --git a/pkgs/development/libraries/gstreamer/ugly/default.nix b/pkgs/development/libraries/gstreamer/ugly/default.nix
index cdaa88ce350..90e7eab860a 100644
--- a/pkgs/development/libraries/gstreamer/ugly/default.nix
+++ b/pkgs/development/libraries/gstreamer/ugly/default.nix
@@ -1,11 +1,11 @@
-{ stdenv, fetchurl, pkgconfig, python
-, gst-plugins-base, orc
+{ stdenv, fetchurl, meson, ninja, pkgconfig, python
+, gst-plugins-base, orc, gettext
, a52dec, libcdio, libdvdread
-, lame, libmad, libmpeg2, x264, libintlOrEmpty, mpg123
+, libmad, libmpeg2, x264, libintlOrEmpty
}:
stdenv.mkDerivation rec {
- name = "gst-plugins-ugly-1.12.3";
+ name = "gst-plugins-ugly-1.14.0";
meta = with stdenv.lib; {
description = "Gstreamer Ugly Plugins";
@@ -22,17 +22,17 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "${meta.homepage}/src/gst-plugins-ugly/${name}.tar.xz";
- sha256 = "0lh00rg26iy5lr5al23lxsyncjqkgzph1bzkrgp8x9sfr62ab378";
+ sha256 = "1la2nny9hfw3rf3wvqggkg8ivn52qrqqs4n4mqz4ppm2r1gymf9z";
};
outputs = [ "out" "dev" ];
- nativeBuildInputs = [ pkgconfig python ];
+ nativeBuildInputs = [ meson ninja gettext pkgconfig python ];
buildInputs = [
gst-plugins-base orc
a52dec libcdio libdvdread
- lame libmad libmpeg2 x264 mpg123
+ libmad libmpeg2 x264
] ++ libintlOrEmpty;
NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
diff --git a/pkgs/development/libraries/gstreamer/vaapi/default.nix b/pkgs/development/libraries/gstreamer/vaapi/default.nix
index 8351cfd65b1..11b451e76fd 100644
--- a/pkgs/development/libraries/gstreamer/vaapi/default.nix
+++ b/pkgs/development/libraries/gstreamer/vaapi/default.nix
@@ -1,20 +1,20 @@
-{ stdenv, fetchurl, pkgconfig, gst-plugins-base, bzip2, libva, wayland
+{ stdenv, fetchurl, meson, ninja, pkgconfig, gst-plugins-base, bzip2, libva, wayland
, libdrm, udev, xorg, libGLU_combined, yasm, gstreamer, gst-plugins-bad, nasm
, libvpx, python
}:
stdenv.mkDerivation rec {
name = "gst-vaapi-${version}";
- version = "1.12.4";
+ version = "1.14.0";
src = fetchurl {
url = "${meta.homepage}/src/gstreamer-vaapi/gstreamer-vaapi-${version}.tar.xz";
- sha256 = "1jg9nvc8000yi2bcl3wn2yh2hwl7yvlwldj6778w8c0z5qj7fb8w";
+ sha256 = "1whxk428badv8ibji00sn6hj17cp8l9n93rr948bz2gjbq41zqz4";
};
outputs = [ "out" "dev" ];
- nativeBuildInputs = [ pkgconfig bzip2 ];
+ nativeBuildInputs = [ meson ninja pkgconfig bzip2 ];
buildInputs = [
gstreamer gst-plugins-base gst-plugins-bad libva wayland libdrm udev
@@ -22,11 +22,10 @@ stdenv.mkDerivation rec {
xorg.libICE libGLU_combined nasm libvpx python
];
- preConfigure = "
+ preConfigure = ''
export GST_PLUGIN_PATH_1_0=$out/lib/gstreamer-1.0
mkdir -p $GST_PLUGIN_PATH_1_0
- ";
- configureFlags = "--disable-builtin-libvpx --with-gstreamer-api=1.0";
+ '';
meta = {
homepage = https://gstreamer.freedesktop.org;
diff --git a/pkgs/development/libraries/gstreamer/validate/default.nix b/pkgs/development/libraries/gstreamer/validate/default.nix
index 1cb5e4f968e..bd33d9c5280 100644
--- a/pkgs/development/libraries/gstreamer/validate/default.nix
+++ b/pkgs/development/libraries/gstreamer/validate/default.nix
@@ -3,7 +3,7 @@
}:
stdenv.mkDerivation rec {
- name = "gst-validate-1.12.3";
+ name = "gst-validate-1.14.0";
meta = {
description = "Integration testing infrastructure for the GStreamer framework";
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "${meta.homepage}/src/gst-validate/${name}.tar.xz";
- sha256 = "17j812pkzgbyn9ys3b305yl5mrf9nbm8whwj4iqdskr742fr8fai";
+ sha256 = "1pzzxqkv1spjrzpzpazdm2h4s2wk7gg5gag8nxj5v2gjfyzhiprk";
};
outputs = [ "out" "dev" ];
diff --git a/pkgs/development/libraries/gvfs/default.nix b/pkgs/development/libraries/gvfs/default.nix
index 436cf56dc13..67837b345c0 100644
--- a/pkgs/development/libraries/gvfs/default.nix
+++ b/pkgs/development/libraries/gvfs/default.nix
@@ -5,8 +5,17 @@
, gnomeSupport ? false, gnome, makeWrapper
, libimobiledevice, libbluray, libcdio-paranoia, libnfs, openssh
, libsecret, libgdata
+# Remove when switching back to meson
+, autoreconfHook, lzma, bzip2
}:
+# TODO: switch to meson when upstream fixes a non-deterministic build failure
+# See https://bugzilla.gnome.org/show_bug.cgi?id=794549
+
+# Meson specific things are commented out and annotated, so switching back
+# should simply require deleting autotools specific things and adding back meson
+# flags etc.
+
let
pname = "gvfs";
version = "1.36.0";
@@ -19,13 +28,15 @@ stdenv.mkDerivation rec {
sha256 = "1fsn6aa9a68cfbna9s00l1ry4ym1fr7ii2f45hzj2fipxfpqihwy";
};
- postPatch = ''
- chmod +x meson_post_install.py # patchShebangs requires executable file
- patchShebangs meson_post_install.py
- '';
+ # Uncomment when switching back to meson
+ # postPatch = ''
+ # chmod +x meson_post_install.py # patchShebangs requires executable file
+ # patchShebangs meson_post_install.py
+ # '';
nativeBuildInputs = [
- meson ninja
+ autoreconfHook # Remove when switching to meson
+ # meson ninja
pkgconfig gettext makeWrapper
libxml2 libxslt docbook_xsl docbook_xml_dtd_42
];
@@ -35,24 +46,30 @@ stdenv.mkDerivation rec {
libgphoto2 avahi libarchive fuse libcdio
samba libmtp libcap polkit libimobiledevice libbluray
libcdio-paranoia libnfs openssh
+ # Remove when switching back to meson
+ lzma bzip2
# ToDo: a ligther version of libsoup to have FTP/HTTP support?
] ++ stdenv.lib.optionals gnomeSupport (with gnome; [
libsoup gcr
gnome-online-accounts libsecret libgdata
]);
- mesonFlags = [
- "-Dgio_module_dir=lib/gio/modules"
- "-Dsystemduserunitdir=lib/systemd/user"
- "-Ddbus_service_dir=share/dbus-1/services"
- "-Dtmpfilesdir=no"
- ] ++ stdenv.lib.optionals (!gnomeSupport) [
- "-Dgcr=false" "-Dgoa=false" "-Dkeyring=false" "-Dhttp=false"
- "-Dgoogle=false"
- ] ++ stdenv.lib.optionals (samba == null) [
- # Xfce don't want samba
- "-Dsmb=false"
- ];
+ # Remove when switching back to meson
+ configureFlags = stdenv.lib.optional (!gnomeSupport) "--disable-gcr";
+
+ # Uncomment when switching back to meson
+ # mesonFlags = [
+ # "-Dgio_module_dir=lib/gio/modules"
+ # "-Dsystemduserunitdir=lib/systemd/user"
+ # "-Ddbus_service_dir=share/dbus-1/services"
+ # "-Dtmpfilesdir=no"
+ # ] ++ stdenv.lib.optionals (!gnomeSupport) [
+ # "-Dgcr=false" "-Dgoa=false" "-Dkeyring=false" "-Dhttp=false"
+ # "-Dgoogle=false"
+ # ] ++ stdenv.lib.optionals (samba == null) [
+ # # Xfce don't want samba
+ # "-Dsmb=false"
+ # ];
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/herqq/default.nix b/pkgs/development/libraries/herqq/default.nix
index 8f1aadc3a26..75dd8693d2c 100644
--- a/pkgs/development/libraries/herqq/default.nix
+++ b/pkgs/development/libraries/herqq/default.nix
@@ -15,10 +15,10 @@ stdenv.mkDerivation rec {
sha256 = "1w674rbwbhpirq70gp9rk6p068j36rwn112fx3nz613wgw63x84m";
};
- meta = {
+ meta = with stdenv.lib; {
homepage = http://herqq.org;
description = "A software library for building UPnP devices and control points";
- inherit (qt5.qtbase.meta) platforms;
+ platforms = platforms.linux;
maintainers = [ ];
};
}
diff --git a/pkgs/development/libraries/hpx/default.nix b/pkgs/development/libraries/hpx/default.nix
index 6b08a0fd86f..edb1dc01aa8 100644
--- a/pkgs/development/libraries/hpx/default.nix
+++ b/pkgs/development/libraries/hpx/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "hpx-${version}";
- version = "1.0.0";
+ version = "1.1.0";
src = fetchFromGitHub {
owner = "STEllAR-GROUP";
repo = "hpx";
rev = "${version}";
- sha256 = "0k79gw4c0v4i7ps1hw6x4m7svxbfml5xm6ly7p00dvg7z9521zsk";
+ sha256 = "0xlhnycmpy2jgiqyzpwmkdrl6drf46ywdsl0qm4vksvjxqfgk9z3";
};
buildInputs = [ boost hwloc gperftools ];
diff --git a/pkgs/development/libraries/idnkit/default.nix b/pkgs/development/libraries/idnkit/default.nix
index 4cee2863093..442da700f34 100644
--- a/pkgs/development/libraries/idnkit/default.nix
+++ b/pkgs/development/libraries/idnkit/default.nix
@@ -1,11 +1,12 @@
{ stdenv, fetchurl, libiconv }:
stdenv.mkDerivation rec {
- name = "idnkit-1.0";
+ name = "idnkit-${version}";
+ version = "2.3";
src = fetchurl {
- url = "http://www.nic.ad.jp/ja/idn/idnkit/download/sources/${name}-src.tar.gz";
- sha256 = "1z4i6fmyv67sflmjg763ymcxrcv84rbj1kv15im0s655h775zk8n";
+ url = "https://jprs.co.jp/idn/${name}.tar.bz2";
+ sha256 = "0zp9yc84ff5s0g2i6v9yfyza2n2x4xh0kq7hjd3anhh0clbp3l16";
};
buildInputs = [ libiconv ];
diff --git a/pkgs/development/libraries/itk/default.nix b/pkgs/development/libraries/itk/default.nix
index bb90ec4831a..10c160eacc6 100644
--- a/pkgs/development/libraries/itk/default.nix
+++ b/pkgs/development/libraries/itk/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, fetchpatch, cmake, libX11, libuuid, xz, vtk }:
stdenv.mkDerivation rec {
- name = "itk-4.12.2";
+ name = "itk-4.13.0";
src = fetchurl {
- url = mirror://sourceforge/itk/InsightToolkit-4.12.2.tar.xz;
- sha256 = "1qw9mxbh083siljygahl4gdfv91xvfd8hfl7ghwii19f60xrvn2w";
+ url = mirror://sourceforge/itk/InsightToolkit-4.13.0.tar.xz;
+ sha256 = "09d1gmqx3wbdfgwf7r91r12m2vknviv0i8wxwh2q9w1vrpizrczy";
};
cmakeFlags = [
diff --git a/pkgs/development/libraries/java/classpath/default.nix b/pkgs/development/libraries/java/classpath/default.nix
deleted file mode 100644
index 82e02d06906..00000000000
--- a/pkgs/development/libraries/java/classpath/default.nix
+++ /dev/null
@@ -1,61 +0,0 @@
-{ fetchurl, stdenv, javac, jvm, antlr, pkgconfig, gtk2, gconf, ecj }:
-
-stdenv.mkDerivation rec {
- name = "classpath-0.99";
-
- src = fetchurl {
- url = "mirror://gnu/classpath/${name}.tar.gz";
- sha256 = "1j7cby4k66f1nvckm48xcmh352b1d1b33qk7l6hi7dp9i9zjjagr";
- };
-
- patches = [ ./missing-casts.patch ];
-
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ javac jvm antlr gtk2 gconf ecj ];
-
- configurePhase = ''
- # GCJ tries to compile all of Classpath during the `configure' run when
- # trying to build in the source tree (see
- # http://www.mail-archive.com/classpath@gnu.org/msg15079.html), thus we
- # build out-of-tree.
- mkdir ../build
- cd ../build
- echo "building in \`$PWD'"
-
- ../${name}/configure --prefix="$out" \
- --enable-fast-install --disable-dependency-tracking \
- ${configureFlags}
- '';
-
- /* Plug-in support requires Xulrunner and all that. Maybe someday,
- optionally.
-
- Compilation with `-Werror' is disabled because of this:
-
- native/jni/native-lib/cpnet.c: In function 'cpnet_addMembership':
- native/jni/native-lib/cpnet.c:583: error: dereferencing type-punned pointer will break strict-aliasing rules
- native/jni/native-lib/cpnet.c: In function 'cpnet_dropMembership':
- native/jni/native-lib/cpnet.c:598: error: dereferencing type-punned pointer will break strict-aliasing rules
-
- */
-
- configureFlags = "--disable-Werror --disable-plugin --with-antlr-jar=${antlr}/lib/antlr.jar";
-
- meta = {
- description = "Essential libraries for Java";
-
- longDescription = ''
- GNU Classpath, Essential Libraries for Java, is a GNU project to create
- free core class libraries for use with virtual machines and compilers
- for the Java programming language.
- '';
-
- homepage = http://www.gnu.org/software/classpath/;
-
- # The exception makes it similar to LGPLv2+ AFAICS.
- license = stdenv.lib.licenses.gpl2ClasspathPlus;
-
- maintainers = [ ];
- platforms = stdenv.lib.platforms.linux;
- };
-}
diff --git a/pkgs/development/libraries/java/classpath/missing-casts.patch b/pkgs/development/libraries/java/classpath/missing-casts.patch
deleted file mode 100644
index 863ca2cac8c..00000000000
--- a/pkgs/development/libraries/java/classpath/missing-casts.patch
+++ /dev/null
@@ -1,80 +0,0 @@
-Add missing casts. The GCC folks applied a similar patch in
-GCC's own copy of Classpath:
-http://gcc.gnu.org/ml/java/2007-05/msg00039.html .
-
---- classpath-0.98/javax/management/NotificationBroadcasterSupport.java 2009-07-30 16:52:08.000000000 +0200
-+++ classpath-0.98/javax/management/NotificationBroadcasterSupport.java 2009-07-30 16:51:58.000000000 +0200
-@@ -218,7 +218,7 @@
- {
- if (info == null || info.length == 0)
- return new MBeanNotificationInfo[0];
-- return info.clone();
-+ return (MBeanNotificationInfo[]) info.clone();
- }
-
- /**
-
---- classpath-0.98/java/util/concurrent/CopyOnWriteArrayList.java 2008-03-27 18:39:25.000000000 +0100
-+++ classpath-0.98/java/util/concurrent/CopyOnWriteArrayList.java 2009-07-30 17:08:30.000000000 +0200
-@@ -147,7 +148,7 @@ public class CopyOnWriteArrayList
- */
- public CopyOnWriteArrayList(E[] array)
- {
-- data = array.clone();
-+ data = (E[]) array.clone();
- }
-
- /**
-@@ -364,7 +365,7 @@ public class CopyOnWriteArrayList
- public synchronized E set(int index, E e)
- {
- E result = data[index];
-- E[] newData = data.clone();
-+ E[] newData = (E[]) data.clone();
- newData[index] = e;
- data = newData;
- return result;
-
---- classpath-0.98/java/util/EnumMap.java 2007-07-24 17:26:36.000000000 +0200
-+++ classpath-0.98/java/util/EnumMap.java 2009-07-30 17:12:19.000000000 +0200
-@@ -398,7 +398,7 @@ public class EnumMap,
- // Can't happen.
- result = null;
- }
-- result.store = store.clone();
-+ result.store = (V[]) store.clone();
- return result;
- }
-
---- classpath-0.98/gnu/java/lang/reflect/GenericSignatureParser.java 2008-03-01 11:13:31.000000000 +0100
-+++ classpath-0.98/gnu/java/lang/reflect/GenericSignatureParser.java 2009-07-30 17:14:24.000000000 +0200
-@@ -75,7 +75,7 @@ final class TypeVariableImpl extends Typ
- public Type[] getBounds()
- {
- resolve(bounds);
-- return bounds.clone();
-+ return (Type[]) bounds.clone();
- }
-
- public GenericDeclaration getGenericDeclaration()
-@@ -154,7 +154,7 @@ final class ParameterizedTypeImpl extend
-
- public Type[] getActualTypeArguments()
- {
-- return typeArgs.clone();
-+ return (Type[]) typeArgs.clone();
- }
-
- public Type getRawType()
-
---- classpath-0.98/external/jsr166/java/util/ArrayDeque.java 2006-12-10 21:25:40.000000000 +0100
-+++ classpath-0.98/external/jsr166/java/util/ArrayDeque.java 2009-07-30 17:15:35.000000000 +0200
-@@ -787,7 +790,7 @@ public class ArrayDeque extends Abstr
- ArrayDeque result = (ArrayDeque) super.clone();
- // Classpath local: we don't have Arrays.copyOf yet.
- // result.elements = Arrays.copyOf(elements, elements.length);
-- result.elements = elements.clone();
-+ result.elements = (E[]) elements.clone();
- return result;
-
- } catch (CloneNotSupportedException e) {
diff --git a/pkgs/development/libraries/json-c/default.nix b/pkgs/development/libraries/json-c/default.nix
index 315296ea2df..27d1b701f05 100644
--- a/pkgs/development/libraries/json-c/default.nix
+++ b/pkgs/development/libraries/json-c/default.nix
@@ -1,10 +1,10 @@
{ stdenv, fetchurl, autoconf }:
stdenv.mkDerivation rec {
- name = "json-c-0.13";
+ name = "json-c-0.13.1";
src = fetchurl {
url = "https://s3.amazonaws.com/json-c_releases/releases/${name}-nodoc.tar.gz";
- sha256 = "01jsr647faqrcbsrmzb52s9ppa9ll4pscz4nizk3xlp98q37cwl5";
+ sha256 = "0ch1v18wk703bpbyzj7h1mkwvsw4rw4qdwvgykscypvqq10678ll";
};
outputs = [ "out" "dev" ];
diff --git a/pkgs/development/libraries/leveldb/default.nix b/pkgs/development/libraries/leveldb/default.nix
index 3ff2ca0b0ee..2b50c09af5c 100644
--- a/pkgs/development/libraries/leveldb/default.nix
+++ b/pkgs/development/libraries/leveldb/default.nix
@@ -15,7 +15,12 @@ stdenv.mkDerivation rec {
make all leveldbutil libmemenv.a
'';
- installPhase = "
+ installPhase = (stdenv.lib.optionalString stdenv.isDarwin ''
+ for file in *.dylib*; do
+ install_name_tool -id $out/lib/$file $file
+ done
+ '') + # XXX consider removing above after transition to cmake in the next release
+ "
mkdir -p $out/{bin,lib,include}
cp -r include $out
diff --git a/pkgs/development/libraries/libamqpcpp/default.nix b/pkgs/development/libraries/libamqpcpp/default.nix
index 421c73cbb05..85972e67e10 100644
--- a/pkgs/development/libraries/libamqpcpp/default.nix
+++ b/pkgs/development/libraries/libamqpcpp/default.nix
@@ -1,16 +1,18 @@
-{ stdenv, fetchFromGitHub }:
+{ stdenv, fetchFromGitHub, openssl }:
stdenv.mkDerivation rec {
name = "libamqpcpp-${version}";
- version = "2.7.4";
+ version = "3.0.0";
src = fetchFromGitHub {
owner = "CopernicaMarketingSoftware";
repo = "AMQP-CPP";
rev = "v${version}";
- sha256 = "0m010bz0axawcpv4d1p1vx7c6r8lg27w2s2vjqpbpg99w35n6c8k";
+ sha256 = "0n93wy2v2hx9zalpyn8zxsxihh0xpgcd472qwvwsc253y97v8ngv";
};
+ buildInputs = [ openssl ];
+
patches = [ ./libamqpcpp-darwin.patch ];
makeFlags = [ "PREFIX=$(out)" ];
diff --git a/pkgs/development/libraries/libaom/default.nix b/pkgs/development/libraries/libaom/default.nix
new file mode 100644
index 00000000000..d11bec2cb4f
--- /dev/null
+++ b/pkgs/development/libraries/libaom/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchgit, yasm, perl, cmake, pkgconfig }:
+
+stdenv.mkDerivation rec {
+ name = "libaom-0.1.0";
+
+ src = fetchgit {
+ url = "https://aomedia.googlesource.com/aom";
+ rev = "105e9b195bb90c9b06edcbcb13b6232dab6db0b7";
+ sha256 = "1fl2sca4df01gyn00s0xcwwirxccfnjppvjdrxdnb8f2naj721by";
+ };
+
+ buildInputs = [ perl yasm ];
+ nativeBuildInputs = [ cmake pkgconfig ];
+
+ cmakeFlags = [
+ "-DCONFIG_UNIT_TESTS=0"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "AV1 Bitstream and Decoding Library";
+ homepage = https://aomedia.org/av1-features/get-started/;
+ maintainers = with maintainers; [ kiloreux ];
+ platforms = platforms.all;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/libraries/libesmtp/default.nix b/pkgs/development/libraries/libesmtp/default.nix
new file mode 100644
index 00000000000..980cee2e687
--- /dev/null
+++ b/pkgs/development/libraries/libesmtp/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+ name = "libESMTP-${version}";
+ version = "1.0.6";
+
+ src = fetchurl {
+ url = "http://brianstafford.info/libesmtp/libesmtp-1.0.6.tar.bz2";
+ sha256 = "02zbniyz7qys1jmx3ghx21kxmns1wc3hmv80gp7ag7yra9f1m9nh";
+ };
+
+ meta = with stdenv.lib; {
+ homepage = http://brianstafford.info/libesmtp/index.html;
+ description = "A Library for Posting Electronic Mail";
+ license = licenses.lgpl21;
+ };
+}
+
diff --git a/pkgs/development/libraries/libevent/default.nix b/pkgs/development/libraries/libevent/default.nix
index e14f4cbf5d6..871437f1908 100644
--- a/pkgs/development/libraries/libevent/default.nix
+++ b/pkgs/development/libraries/libevent/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, findutils
+{ stdenv, fetchurl, findutils, fixDarwinDylibNames
, sslSupport? true, openssl
}:
@@ -26,6 +26,7 @@ stdenv.mkDerivation rec {
buildInputs = []
++ stdenv.lib.optional sslSupport openssl
++ stdenv.lib.optional stdenv.isCygwin findutils
+ ++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames
;
postInstall = stdenv.lib.optionalString sslSupport ''
diff --git a/pkgs/development/libraries/libgringotts/default.nix b/pkgs/development/libraries/libgringotts/default.nix
index 1da6cffe3f2..89fcfdfde8d 100644
--- a/pkgs/development/libraries/libgringotts/default.nix
+++ b/pkgs/development/libraries/libgringotts/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "libgringotts-${version}";
- version = "1.1.2";
+ version = "1.2.1";
src = fetchurl {
- url = "http://libgringotts.sourceforge.net/current/${name}.tar.bz2";
- sha256 = "1bzfnpf2gwc2bisbrw06s63g9z9v4mh1n9ksqr6pbgj2prz7bvlk";
+ url = "https://sourceforge.net/projects/gringotts.berlios/files/${name}.tar.bz2";
+ sha256 = "1ldz1lyl1aml5ci1mpnys8dg6n7khpcs4zpycak3spcpgdsnypm7";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/libraries/libmysqlconnectorcpp/default.nix b/pkgs/development/libraries/libmysqlconnectorcpp/default.nix
index c184e647d28..9eefbcfdb49 100644
--- a/pkgs/development/libraries/libmysqlconnectorcpp/default.nix
+++ b/pkgs/development/libraries/libmysqlconnectorcpp/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "libmysqlconnectorcpp-${version}";
- version = "1.1.7";
+ version = "1.1.9";
src = fetchurl {
url = "http://cdn.mysql.com/Downloads/Connector-C++/mysql-connector-c++-${version}.tar.gz";
- sha256 = "0qy7kxz8h1zswr50ysyl2cc9gy0ip2j7ikl714m7lq3gsay3ydav";
+ sha256 = "1r6j17sy5816a2ld759iis2k6igc2w9p70y4nw9w3rd4d5x88c9y";
};
buildInputs = [ cmake boost mysql ];
diff --git a/pkgs/development/libraries/libqalculate/default.nix b/pkgs/development/libraries/libqalculate/default.nix
index cdc2a657002..1b15769465e 100644
--- a/pkgs/development/libraries/libqalculate/default.nix
+++ b/pkgs/development/libraries/libqalculate/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "libqalculate-${version}";
- version = "2.2.1";
+ version = "2.3.0";
src = fetchurl {
url = "https://github.com/Qalculate/libqalculate/archive/v${version}.tar.gz";
- sha256 = "0bam1xvw4n5sm3g4kmggz2aha34xaw64kw15wl2lbkd2yzdjdm4l";
+ sha256 = "1wrd9ajf00h1ja56r25vljjsgklg0qlzmziax7x26wjqkigc28iq";
};
outputs = [ "out" "dev" "doc" ];
diff --git a/pkgs/development/libraries/libvisio/default.nix b/pkgs/development/libraries/libvisio/default.nix
index bda14d72947..a09e2cf2f72 100644
--- a/pkgs/development/libraries/libvisio/default.nix
+++ b/pkgs/development/libraries/libvisio/default.nix
@@ -1,32 +1,31 @@
{ stdenv, fetchurl, boost, libwpd, libwpg, pkgconfig, zlib, gperf
-, librevenge, libxml2, icu, perl
+, librevenge, libxml2, icu, perl, cppunit, doxygen
}:
stdenv.mkDerivation rec {
- name = "libvisio-0.1.3";
+ name = "libvisio-${version}";
+ version = "0.1.6";
+
+ outputs = [ "out" "bin" "dev" "doc" ];
src = fetchurl {
- url = "http://dev-www.libreoffice.org/src/${name}.tar.bz2";
- sha256 = "1blgdwxprqkasm2175imcvy647sqv6xyf3k09p0b1i7hlq889wvy";
+ url = "https://dev-www.libreoffice.org/src/libvisio/${name}.tar.xz";
+ sha256 = "1yahpfl13qk6178irv8jn5ppxdn7isafqisyqsdw0lqxcz9h447y";
};
- nativeBuildInputs = [ pkgconfig ];
+ nativeBuildInputs = [ pkgconfig cppunit doxygen ];
buildInputs = [ boost libwpd libwpg zlib gperf librevenge libxml2 icu perl ];
- # Boost 1.59 compatability fix
- # Attempt removing when updating
- postPatch = ''
- sed -i 's,^CPPFLAGS.*,\0 -DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED,' src/lib/Makefile.in
- '';
-
configureFlags = [
"--disable-werror"
- "--disable-tests"
];
- meta = {
+ doCheck = true;
+
+ meta = with stdenv.lib; {
description = "A library providing ability to interpret and import visio diagrams into various applications";
- homepage = http://www.freedesktop.org/wiki/Software/libvisio;
- platforms = stdenv.lib.platforms.unix;
+ homepage = https://wiki.documentfoundation.org/DLP/Libraries/libvisio;
+ license = licenses.mpl20;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/development/libraries/lightstep-tracer-cpp/default.nix b/pkgs/development/libraries/lightstep-tracer-cpp/default.nix
index f5660e93d79..f2a8d75a9cb 100644
--- a/pkgs/development/libraries/lightstep-tracer-cpp/default.nix
+++ b/pkgs/development/libraries/lightstep-tracer-cpp/default.nix
@@ -48,5 +48,6 @@ stdenv.mkDerivation rec {
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan ];
+ broken = true; # 2018-02-16
};
}
diff --git a/pkgs/development/libraries/lmdb/default.nix b/pkgs/development/libraries/lmdb/default.nix
index d96b5ed6d52..0bb3a67d950 100644
--- a/pkgs/development/libraries/lmdb/default.nix
+++ b/pkgs/development/libraries/lmdb/default.nix
@@ -2,17 +2,20 @@
stdenv.mkDerivation rec {
name = "lmdb-${version}";
- version = "0.9.21";
+ version = "0.9.22";
src = fetchFromGitHub {
owner = "LMDB";
repo = "lmdb";
rev = "LMDB_${version}";
- sha256 = "026a6himvg3y4ssnccdbgr3c2pq3w2d47nayn05v512875z4f2w3";
+ sha256 = "0lng4ra2qrbqcf8klvqp68qarha0z4bkqhhv8lhh45agsxyrhfkj";
};
postUnpack = "sourceRoot=\${sourceRoot}/libraries/liblmdb";
+ patches = [ ./hardcoded-compiler.patch ];
+ patchFlags = "-p3";
+
outputs = [ "bin" "out" "dev" ];
makeFlags = [ "prefix=$(out)" "CC=cc" ]
diff --git a/pkgs/development/libraries/lmdb/hardcoded-compiler.patch b/pkgs/development/libraries/lmdb/hardcoded-compiler.patch
new file mode 100644
index 00000000000..ddb247b7f11
--- /dev/null
+++ b/pkgs/development/libraries/lmdb/hardcoded-compiler.patch
@@ -0,0 +1,26 @@
+commit 029031a68873bc3784a8561bd8e049efbd34f9d0 (HEAD)
+Author: Vladimír Čunát
+Date: Sun Apr 1 11:05:31 2018 +0200
+
+ make: gcc -> $(CC)
+
+diff --git a/libraries/liblmdb/Makefile b/libraries/liblmdb/Makefile
+index f254511..612484e 100644
+--- a/libraries/liblmdb/Makefile
++++ b/libraries/liblmdb/Makefile
+@@ -102,13 +102,13 @@ COV_OBJS=xmdb.o xmidl.o
+
+ coverage: xmtest
+ for i in mtest*.c [0-9]*.c; do j=`basename \$$i .c`; $(MAKE) $$j.o; \
+- gcc -o x$$j $$j.o $(COV_OBJS) -pthread $(COV_FLAGS); \
++ $(CC) -o x$$j $$j.o $(COV_OBJS) -pthread $(COV_FLAGS); \
+ rm -rf testdb; mkdir testdb; ./x$$j; done
+ gcov xmdb.c
+ gcov xmidl.c
+
+ xmtest: mtest.o xmdb.o xmidl.o
+- gcc -o xmtest mtest.o xmdb.o xmidl.o -pthread $(COV_FLAGS)
++ $(CC) -o xmtest mtest.o xmdb.o xmidl.o -pthread $(COV_FLAGS)
+
+ xmdb.o: mdb.c lmdb.h midl.h
+ $(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -O0 $(COV_FLAGS) -c mdb.c -o $@
diff --git a/pkgs/development/libraries/mpfr/upstream.patch b/pkgs/development/libraries/mpfr/upstream.patch
deleted file mode 100644
index 77933160524..00000000000
--- a/pkgs/development/libraries/mpfr/upstream.patch
+++ /dev/null
@@ -1,1699 +0,0 @@
-diff -Naurd mpfr-3.1.3-a/PATCHES mpfr-3.1.3-b/PATCHES
---- mpfr-3.1.3-a/PATCHES 2015-07-02 10:49:23.950112879 +0000
-+++ mpfr-3.1.3-b/PATCHES 2015-07-02 10:49:24.042113845 +0000
-@@ -0,0 +1 @@
-+lngamma-and-doc
-diff -Naurd mpfr-3.1.3-a/VERSION mpfr-3.1.3-b/VERSION
---- mpfr-3.1.3-a/VERSION 2015-06-19 19:55:09.000000000 +0000
-+++ mpfr-3.1.3-b/VERSION 2015-07-02 10:49:24.042113845 +0000
-@@ -1 +1 @@
--3.1.3
-+3.1.3-p1
-diff -Naurd mpfr-3.1.3-a/doc/mpfr.texi mpfr-3.1.3-b/doc/mpfr.texi
---- mpfr-3.1.3-a/doc/mpfr.texi 2015-06-19 19:55:11.000000000 +0000
-+++ mpfr-3.1.3-b/doc/mpfr.texi 2015-07-02 10:49:24.018113593 +0000
-@@ -810,13 +810,17 @@
- When the input point is in the closure of the domain of the mathematical
- function and an input argument is +0 (resp.@: @minus{}0), one considers
- the limit when the corresponding argument approaches 0 from above
--(resp.@: below). If the limit is not defined (e.g., @code{mpfr_log} on
--@minus{}0), the behavior is specified in the description of the MPFR function.
-+(resp.@: below), if possible. If the limit is not defined (e.g.,
-+@code{mpfr_sqrt} and @code{mpfr_log} on @minus{}0), the behavior is
-+specified in the description of the MPFR function, but must be consistent
-+with the rule from the above paragraph (e.g., @code{mpfr_log} on @pom{}0
-+gives @minus{}Inf).
-
- When the result is equal to 0, its sign is determined by considering the
- limit as if the input point were not in the domain: If one approaches 0
- from above (resp.@: below), the result is +0 (resp.@: @minus{}0);
--for example, @code{mpfr_sin} on +0 gives +0.
-+for example, @code{mpfr_sin} on @minus{}0 gives @minus{}0 and
-+@code{mpfr_acos} on 1 gives +0 (in all rounding modes).
- In the other cases, the sign is specified in the description of the MPFR
- function; for example @code{mpfr_max} on @minus{}0 and +0 gives +0.
-
-@@ -832,8 +836,8 @@
- @c that advantages in practice), like for any bug fix.
- Example: @code{mpfr_hypot} on (NaN,0) gives NaN, but @code{mpfr_hypot}
- on (NaN,+Inf) gives +Inf (as specified in @ref{Special Functions}),
--since for any finite input @var{x}, @code{mpfr_hypot} on (@var{x},+Inf)
--gives +Inf.
-+since for any finite or infinite input @var{x}, @code{mpfr_hypot} on
-+(@var{x},+Inf) gives +Inf.
-
- @node Exceptions, Memory Handling, Floating-Point Values on Special Numbers, MPFR Basics
- @comment node-name, next, previous, up
-@@ -1581,7 +1585,8 @@
- @deftypefunx int mpfr_add_z (mpfr_t @var{rop}, mpfr_t @var{op1}, mpz_t @var{op2}, mpfr_rnd_t @var{rnd})
- @deftypefunx int mpfr_add_q (mpfr_t @var{rop}, mpfr_t @var{op1}, mpq_t @var{op2}, mpfr_rnd_t @var{rnd})
- Set @var{rop} to @math{@var{op1} + @var{op2}} rounded in the direction
--@var{rnd}. For types having no signed zero, it is considered unsigned
-+@var{rnd}. The IEEE-754 rules are used, in particular for signed zeros.
-+But for types having no signed zeros, 0 is considered unsigned
- (i.e., (+0) + 0 = (+0) and (@minus{}0) + 0 = (@minus{}0)).
- The @code{mpfr_add_d} function assumes that the radix of the @code{double} type
- is a power of 2, with a precision at most that declared by the C implementation
-@@ -1599,7 +1604,8 @@
- @deftypefunx int mpfr_sub_z (mpfr_t @var{rop}, mpfr_t @var{op1}, mpz_t @var{op2}, mpfr_rnd_t @var{rnd})
- @deftypefunx int mpfr_sub_q (mpfr_t @var{rop}, mpfr_t @var{op1}, mpq_t @var{op2}, mpfr_rnd_t @var{rnd})
- Set @var{rop} to @math{@var{op1} - @var{op2}} rounded in the direction
--@var{rnd}. For types having no signed zero, it is considered unsigned
-+@var{rnd}. The IEEE-754 rules are used, in particular for signed zeros.
-+But for types having no signed zeros, 0 is considered unsigned
- (i.e., (+0) @minus{} 0 = (+0), (@minus{}0) @minus{} 0 = (@minus{}0),
- 0 @minus{} (+0) = (@minus{}0) and 0 @minus{} (@minus{}0) = (+0)).
- The same restrictions than for @code{mpfr_add_d} apply to @code{mpfr_d_sub}
-@@ -1615,7 +1621,7 @@
- Set @var{rop} to @math{@var{op1} @GMPtimes{} @var{op2}} rounded in the
- direction @var{rnd}.
- When a result is zero, its sign is the product of the signs of the operands
--(for types having no signed zero, it is considered positive).
-+(for types having no signed zeros, 0 is considered positive).
- The same restrictions than for @code{mpfr_add_d} apply to @code{mpfr_mul_d}.
- @end deftypefun
-
-@@ -1635,7 +1641,7 @@
- @deftypefunx int mpfr_div_q (mpfr_t @var{rop}, mpfr_t @var{op1}, mpq_t @var{op2}, mpfr_rnd_t @var{rnd})
- Set @var{rop} to @math{@var{op1}/@var{op2}} rounded in the direction @var{rnd}.
- When a result is zero, its sign is the product of the signs of the operands
--(for types having no signed zero, it is considered positive).
-+(for types having no signed zeros, 0 is considered positive).
- The same restrictions than for @code{mpfr_add_d} apply to @code{mpfr_d_div}
- and @code{mpfr_div_d}.
- @end deftypefun
-@@ -1643,15 +1649,18 @@
- @deftypefun int mpfr_sqrt (mpfr_t @var{rop}, mpfr_t @var{op}, mpfr_rnd_t @var{rnd})
- @deftypefunx int mpfr_sqrt_ui (mpfr_t @var{rop}, unsigned long int @var{op}, mpfr_rnd_t @var{rnd})
- Set @var{rop} to @m{\sqrt{@var{op}}, the square root of @var{op}}
--rounded in the direction @var{rnd} (set @var{rop} to @minus{}0 if @var{op} is
--@minus{}0, to be consistent with the IEEE 754 standard).
-+rounded in the direction @var{rnd}. Set @var{rop} to @minus{}0 if
-+@var{op} is @minus{}0, to be consistent with the IEEE 754 standard.
- Set @var{rop} to NaN if @var{op} is negative.
- @end deftypefun
-
- @deftypefun int mpfr_rec_sqrt (mpfr_t @var{rop}, mpfr_t @var{op}, mpfr_rnd_t @var{rnd})
- Set @var{rop} to @m{1/\sqrt{@var{op}}, the reciprocal square root of @var{op}}
--rounded in the direction @var{rnd}. Set @var{rop} to +Inf if @var{op} is
--@pom{}0, +0 if @var{op} is +Inf, and NaN if @var{op} is negative.
-+rounded in the direction @var{rnd}. Set @var{rop} to +Inf if @var{op} is
-+@pom{}0, +0 if @var{op} is +Inf, and NaN if @var{op} is negative. Warning!
-+Therefore the result on @minus{}0 is different from the one of the rSqrt
-+function recommended by the IEEE 754-2008 standard (Section 9.2.1), which
-+is @minus{}Inf instead of +Inf.
- @end deftypefun
-
- @deftypefun int mpfr_cbrt (mpfr_t @var{rop}, mpfr_t @var{op}, mpfr_rnd_t @var{rnd})
-@@ -1832,7 +1841,9 @@
- @m{\log_2 @var{op}, log2(@var{op})} or
- @m{\log_{10} @var{op}, log10(@var{op})}, respectively,
- rounded in the direction @var{rnd}.
--Set @var{rop} to @minus{}Inf if @var{op} is @minus{}0
-+Set @var{rop} to +0 if @var{op} is 1 (in all rounding modes),
-+for consistency with the ISO C99 and IEEE 754-2008 standards.
-+Set @var{rop} to @minus{}Inf if @var{op} is @pom{}0
- (i.e., the sign of the zero has no influence on the result).
- @end deftypefun
-
-@@ -2003,8 +2014,11 @@
- @deftypefun int mpfr_lngamma (mpfr_t @var{rop}, mpfr_t @var{op}, mpfr_rnd_t @var{rnd})
- Set @var{rop} to the value of the logarithm of the Gamma function on @var{op},
- rounded in the direction @var{rnd}.
--When @math{@minus{}2@var{k}@minus{}1 @le{} @var{op} @le{} @minus{}2@var{k}},
--@var{k} being a non-negative integer, @var{rop} is set to NaN.
-+When @var{op} is 1 or 2, set @var{rop} to +0 (in all rounding modes).
-+When @var{op} is an infinity or a nonpositive integer, set @var{rop} to +Inf,
-+following the general rules on special values.
-+When @math{@minus{}2@var{k}@minus{}1 < @var{op} < @minus{}2@var{k}},
-+@var{k} being a nonnegative integer, set @var{rop} to NaN@.
- See also @code{mpfr_lgamma}.
- @end deftypefun
-
-@@ -2012,10 +2026,11 @@
- Set @var{rop} to the value of the logarithm of the absolute value of the
- Gamma function on @var{op}, rounded in the direction @var{rnd}. The sign
- (1 or @minus{}1) of Gamma(@var{op}) is returned in the object pointed to
--by @var{signp}. When @var{op} is an infinity or a non-positive integer, set
--@var{rop} to +Inf. When @var{op} is NaN, @minus{}Inf or a negative integer,
--*@var{signp} is undefined, and when @var{op} is @pom{}0, *@var{signp} is
--the sign of the zero.
-+by @var{signp}.
-+When @var{op} is 1 or 2, set @var{rop} to +0 (in all rounding modes).
-+When @var{op} is an infinity or a nonpositive integer, set @var{rop} to +Inf.
-+When @var{op} is NaN, @minus{}Inf or a negative integer, *@var{signp} is
-+undefined, and when @var{op} is @pom{}0, *@var{signp} is the sign of the zero.
- @end deftypefun
-
- @deftypefun int mpfr_digamma (mpfr_t @var{rop}, mpfr_t @var{op}, mpfr_rnd_t @var{rnd})
-@@ -2064,7 +2079,10 @@
- @deftypefunx int mpfr_fms (mpfr_t @var{rop}, mpfr_t @var{op1}, mpfr_t @var{op2}, mpfr_t @var{op3}, mpfr_rnd_t @var{rnd})
- Set @var{rop} to @math{(@var{op1} @GMPtimes{} @var{op2}) + @var{op3}}
- (resp.@: @math{(@var{op1} @GMPtimes{} @var{op2}) - @var{op3}})
--rounded in the direction @var{rnd}.
-+rounded in the direction @var{rnd}. Concerning special values (signed zeros,
-+infinities, NaN), these functions behave like a multiplication followed by a
-+separate addition or subtraction. That is, the fused operation matters only
-+for rounding.
- @end deftypefun
-
- @deftypefun int mpfr_agm (mpfr_t @var{rop}, mpfr_t @var{op1}, mpfr_t @var{op2}, mpfr_rnd_t @var{rnd})
-@@ -2089,8 +2107,8 @@
- i.e., $\sqrt{x^2+y^2}$,
- @end tex
- rounded in the direction @var{rnd}.
--Special values are handled as described in Section F.9.4.3 of
--the ISO C99 and IEEE 754-2008 standards:
-+Special values are handled as described in the ISO C99 (Section F.9.4.3)
-+and IEEE 754-2008 (Section 9.2.1) standards:
- If @var{x} or @var{y} is an infinity, then +Inf is returned in @var{rop},
- even if the other number is NaN.
- @end deftypefun
-diff -Naurd mpfr-3.1.3-a/doc/mpfr.info mpfr-3.1.3-b/doc/mpfr.info
---- mpfr-3.1.3-a/doc/mpfr.info 2015-06-19 19:55:53.000000000 +0000
-+++ mpfr-3.1.3-b/doc/mpfr.info 2015-07-02 10:49:38.718267817 +0000
-@@ -1,4 +1,4 @@
--This is mpfr.info, produced by makeinfo version 5.2 from mpfr.texi.
-+This is mpfr.info, produced by makeinfo version 6.0 from mpfr.texi.
-
- This manual documents how to install and use the Multiple Precision
- Floating-Point Reliable Library, version 3.1.3.
-@@ -55,7 +55,7 @@
- MPFR Copying Conditions
- ***********************
-
--The GNU MPFR library (or MPFR for short) is "free"; this means that
-+The GNU MPFR library (or MPFR for short) is “free”; this means that
- everyone is free to use it and free to redistribute it on a free basis.
- The library is not in the public domain; it is copyrighted and there are
- restrictions on its distribution, but these restrictions are designed to
-@@ -418,7 +418,7 @@
- 4.2 Nomenclature and Types
- ==========================
-
--A "floating-point number", or "float" for short, is an arbitrary
-+A “floating-point number”, or “float” for short, is an arbitrary
- precision significand (also called mantissa) with a limited precision
- exponent. The C data type for such objects is ‘mpfr_t’ (internally
- defined as a one-element array of a structure, and ‘mpfr_ptr’ is the C
-@@ -432,7 +432,7 @@
- to the other functions supported by MPFR. Unless documented otherwise,
- the sign bit of a NaN is unspecified.
-
--The "precision" is the number of bits used to represent the significand
-+The “precision” is the number of bits used to represent the significand
- of a floating-point number; the corresponding C data type is
- ‘mpfr_prec_t’. The precision can be any integer between ‘MPFR_PREC_MIN’
- and ‘MPFR_PREC_MAX’. In the current implementation, ‘MPFR_PREC_MIN’ is
-@@ -446,7 +446,7 @@
- may abort, crash or have undefined behavior (depending on your C
- implementation).
-
--The "rounding mode" specifies the way to round the result of a
-+The “rounding mode” specifies the way to round the result of a
- floating-point operation, in case the exact result can not be
- represented exactly in the destination significand; the corresponding C
- data type is ‘mpfr_rnd_t’.
-@@ -499,14 +499,14 @@
- representable numbers, it is rounded to the one with the least
- significant bit set to zero. For example, the number 2.5, which is
- represented by (10.1) in binary, is rounded to (10.0)=2 with a precision
--of two bits, and not to (11.0)=3. This rule avoids the "drift"
-+of two bits, and not to (11.0)=3. This rule avoids the “drift”
- phenomenon mentioned by Knuth in volume 2 of The Art of Computer
- Programming (Section 4.2.2).
-
- Most MPFR functions take as first argument the destination variable,
- as second and following arguments the input variables, as last argument
- a rounding mode, and have a return value of type ‘int’, called the
--"ternary value". The value stored in the destination variable is
-+“ternary value”. The value stored in the destination variable is
- correctly rounded, i.e., MPFR behaves as if it computed the result with
- an infinite precision, then rounded it to the precision of this
- variable. The input variables are regarded as exact (in particular,
-@@ -572,15 +572,18 @@
- When the input point is in the closure of the domain of the
- mathematical function and an input argument is +0 (resp. −0), one
- considers the limit when the corresponding argument approaches 0 from
--above (resp. below). If the limit is not defined (e.g., ‘mpfr_log’ on
--−0), the behavior is specified in the description of the MPFR function.
-+above (resp. below), if possible. If the limit is not defined (e.g.,
-+‘mpfr_sqrt’ and ‘mpfr_log’ on −0), the behavior is specified in the
-+description of the MPFR function, but must be consistent with the rule
-+from the above paragraph (e.g., ‘mpfr_log’ on ±0 gives −Inf).
-
- When the result is equal to 0, its sign is determined by considering
- the limit as if the input point were not in the domain: If one
- approaches 0 from above (resp. below), the result is +0 (resp. −0); for
--example, ‘mpfr_sin’ on +0 gives +0. In the other cases, the sign is
--specified in the description of the MPFR function; for example
--‘mpfr_max’ on −0 and +0 gives +0.
-+example, ‘mpfr_sin’ on −0 gives −0 and ‘mpfr_acos’ on 1 gives +0 (in all
-+rounding modes). In the other cases, the sign is specified in the
-+description of the MPFR function; for example ‘mpfr_max’ on −0 and +0
-+gives +0.
-
- When the input point is not in the closure of the domain of the
- function, the result is NaN. Example: ‘mpfr_sqrt’ on −17 gives NaN.
-@@ -590,8 +593,8 @@
- numbers; such a case is always explicitly specified in *note MPFR
- Interface::. Example: ‘mpfr_hypot’ on (NaN,0) gives NaN, but
- ‘mpfr_hypot’ on (NaN,+Inf) gives +Inf (as specified in *note Special
--Functions::), since for any finite input X, ‘mpfr_hypot’ on (X,+Inf)
--gives +Inf.
-+Functions::), since for any finite or infinite input X, ‘mpfr_hypot’ on
-+(X,+Inf) gives +Inf.
-
-
- File: mpfr.info, Node: Exceptions, Next: Memory Handling, Prev: Floating-Point Values on Special Numbers, Up: MPFR Basics
-@@ -1253,8 +1256,9 @@
- mpfr_rnd_t RND)
- -- Function: int mpfr_add_q (mpfr_t ROP, mpfr_t OP1, mpq_t OP2,
- mpfr_rnd_t RND)
-- Set ROP to OP1 + OP2 rounded in the direction RND. For types
-- having no signed zero, it is considered unsigned (i.e., (+0) + 0 =
-+ Set ROP to OP1 + OP2 rounded in the direction RND. The IEEE-754
-+ rules are used, in particular for signed zeros. But for types
-+ having no signed zeros, 0 is considered unsigned (i.e., (+0) + 0 =
- (+0) and (−0) + 0 = (−0)). The ‘mpfr_add_d’ function assumes that
- the radix of the ‘double’ type is a power of 2, with a precision at
- most that declared by the C implementation (macro
-@@ -1280,8 +1284,9 @@
- mpfr_rnd_t RND)
- -- Function: int mpfr_sub_q (mpfr_t ROP, mpfr_t OP1, mpq_t OP2,
- mpfr_rnd_t RND)
-- Set ROP to OP1 - OP2 rounded in the direction RND. For types
-- having no signed zero, it is considered unsigned (i.e., (+0) − 0 =
-+ Set ROP to OP1 - OP2 rounded in the direction RND. The IEEE-754
-+ rules are used, in particular for signed zeros. But for types
-+ having no signed zeros, 0 is considered unsigned (i.e., (+0) − 0 =
- (+0), (−0) − 0 = (−0), 0 − (+0) = (−0) and 0 − (−0) = (+0)). The
- same restrictions than for ‘mpfr_add_d’ apply to ‘mpfr_d_sub’ and
- ‘mpfr_sub_d’.
-@@ -1300,7 +1305,7 @@
- mpfr_rnd_t RND)
- Set ROP to OP1 times OP2 rounded in the direction RND. When a
- result is zero, its sign is the product of the signs of the
-- operands (for types having no signed zero, it is considered
-+ operands (for types having no signed zeros, 0 is considered
- positive). The same restrictions than for ‘mpfr_add_d’ apply to
- ‘mpfr_mul_d’.
-
-@@ -1327,21 +1332,24 @@
- mpfr_rnd_t RND)
- Set ROP to OP1/OP2 rounded in the direction RND. When a result is
- zero, its sign is the product of the signs of the operands (for
-- types having no signed zero, it is considered positive). The same
-+ types having no signed zeros, 0 is considered positive). The same
- restrictions than for ‘mpfr_add_d’ apply to ‘mpfr_d_div’ and
- ‘mpfr_div_d’.
-
- -- Function: int mpfr_sqrt (mpfr_t ROP, mpfr_t OP, mpfr_rnd_t RND)
- -- Function: int mpfr_sqrt_ui (mpfr_t ROP, unsigned long int OP,
- mpfr_rnd_t RND)
-- Set ROP to the square root of OP rounded in the direction RND (set
-- ROP to −0 if OP is −0, to be consistent with the IEEE 754
-- standard). Set ROP to NaN if OP is negative.
-+ Set ROP to the square root of OP rounded in the direction RND. Set
-+ ROP to −0 if OP is −0, to be consistent with the IEEE 754 standard.
-+ Set ROP to NaN if OP is negative.
-
- -- Function: int mpfr_rec_sqrt (mpfr_t ROP, mpfr_t OP, mpfr_rnd_t RND)
- Set ROP to the reciprocal square root of OP rounded in the
- direction RND. Set ROP to +Inf if OP is ±0, +0 if OP is +Inf, and
-- NaN if OP is negative.
-+ NaN if OP is negative. Warning! Therefore the result on −0 is
-+ different from the one of the rSqrt function recommended by the
-+ IEEE 754-2008 standard (Section 9.2.1), which is −Inf instead of
-+ +Inf.
-
- -- Function: int mpfr_cbrt (mpfr_t ROP, mpfr_t OP, mpfr_rnd_t RND)
- -- Function: int mpfr_root (mpfr_t ROP, mpfr_t OP, unsigned long int K,
-@@ -1515,8 +1523,10 @@
- -- Function: int mpfr_log2 (mpfr_t ROP, mpfr_t OP, mpfr_rnd_t RND)
- -- Function: int mpfr_log10 (mpfr_t ROP, mpfr_t OP, mpfr_rnd_t RND)
- Set ROP to the natural logarithm of OP, log2(OP) or log10(OP),
-- respectively, rounded in the direction RND. Set ROP to −Inf if OP
-- is −0 (i.e., the sign of the zero has no influence on the result).
-+ respectively, rounded in the direction RND. Set ROP to +0 if OP is
-+ 1 (in all rounding modes), for consistency with the ISO C99 and
-+ IEEE 754-2008 standards. Set ROP to −Inf if OP is ±0 (i.e., the
-+ sign of the zero has no influence on the result).
-
- -- Function: int mpfr_exp (mpfr_t ROP, mpfr_t OP, mpfr_rnd_t RND)
- -- Function: int mpfr_exp2 (mpfr_t ROP, mpfr_t OP, mpfr_rnd_t RND)
-@@ -1649,17 +1659,21 @@
-
- -- Function: int mpfr_lngamma (mpfr_t ROP, mpfr_t OP, mpfr_rnd_t RND)
- Set ROP to the value of the logarithm of the Gamma function on OP,
-- rounded in the direction RND. When −2K−1 <= OP <= −2K, K being a
-- non-negative integer, ROP is set to NaN. See also ‘mpfr_lgamma’.
-+ rounded in the direction RND. When OP is 1 or 2, set ROP to +0 (in
-+ all rounding modes). When OP is an infinity or a nonpositive
-+ integer, set ROP to +Inf, following the general rules on special
-+ values. When −2K−1 < OP < −2K, K being a nonnegative integer, set
-+ ROP to NaN. See also ‘mpfr_lgamma’.
-
- -- Function: int mpfr_lgamma (mpfr_t ROP, int *SIGNP, mpfr_t OP,
- mpfr_rnd_t RND)
- Set ROP to the value of the logarithm of the absolute value of the
- Gamma function on OP, rounded in the direction RND. The sign (1 or
- −1) of Gamma(OP) is returned in the object pointed to by SIGNP.
-- When OP is an infinity or a non-positive integer, set ROP to +Inf.
-- When OP is NaN, −Inf or a negative integer, *SIGNP is undefined,
-- and when OP is ±0, *SIGNP is the sign of the zero.
-+ When OP is 1 or 2, set ROP to +0 (in all rounding modes). When OP
-+ is an infinity or a nonpositive integer, set ROP to +Inf. When OP
-+ is NaN, −Inf or a negative integer, *SIGNP is undefined, and when
-+ OP is ±0, *SIGNP is the sign of the zero.
-
- -- Function: int mpfr_digamma (mpfr_t ROP, mpfr_t OP, mpfr_rnd_t RND)
- Set ROP to the value of the Digamma (sometimes also called Psi)
-@@ -1703,7 +1717,10 @@
- -- Function: int mpfr_fms (mpfr_t ROP, mpfr_t OP1, mpfr_t OP2, mpfr_t
- OP3, mpfr_rnd_t RND)
- Set ROP to (OP1 times OP2) + OP3 (resp. (OP1 times OP2) - OP3)
-- rounded in the direction RND.
-+ rounded in the direction RND. Concerning special values (signed
-+ zeros, infinities, NaN), these functions behave like a
-+ multiplication followed by a separate addition or subtraction.
-+ That is, the fused operation matters only for rounding.
-
- -- Function: int mpfr_agm (mpfr_t ROP, mpfr_t OP1, mpfr_t OP2,
- mpfr_rnd_t RND)
-@@ -1717,9 +1734,10 @@
- RND)
- Set ROP to the Euclidean norm of X and Y, i.e., the square root of
- the sum of the squares of X and Y, rounded in the direction RND.
-- Special values are handled as described in Section F.9.4.3 of the
-- ISO C99 and IEEE 754-2008 standards: If X or Y is an infinity, then
-- +Inf is returned in ROP, even if the other number is NaN.
-+ Special values are handled as described in the ISO C99 (Section
-+ F.9.4.3) and IEEE 754-2008 (Section 9.2.1) standards: If X or Y is
-+ an infinity, then +Inf is returned in ROP, even if the other number
-+ is NaN.
-
- -- Function: int mpfr_ai (mpfr_t ROP, mpfr_t X, mpfr_rnd_t RND)
- Set ROP to the value of the Airy function Ai on X, rounded in the
-@@ -2670,7 +2688,7 @@
- 5.16 Internals
- ==============
-
--A "limb" means the part of a multi-precision number that fits in a
-+A “limb” means the part of a multi-precision number that fits in a
- single word. Usually a limb contains 32 or 64 bits. The C data type
- for a limb is ‘mp_limb_t’.
-
-@@ -3140,7 +3158,7 @@
- 0. PREAMBLE
-
- The purpose of this License is to make a manual, textbook, or other
-- functional and useful document "free" in the sense of freedom: to
-+ functional and useful document “free” in the sense of freedom: to
- assure everyone the effective freedom to copy and redistribute it,
- with or without modifying it, either commercially or
- noncommercially. Secondarily, this License preserves for the
-@@ -3655,9 +3673,9 @@
- * Menu:
-
- * mpfr_abs: Basic Arithmetic Functions.
-- (line 160)
--* mpfr_acos: Special Functions. (line 51)
--* mpfr_acosh: Special Functions. (line 115)
-+ (line 165)
-+* mpfr_acos: Special Functions. (line 53)
-+* mpfr_acosh: Special Functions. (line 117)
- * mpfr_add: Basic Arithmetic Functions.
- (line 6)
- * mpfr_add_d: Basic Arithmetic Functions.
-@@ -3670,15 +3688,15 @@
- (line 8)
- * mpfr_add_z: Basic Arithmetic Functions.
- (line 14)
--* mpfr_agm: Special Functions. (line 210)
--* mpfr_ai: Special Functions. (line 226)
--* mpfr_asin: Special Functions. (line 52)
--* mpfr_asinh: Special Functions. (line 116)
-+* mpfr_agm: Special Functions. (line 219)
-+* mpfr_ai: Special Functions. (line 236)
-+* mpfr_asin: Special Functions. (line 54)
-+* mpfr_asinh: Special Functions. (line 118)
- * mpfr_asprintf: Formatted Output Functions.
- (line 193)
--* mpfr_atan: Special Functions. (line 53)
--* mpfr_atan2: Special Functions. (line 63)
--* mpfr_atanh: Special Functions. (line 117)
-+* mpfr_atan: Special Functions. (line 55)
-+* mpfr_atan2: Special Functions. (line 65)
-+* mpfr_atanh: Special Functions. (line 119)
- * mpfr_buildopt_decimal_p: Miscellaneous Functions.
- (line 162)
- * mpfr_buildopt_gmpinternals_p: Miscellaneous Functions.
-@@ -3690,7 +3708,7 @@
- * mpfr_can_round: Rounding Related Functions.
- (line 39)
- * mpfr_cbrt: Basic Arithmetic Functions.
-- (line 108)
-+ (line 113)
- * mpfr_ceil: Integer Related Functions.
- (line 7)
- * mpfr_check_range: Exception Related Functions.
-@@ -3735,18 +3753,18 @@
- (line 27)
- * mpfr_cmp_z: Comparison Functions.
- (line 11)
--* mpfr_const_catalan: Special Functions. (line 237)
--* mpfr_const_euler: Special Functions. (line 236)
--* mpfr_const_log2: Special Functions. (line 234)
--* mpfr_const_pi: Special Functions. (line 235)
-+* mpfr_const_catalan: Special Functions. (line 247)
-+* mpfr_const_euler: Special Functions. (line 246)
-+* mpfr_const_log2: Special Functions. (line 244)
-+* mpfr_const_pi: Special Functions. (line 245)
- * mpfr_copysign: Miscellaneous Functions.
- (line 109)
--* mpfr_cos: Special Functions. (line 29)
--* mpfr_cosh: Special Functions. (line 95)
--* mpfr_cot: Special Functions. (line 47)
--* mpfr_coth: Special Functions. (line 111)
--* mpfr_csc: Special Functions. (line 46)
--* mpfr_csch: Special Functions. (line 110)
-+* mpfr_cos: Special Functions. (line 31)
-+* mpfr_cosh: Special Functions. (line 97)
-+* mpfr_cot: Special Functions. (line 49)
-+* mpfr_coth: Special Functions. (line 113)
-+* mpfr_csc: Special Functions. (line 48)
-+* mpfr_csch: Special Functions. (line 112)
- * mpfr_custom_get_exp: Custom Interface. (line 75)
- * mpfr_custom_get_kind: Custom Interface. (line 65)
- * mpfr_custom_get_significand: Custom Interface. (line 70)
-@@ -3756,47 +3774,47 @@
- * mpfr_custom_move: Custom Interface. (line 82)
- * MPFR_DECL_INIT: Initialization Functions.
- (line 74)
--* mpfr_digamma: Special Functions. (line 166)
-+* mpfr_digamma: Special Functions. (line 172)
- * mpfr_dim: Basic Arithmetic Functions.
-- (line 166)
-+ (line 171)
- * mpfr_div: Basic Arithmetic Functions.
-- (line 72)
-+ (line 74)
- * mpfr_divby0_p: Exception Related Functions.
- (line 134)
- * mpfr_div_2exp: Compatibility with MPF.
- (line 49)
- * mpfr_div_2si: Basic Arithmetic Functions.
-- (line 181)
-+ (line 186)
- * mpfr_div_2ui: Basic Arithmetic Functions.
-- (line 179)
-+ (line 184)
- * mpfr_div_d: Basic Arithmetic Functions.
-- (line 84)
-+ (line 86)
- * mpfr_div_q: Basic Arithmetic Functions.
-- (line 88)
-+ (line 90)
- * mpfr_div_si: Basic Arithmetic Functions.
-- (line 80)
-+ (line 82)
- * mpfr_div_ui: Basic Arithmetic Functions.
-- (line 76)
-+ (line 78)
- * mpfr_div_z: Basic Arithmetic Functions.
-- (line 86)
-+ (line 88)
- * mpfr_d_div: Basic Arithmetic Functions.
-- (line 82)
-+ (line 84)
- * mpfr_d_sub: Basic Arithmetic Functions.
-- (line 35)
--* mpfr_eint: Special Functions. (line 133)
-+ (line 36)
-+* mpfr_eint: Special Functions. (line 135)
- * mpfr_eq: Compatibility with MPF.
- (line 28)
- * mpfr_equal_p: Comparison Functions.
- (line 59)
- * mpfr_erangeflag_p: Exception Related Functions.
- (line 137)
--* mpfr_erf: Special Functions. (line 177)
--* mpfr_erfc: Special Functions. (line 178)
--* mpfr_exp: Special Functions. (line 23)
--* mpfr_exp10: Special Functions. (line 25)
--* mpfr_exp2: Special Functions. (line 24)
--* mpfr_expm1: Special Functions. (line 129)
--* mpfr_fac_ui: Special Functions. (line 121)
-+* mpfr_erf: Special Functions. (line 183)
-+* mpfr_erfc: Special Functions. (line 184)
-+* mpfr_exp: Special Functions. (line 25)
-+* mpfr_exp10: Special Functions. (line 27)
-+* mpfr_exp2: Special Functions. (line 26)
-+* mpfr_expm1: Special Functions. (line 131)
-+* mpfr_fac_ui: Special Functions. (line 123)
- * mpfr_fits_intmax_p: Conversion Functions.
- (line 150)
- * mpfr_fits_sint_p: Conversion Functions.
-@@ -3815,20 +3833,20 @@
- (line 147)
- * mpfr_floor: Integer Related Functions.
- (line 8)
--* mpfr_fma: Special Functions. (line 203)
-+* mpfr_fma: Special Functions. (line 209)
- * mpfr_fmod: Integer Related Functions.
- (line 92)
--* mpfr_fms: Special Functions. (line 205)
-+* mpfr_fms: Special Functions. (line 211)
- * mpfr_fprintf: Formatted Output Functions.
- (line 157)
- * mpfr_frac: Integer Related Functions.
- (line 76)
--* mpfr_free_cache: Special Functions. (line 244)
-+* mpfr_free_cache: Special Functions. (line 254)
- * mpfr_free_str: Conversion Functions.
- (line 137)
- * mpfr_frexp: Conversion Functions.
- (line 45)
--* mpfr_gamma: Special Functions. (line 148)
-+* mpfr_gamma: Special Functions. (line 150)
- * mpfr_get_d: Conversion Functions.
- (line 7)
- * mpfr_get_decimal64: Conversion Functions.
-@@ -3887,7 +3905,7 @@
- (line 56)
- * mpfr_greater_p: Comparison Functions.
- (line 55)
--* mpfr_hypot: Special Functions. (line 218)
-+* mpfr_hypot: Special Functions. (line 227)
- * mpfr_inexflag_p: Exception Related Functions.
- (line 136)
- * mpfr_inf_p: Comparison Functions.
-@@ -3922,21 +3940,21 @@
- (line 31)
- * mpfr_integer_p: Integer Related Functions.
- (line 119)
--* mpfr_j0: Special Functions. (line 182)
--* mpfr_j1: Special Functions. (line 183)
--* mpfr_jn: Special Functions. (line 184)
-+* mpfr_j0: Special Functions. (line 188)
-+* mpfr_j1: Special Functions. (line 189)
-+* mpfr_jn: Special Functions. (line 190)
- * mpfr_lessequal_p: Comparison Functions.
- (line 58)
- * mpfr_lessgreater_p: Comparison Functions.
- (line 64)
- * mpfr_less_p: Comparison Functions.
- (line 57)
--* mpfr_lgamma: Special Functions. (line 157)
--* mpfr_li2: Special Functions. (line 143)
--* mpfr_lngamma: Special Functions. (line 152)
-+* mpfr_lgamma: Special Functions. (line 162)
-+* mpfr_li2: Special Functions. (line 145)
-+* mpfr_lngamma: Special Functions. (line 154)
- * mpfr_log: Special Functions. (line 16)
- * mpfr_log10: Special Functions. (line 18)
--* mpfr_log1p: Special Functions. (line 125)
-+* mpfr_log1p: Special Functions. (line 127)
- * mpfr_log2: Special Functions. (line 17)
- * mpfr_max: Miscellaneous Functions.
- (line 22)
-@@ -3947,29 +3965,29 @@
- * mpfr_modf: Integer Related Functions.
- (line 82)
- * mpfr_mul: Basic Arithmetic Functions.
-- (line 51)
-+ (line 53)
- * mpfr_mul_2exp: Compatibility with MPF.
- (line 47)
- * mpfr_mul_2si: Basic Arithmetic Functions.
-- (line 174)
-+ (line 179)
- * mpfr_mul_2ui: Basic Arithmetic Functions.
-- (line 172)
-+ (line 177)
- * mpfr_mul_d: Basic Arithmetic Functions.
-- (line 57)
-+ (line 59)
- * mpfr_mul_q: Basic Arithmetic Functions.
-- (line 61)
-+ (line 63)
- * mpfr_mul_si: Basic Arithmetic Functions.
-- (line 55)
-+ (line 57)
- * mpfr_mul_ui: Basic Arithmetic Functions.
-- (line 53)
-+ (line 55)
- * mpfr_mul_z: Basic Arithmetic Functions.
-- (line 59)
-+ (line 61)
- * mpfr_nanflag_p: Exception Related Functions.
- (line 135)
- * mpfr_nan_p: Comparison Functions.
- (line 39)
- * mpfr_neg: Basic Arithmetic Functions.
-- (line 159)
-+ (line 164)
- * mpfr_nextabove: Miscellaneous Functions.
- (line 15)
- * mpfr_nextbelow: Miscellaneous Functions.
-@@ -3983,13 +4001,13 @@
- * mpfr_overflow_p: Exception Related Functions.
- (line 133)
- * mpfr_pow: Basic Arithmetic Functions.
-- (line 116)
-+ (line 121)
- * mpfr_pow_si: Basic Arithmetic Functions.
-- (line 120)
-+ (line 125)
- * mpfr_pow_ui: Basic Arithmetic Functions.
-- (line 118)
-+ (line 123)
- * mpfr_pow_z: Basic Arithmetic Functions.
-- (line 122)
-+ (line 127)
- * mpfr_prec_round: Rounding Related Functions.
- (line 13)
- * ‘mpfr_prec_t’: Nomenclature and Types.
-@@ -3999,7 +4017,7 @@
- * mpfr_print_rnd_mode: Rounding Related Functions.
- (line 71)
- * mpfr_rec_sqrt: Basic Arithmetic Functions.
-- (line 103)
-+ (line 105)
- * mpfr_regular_p: Comparison Functions.
- (line 43)
- * mpfr_reldiff: Compatibility with MPF.
-@@ -4021,11 +4039,11 @@
- * ‘mpfr_rnd_t’: Nomenclature and Types.
- (line 34)
- * mpfr_root: Basic Arithmetic Functions.
-- (line 109)
-+ (line 114)
- * mpfr_round: Integer Related Functions.
- (line 9)
--* mpfr_sec: Special Functions. (line 45)
--* mpfr_sech: Special Functions. (line 109)
-+* mpfr_sec: Special Functions. (line 47)
-+* mpfr_sech: Special Functions. (line 111)
- * mpfr_set: Assignment Functions.
- (line 9)
- * mpfr_setsign: Miscellaneous Functions.
-@@ -4100,57 +4118,57 @@
- (line 49)
- * mpfr_signbit: Miscellaneous Functions.
- (line 99)
--* mpfr_sin: Special Functions. (line 30)
--* mpfr_sinh: Special Functions. (line 96)
--* mpfr_sinh_cosh: Special Functions. (line 101)
--* mpfr_sin_cos: Special Functions. (line 35)
-+* mpfr_sin: Special Functions. (line 32)
-+* mpfr_sinh: Special Functions. (line 98)
-+* mpfr_sinh_cosh: Special Functions. (line 103)
-+* mpfr_sin_cos: Special Functions. (line 37)
- * mpfr_si_div: Basic Arithmetic Functions.
-- (line 78)
-+ (line 80)
- * mpfr_si_sub: Basic Arithmetic Functions.
-- (line 31)
-+ (line 32)
- * mpfr_snprintf: Formatted Output Functions.
- (line 180)
- * mpfr_sprintf: Formatted Output Functions.
- (line 170)
- * mpfr_sqr: Basic Arithmetic Functions.
-- (line 69)
-+ (line 71)
- * mpfr_sqrt: Basic Arithmetic Functions.
-- (line 96)
-+ (line 98)
- * mpfr_sqrt_ui: Basic Arithmetic Functions.
-- (line 97)
-+ (line 99)
- * mpfr_strtofr: Assignment Functions.
- (line 80)
- * mpfr_sub: Basic Arithmetic Functions.
-- (line 25)
-+ (line 26)
- * mpfr_subnormalize: Exception Related Functions.
- (line 60)
- * mpfr_sub_d: Basic Arithmetic Functions.
-- (line 37)
-+ (line 38)
- * mpfr_sub_q: Basic Arithmetic Functions.
-- (line 43)
-+ (line 44)
- * mpfr_sub_si: Basic Arithmetic Functions.
-- (line 33)
-+ (line 34)
- * mpfr_sub_ui: Basic Arithmetic Functions.
-- (line 29)
-+ (line 30)
- * mpfr_sub_z: Basic Arithmetic Functions.
-- (line 41)
--* mpfr_sum: Special Functions. (line 252)
-+ (line 42)
-+* mpfr_sum: Special Functions. (line 262)
- * mpfr_swap: Assignment Functions.
- (line 150)
- * ‘mpfr_t’: Nomenclature and Types.
- (line 6)
--* mpfr_tan: Special Functions. (line 31)
--* mpfr_tanh: Special Functions. (line 97)
-+* mpfr_tan: Special Functions. (line 33)
-+* mpfr_tanh: Special Functions. (line 99)
- * mpfr_trunc: Integer Related Functions.
- (line 10)
- * mpfr_ui_div: Basic Arithmetic Functions.
-- (line 74)
-+ (line 76)
- * mpfr_ui_pow: Basic Arithmetic Functions.
-- (line 126)
-+ (line 131)
- * mpfr_ui_pow_ui: Basic Arithmetic Functions.
-- (line 124)
-+ (line 129)
- * mpfr_ui_sub: Basic Arithmetic Functions.
-- (line 27)
-+ (line 28)
- * mpfr_underflow_p: Exception Related Functions.
- (line 132)
- * mpfr_unordered_p: Comparison Functions.
-@@ -4181,61 +4199,61 @@
- (line 182)
- * mpfr_vsprintf: Formatted Output Functions.
- (line 171)
--* mpfr_y0: Special Functions. (line 193)
--* mpfr_y1: Special Functions. (line 194)
--* mpfr_yn: Special Functions. (line 195)
-+* mpfr_y0: Special Functions. (line 199)
-+* mpfr_y1: Special Functions. (line 200)
-+* mpfr_yn: Special Functions. (line 201)
- * mpfr_zero_p: Comparison Functions.
- (line 42)
--* mpfr_zeta: Special Functions. (line 171)
--* mpfr_zeta_ui: Special Functions. (line 172)
-+* mpfr_zeta: Special Functions. (line 177)
-+* mpfr_zeta_ui: Special Functions. (line 178)
- * mpfr_z_sub: Basic Arithmetic Functions.
-- (line 39)
-+ (line 40)
-
-
-
- Tag Table:
- Node: Top775
- Node: Copying2007
--Node: Introduction to MPFR3766
--Node: Installing MPFR5880
--Node: Reporting Bugs11323
--Node: MPFR Basics13353
--Node: Headers and Libraries13669
--Node: Nomenclature and Types16828
--Node: MPFR Variable Conventions18874
--Node: Rounding Modes20418
--Ref: ternary value21544
--Node: Floating-Point Values on Special Numbers23526
--Node: Exceptions26572
--Node: Memory Handling29749
--Node: MPFR Interface30894
--Node: Initialization Functions33008
--Node: Assignment Functions40318
--Node: Combined Initialization and Assignment Functions49673
--Node: Conversion Functions50974
--Node: Basic Arithmetic Functions60035
--Node: Comparison Functions69200
--Node: Special Functions72687
--Node: Input and Output Functions86672
--Node: Formatted Output Functions88644
--Node: Integer Related Functions98431
--Node: Rounding Related Functions105051
--Node: Miscellaneous Functions108888
--Node: Exception Related Functions117568
--Node: Compatibility with MPF124386
--Node: Custom Interface127127
--Node: Internals131526
--Node: API Compatibility133066
--Node: Type and Macro Changes134995
--Node: Added Functions137844
--Node: Changed Functions141132
--Node: Removed Functions145545
--Node: Other Changes145973
--Node: Contributors147576
--Node: References150219
--Node: GNU Free Documentation License151973
--Node: Concept Index174562
--Node: Function and Type Index180659
-+Node: Introduction to MPFR3770
-+Node: Installing MPFR5884
-+Node: Reporting Bugs11327
-+Node: MPFR Basics13357
-+Node: Headers and Libraries13673
-+Node: Nomenclature and Types16832
-+Node: MPFR Variable Conventions18894
-+Node: Rounding Modes20438
-+Ref: ternary value21568
-+Node: Floating-Point Values on Special Numbers23554
-+Node: Exceptions26813
-+Node: Memory Handling29990
-+Node: MPFR Interface31135
-+Node: Initialization Functions33249
-+Node: Assignment Functions40559
-+Node: Combined Initialization and Assignment Functions49914
-+Node: Conversion Functions51215
-+Node: Basic Arithmetic Functions60276
-+Node: Comparison Functions69777
-+Node: Special Functions73264
-+Node: Input and Output Functions87862
-+Node: Formatted Output Functions89834
-+Node: Integer Related Functions99621
-+Node: Rounding Related Functions106241
-+Node: Miscellaneous Functions110078
-+Node: Exception Related Functions118758
-+Node: Compatibility with MPF125576
-+Node: Custom Interface128317
-+Node: Internals132716
-+Node: API Compatibility134260
-+Node: Type and Macro Changes136189
-+Node: Added Functions139038
-+Node: Changed Functions142326
-+Node: Removed Functions146739
-+Node: Other Changes147167
-+Node: Contributors148770
-+Node: References151413
-+Node: GNU Free Documentation License153167
-+Node: Concept Index175760
-+Node: Function and Type Index181857
-
- End Tag Table
-
-diff -Naurd mpfr-3.1.3-a/src/lngamma.c mpfr-3.1.3-b/src/lngamma.c
---- mpfr-3.1.3-a/src/lngamma.c 2015-06-19 19:55:10.000000000 +0000
-+++ mpfr-3.1.3-b/src/lngamma.c 2015-07-02 10:49:24.018113593 +0000
-@@ -603,16 +603,17 @@
- mpfr_get_prec (y), mpfr_log_prec, y, inex));
-
- /* special cases */
-- if (MPFR_UNLIKELY (MPFR_IS_SINGULAR (x)))
-+ if (MPFR_UNLIKELY (MPFR_IS_SINGULAR (x) ||
-+ (MPFR_IS_NEG (x) && mpfr_integer_p (x))))
- {
-- if (MPFR_IS_NAN (x) || MPFR_IS_NEG (x))
-+ if (MPFR_IS_NAN (x))
- {
- MPFR_SET_NAN (y);
- MPFR_RET_NAN;
- }
-- else /* lngamma(+Inf) = lngamma(+0) = +Inf */
-+ else /* lngamma(+/-Inf) = lngamma(nonpositive integer) = +Inf */
- {
-- if (MPFR_IS_ZERO (x))
-+ if (!MPFR_IS_INF (x))
- mpfr_set_divby0 ();
- MPFR_SET_INF (y);
- MPFR_SET_POS (y);
-@@ -620,8 +621,8 @@
- }
- }
-
-- /* if x < 0 and -2k-1 <= x <= -2k, then lngamma(x) = NaN */
-- if (MPFR_IS_NEG (x) && (unit_bit (x) == 0 || mpfr_integer_p (x)))
-+ /* if -2k-1 < x < -2k <= 0, then lngamma(x) = NaN */
-+ if (MPFR_IS_NEG (x) && unit_bit (x) == 0)
- {
- MPFR_SET_NAN (y);
- MPFR_RET_NAN;
-diff -Naurd mpfr-3.1.3-a/src/mpfr.h mpfr-3.1.3-b/src/mpfr.h
---- mpfr-3.1.3-a/src/mpfr.h 2015-06-19 19:55:10.000000000 +0000
-+++ mpfr-3.1.3-b/src/mpfr.h 2015-07-02 10:49:24.038113803 +0000
-@@ -27,7 +27,7 @@
- #define MPFR_VERSION_MAJOR 3
- #define MPFR_VERSION_MINOR 1
- #define MPFR_VERSION_PATCHLEVEL 3
--#define MPFR_VERSION_STRING "3.1.3"
-+#define MPFR_VERSION_STRING "3.1.3-p1"
-
- /* Macros dealing with MPFR VERSION */
- #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))
-diff -Naurd mpfr-3.1.3-a/src/version.c mpfr-3.1.3-b/src/version.c
---- mpfr-3.1.3-a/src/version.c 2015-06-19 19:55:10.000000000 +0000
-+++ mpfr-3.1.3-b/src/version.c 2015-07-02 10:49:24.042113845 +0000
-@@ -25,5 +25,5 @@
- const char *
- mpfr_get_version (void)
- {
-- return "3.1.3";
-+ return "3.1.3-p1";
- }
-diff -Naurd mpfr-3.1.3-a/tests/tlngamma.c mpfr-3.1.3-b/tests/tlngamma.c
---- mpfr-3.1.3-a/tests/tlngamma.c 2015-06-19 19:55:10.000000000 +0000
-+++ mpfr-3.1.3-b/tests/tlngamma.c 2015-07-02 10:49:24.018113593 +0000
-@@ -33,7 +33,7 @@
- special (void)
- {
- mpfr_t x, y;
-- int inex;
-+ int i, inex;
-
- mpfr_init (x);
- mpfr_init (y);
-@@ -46,25 +46,29 @@
- exit (1);
- }
-
-- mpfr_set_inf (x, -1);
-+ mpfr_set_inf (x, 1);
-+ mpfr_clear_flags ();
- mpfr_lngamma (y, x, MPFR_RNDN);
-- if (!mpfr_nan_p (y))
-+ if (!mpfr_inf_p (y) || mpfr_sgn (y) < 0 || __gmpfr_flags != 0)
- {
-- printf ("Error for lngamma(-Inf)\n");
-+ printf ("Error for lngamma(+Inf)\n");
- exit (1);
- }
-
-- mpfr_set_inf (x, 1);
-+ mpfr_set_inf (x, -1);
-+ mpfr_clear_flags ();
- mpfr_lngamma (y, x, MPFR_RNDN);
-- if (!mpfr_inf_p (y) || mpfr_sgn (y) < 0)
-+ if (!mpfr_inf_p (y) || mpfr_sgn (y) < 0 || __gmpfr_flags != 0)
- {
-- printf ("Error for lngamma(+Inf)\n");
-+ printf ("Error for lngamma(-Inf)\n");
- exit (1);
- }
-
- mpfr_set_ui (x, 0, MPFR_RNDN);
-+ mpfr_clear_flags ();
- mpfr_lngamma (y, x, MPFR_RNDN);
-- if (!mpfr_inf_p (y) || mpfr_sgn (y) < 0)
-+ if (!mpfr_inf_p (y) || mpfr_sgn (y) < 0 ||
-+ __gmpfr_flags != MPFR_FLAGS_DIVBY0)
- {
- printf ("Error for lngamma(+0)\n");
- exit (1);
-@@ -72,32 +76,58 @@
-
- mpfr_set_ui (x, 0, MPFR_RNDN);
- mpfr_neg (x, x, MPFR_RNDN);
-+ mpfr_clear_flags ();
- mpfr_lngamma (y, x, MPFR_RNDN);
-- if (!mpfr_nan_p (y))
-+ if (!mpfr_inf_p (y) || mpfr_sgn (y) < 0 ||
-+ __gmpfr_flags != MPFR_FLAGS_DIVBY0)
- {
- printf ("Error for lngamma(-0)\n");
- exit (1);
- }
-
- mpfr_set_ui (x, 1, MPFR_RNDN);
-+ mpfr_clear_flags ();
- mpfr_lngamma (y, x, MPFR_RNDN);
-- if (MPFR_IS_NAN (y) || mpfr_cmp_ui (y, 0) || MPFR_IS_NEG (y))
-+ if (mpfr_cmp_ui0 (y, 0) || MPFR_IS_NEG (y))
- {
- printf ("Error for lngamma(1)\n");
- exit (1);
- }
-
-- mpfr_set_si (x, -1, MPFR_RNDN);
-- mpfr_lngamma (y, x, MPFR_RNDN);
-- if (!mpfr_nan_p (y))
-+ for (i = 1; i <= 5; i++)
- {
-- printf ("Error for lngamma(-1)\n");
-- exit (1);
-+ int c;
-+
-+ mpfr_set_si (x, -i, MPFR_RNDN);
-+ mpfr_clear_flags ();
-+ mpfr_lngamma (y, x, MPFR_RNDN);
-+ if (!mpfr_inf_p (y) || mpfr_sgn (y) < 0 ||
-+ __gmpfr_flags != MPFR_FLAGS_DIVBY0)
-+ {
-+ printf ("Error for lngamma(-%d)\n", i);
-+ exit (1);
-+ }
-+ if (i & 1)
-+ {
-+ mpfr_nextabove (x);
-+ c = '+';
-+ }
-+ else
-+ {
-+ mpfr_nextbelow (x);
-+ c = '-';
-+ }
-+ mpfr_lngamma (y, x, MPFR_RNDN);
-+ if (!mpfr_nan_p (y))
-+ {
-+ printf ("Error for lngamma(-%d%cepsilon)\n", i, c);
-+ exit (1);
-+ }
- }
-
- mpfr_set_ui (x, 2, MPFR_RNDN);
- mpfr_lngamma (y, x, MPFR_RNDN);
-- if (MPFR_IS_NAN (y) || mpfr_cmp_ui (y, 0) || MPFR_IS_NEG (y))
-+ if (mpfr_cmp_ui0 (y, 0) || MPFR_IS_NEG (y))
- {
- printf ("Error for lngamma(2)\n");
- exit (1);
-@@ -127,7 +157,7 @@
- mpfr_set_str (x, CHECK_X2, 10, MPFR_RNDN);
- mpfr_lngamma (y, x, MPFR_RNDN);
- mpfr_set_str (x, CHECK_Y2, 10, MPFR_RNDN);
-- if (MPFR_IS_NAN (y) || mpfr_cmp (y, x))
-+ if (mpfr_cmp0 (y, x))
- {
- printf ("mpfr_lngamma("CHECK_X2") is wrong:\n"
- "expected ");
-@@ -143,7 +173,7 @@
- mpfr_lngamma (y, x, MPFR_RNDU);
- mpfr_set_prec (x, 175);
- mpfr_set_str_binary (x, "0.1010001100011101101011001101110010100001000001000001110011000001101100001111001001000101011011100100010101011110100111110101010100010011010010000101010111001100011000101111E7");
-- if (MPFR_IS_NAN (y) || mpfr_cmp (x, y))
-+ if (mpfr_cmp0 (x, y))
- {
- printf ("Error in mpfr_lngamma (1)\n");
- exit (1);
-@@ -155,7 +185,7 @@
- mpfr_lngamma (x, y, MPFR_RNDZ);
- mpfr_set_prec (y, 21);
- mpfr_set_str_binary (y, "0.111000101000001100101E9");
-- if (MPFR_IS_NAN (x) || mpfr_cmp (x, y))
-+ if (mpfr_cmp0 (x, y))
- {
- printf ("Error in mpfr_lngamma (120)\n");
- printf ("Expected "); mpfr_print_binary (y); puts ("");
-@@ -169,7 +199,7 @@
- inex = mpfr_lngamma (y, x, MPFR_RNDN);
- mpfr_set_prec (x, 206);
- mpfr_set_str_binary (x, "0.10000111011000000011100010101001100110001110000111100011000100100110110010001011011110101001111011110110000001010100111011010000000011100110110101100111000111010011110010000100010111101010001101000110101001E13");
-- if (MPFR_IS_NAN (y) || mpfr_cmp (x, y))
-+ if (mpfr_cmp0 (x, y))
- {
- printf ("Error in mpfr_lngamma (768)\n");
- exit (1);
-@@ -185,7 +215,7 @@
- mpfr_set_str_binary (x, "0.1100E-66");
- mpfr_lngamma (y, x, MPFR_RNDN);
- mpfr_set_str_binary (x, "0.1100E6");
-- if (MPFR_IS_NAN (y) || mpfr_cmp (x, y))
-+ if (mpfr_cmp0 (x, y))
- {
- printf ("Error for lngamma(0.1100E-66)\n");
- exit (1);
-@@ -199,7 +229,7 @@
- mpfr_lngamma (y, x, MPFR_RNDN);
- mpfr_set_prec (x, 32);
- mpfr_set_str_binary (x, "-0.10001000111011111011000010100010E207");
-- if (MPFR_IS_NAN (y) || mpfr_cmp (x, y))
-+ if (mpfr_cmp0 (x, y))
- {
- printf ("Error for lngamma(-2^199+0.5)\n");
- printf ("Got ");
-diff -Naurd mpfr-3.1.3-a/PATCHES mpfr-3.1.3-b/PATCHES
---- mpfr-3.1.3-a/PATCHES 2015-07-02 10:50:08.046573308 +0000
-+++ mpfr-3.1.3-b/PATCHES 2015-07-02 10:50:08.126574142 +0000
-@@ -0,0 +1 @@
-+muldiv-2exp-overflow
-diff -Naurd mpfr-3.1.3-a/VERSION mpfr-3.1.3-b/VERSION
---- mpfr-3.1.3-a/VERSION 2015-07-02 10:49:24.042113845 +0000
-+++ mpfr-3.1.3-b/VERSION 2015-07-02 10:50:08.126574142 +0000
-@@ -1 +1 @@
--3.1.3-p1
-+3.1.3-p2
-diff -Naurd mpfr-3.1.3-a/src/div_2si.c mpfr-3.1.3-b/src/div_2si.c
---- mpfr-3.1.3-a/src/div_2si.c 2015-06-19 19:55:10.000000000 +0000
-+++ mpfr-3.1.3-b/src/div_2si.c 2015-07-02 10:50:08.106573933 +0000
-@@ -49,7 +49,7 @@
- rnd_mode = MPFR_RNDZ;
- return mpfr_underflow (y, rnd_mode, MPFR_SIGN(y));
- }
-- else if (MPFR_UNLIKELY(n < 0 && (__gmpfr_emax < MPFR_EMIN_MIN - n ||
-+ else if (MPFR_UNLIKELY(n <= 0 && (__gmpfr_emax < MPFR_EMIN_MIN - n ||
- exp > __gmpfr_emax + n)) )
- return mpfr_overflow (y, rnd_mode, MPFR_SIGN(y));
-
-diff -Naurd mpfr-3.1.3-a/src/div_2ui.c mpfr-3.1.3-b/src/div_2ui.c
---- mpfr-3.1.3-a/src/div_2ui.c 2015-06-19 19:55:10.000000000 +0000
-+++ mpfr-3.1.3-b/src/div_2ui.c 2015-07-02 10:50:08.106573933 +0000
-@@ -32,7 +32,7 @@
- rnd_mode),
- ("y[%Pu]=%.*Rg inexact=%d", mpfr_get_prec(y), mpfr_log_prec, y, inexact));
-
-- if (MPFR_UNLIKELY (MPFR_IS_SINGULAR (x)))
-+ if (MPFR_UNLIKELY (n == 0 || MPFR_IS_SINGULAR (x)))
- return mpfr_set (y, x, rnd_mode);
- else
- {
-diff -Naurd mpfr-3.1.3-a/src/mpfr.h mpfr-3.1.3-b/src/mpfr.h
---- mpfr-3.1.3-a/src/mpfr.h 2015-07-02 10:49:24.038113803 +0000
-+++ mpfr-3.1.3-b/src/mpfr.h 2015-07-02 10:50:08.126574142 +0000
-@@ -27,7 +27,7 @@
- #define MPFR_VERSION_MAJOR 3
- #define MPFR_VERSION_MINOR 1
- #define MPFR_VERSION_PATCHLEVEL 3
--#define MPFR_VERSION_STRING "3.1.3-p1"
-+#define MPFR_VERSION_STRING "3.1.3-p2"
-
- /* Macros dealing with MPFR VERSION */
- #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))
-diff -Naurd mpfr-3.1.3-a/src/mul_2si.c mpfr-3.1.3-b/src/mul_2si.c
---- mpfr-3.1.3-a/src/mul_2si.c 2015-06-19 19:55:10.000000000 +0000
-+++ mpfr-3.1.3-b/src/mul_2si.c 2015-07-02 10:50:08.106573933 +0000
-@@ -39,7 +39,7 @@
- {
- mpfr_exp_t exp = MPFR_GET_EXP (x);
- MPFR_SETRAW (inexact, y, x, exp, rnd_mode);
-- if (MPFR_UNLIKELY( n > 0 && (__gmpfr_emax < MPFR_EMIN_MIN + n ||
-+ if (MPFR_UNLIKELY(n >= 0 && (__gmpfr_emax < MPFR_EMIN_MIN + n ||
- exp > __gmpfr_emax - n)))
- return mpfr_overflow (y, rnd_mode, MPFR_SIGN(y));
- else if (MPFR_UNLIKELY(n < 0 && (__gmpfr_emin > MPFR_EMAX_MAX + n ||
-diff -Naurd mpfr-3.1.3-a/src/version.c mpfr-3.1.3-b/src/version.c
---- mpfr-3.1.3-a/src/version.c 2015-07-02 10:49:24.042113845 +0000
-+++ mpfr-3.1.3-b/src/version.c 2015-07-02 10:50:08.126574142 +0000
-@@ -25,5 +25,5 @@
- const char *
- mpfr_get_version (void)
- {
-- return "3.1.3-p1";
-+ return "3.1.3-p2";
- }
-diff -Naurd mpfr-3.1.3-a/tests/tmul_2exp.c mpfr-3.1.3-b/tests/tmul_2exp.c
---- mpfr-3.1.3-a/tests/tmul_2exp.c 2015-06-19 19:55:10.000000000 +0000
-+++ mpfr-3.1.3-b/tests/tmul_2exp.c 2015-07-02 10:50:08.106573933 +0000
-@@ -242,6 +242,76 @@
- large (MPFR_EMAX_MAX);
- }
-
-+/* Cases where the function overflows on n = 0 when rounding is like
-+ away from zero. */
-+static void
-+overflow0 (mpfr_exp_t emax)
-+{
-+ mpfr_exp_t old_emax;
-+ mpfr_t x, y1, y2;
-+ int neg, r, op;
-+ static char *sop[4] = { "mul_2ui", "mul_2si", "div_2ui", "div_2si" };
-+
-+ old_emax = mpfr_get_emax ();
-+ set_emax (emax);
-+
-+ mpfr_init2 (x, 8);
-+ mpfr_inits2 (6, y1, y2, (mpfr_ptr) 0);
-+
-+ mpfr_set_inf (x, 1);
-+ mpfr_nextbelow (x);
-+
-+ for (neg = 0; neg <= 1; neg++)
-+ {
-+ RND_LOOP (r)
-+ {
-+ int inex1, inex2;
-+ unsigned int flags1, flags2;
-+
-+ /* Even if there isn't an overflow (rounding ~ toward zero),
-+ the result is the same as the one of an overflow. */
-+ inex1 = mpfr_overflow (y1, (mpfr_rnd_t) r, neg ? -1 : 1);
-+ flags1 = MPFR_FLAGS_INEXACT;
-+ if (mpfr_inf_p (y1))
-+ flags1 |= MPFR_FLAGS_OVERFLOW;
-+ for (op = 0; op < 4; op++)
-+ {
-+ mpfr_clear_flags ();
-+ inex2 =
-+ op == 0 ? mpfr_mul_2ui (y2, x, 0, (mpfr_rnd_t) r) :
-+ op == 1 ? mpfr_mul_2si (y2, x, 0, (mpfr_rnd_t) r) :
-+ op == 2 ? mpfr_div_2ui (y2, x, 0, (mpfr_rnd_t) r) :
-+ op == 3 ? mpfr_div_2si (y2, x, 0, (mpfr_rnd_t) r) :
-+ (MPFR_ASSERTN (0), 0);
-+ flags2 = __gmpfr_flags;
-+ if (!(mpfr_equal_p (y1, y2) &&
-+ SAME_SIGN (inex1, inex2) &&
-+ flags1 == flags2))
-+ {
-+ printf ("Error in overflow0 for %s, mpfr_%s, emax = %"
-+ MPFR_EXP_FSPEC "d,\nx = ",
-+ mpfr_print_rnd_mode ((mpfr_rnd_t) r), sop[op],
-+ (mpfr_eexp_t) emax);
-+ mpfr_dump (x);
-+ printf ("Expected ");
-+ mpfr_dump (y1);
-+ printf (" with inex = %d, flags =", inex1);
-+ flags_out (flags1);
-+ printf ("Got ");
-+ mpfr_dump (y2);
-+ printf (" with inex = %d, flags =", inex2);
-+ flags_out (flags2);
-+ exit (1);
-+ }
-+ }
-+ }
-+ mpfr_neg (x, x, MPFR_RNDN);
-+ }
-+
-+ mpfr_clears (x, y1, y2, (mpfr_ptr) 0);
-+ set_emax (old_emax);
-+}
-+
- int
- main (int argc, char *argv[])
- {
-@@ -334,6 +404,11 @@
- underflow0 ();
- large0 ();
-
-+ if (mpfr_get_emax () != MPFR_EMAX_MAX)
-+ overflow0 (mpfr_get_emax ());
-+ overflow0 (MPFR_EMAX_MAX);
-+ overflow0 (-1);
-+
- tests_end_mpfr ();
- return 0;
- }
-diff -Naurd mpfr-3.1.3-a/PATCHES mpfr-3.1.3-b/PATCHES
---- mpfr-3.1.3-a/PATCHES 2015-07-17 08:54:48.592799981 +0000
-+++ mpfr-3.1.3-b/PATCHES 2015-07-17 08:54:48.616811495 +0000
-@@ -0,0 +1 @@
-+muldiv-2exp-underflow
-diff -Naurd mpfr-3.1.3-a/VERSION mpfr-3.1.3-b/VERSION
---- mpfr-3.1.3-a/VERSION 2015-07-02 10:50:08.126574142 +0000
-+++ mpfr-3.1.3-b/VERSION 2015-07-17 08:54:48.616811495 +0000
-@@ -1 +1 @@
--3.1.3-p2
-+3.1.3-p3
-diff -Naurd mpfr-3.1.3-a/src/div_2si.c mpfr-3.1.3-b/src/div_2si.c
---- mpfr-3.1.3-a/src/div_2si.c 2015-07-02 10:50:08.106573933 +0000
-+++ mpfr-3.1.3-b/src/div_2si.c 2015-07-17 08:54:48.608807656 +0000
-@@ -45,7 +45,8 @@
- if (rnd_mode == MPFR_RNDN &&
- (__gmpfr_emin > MPFR_EMAX_MAX - (n - 1) ||
- exp < __gmpfr_emin + (n - 1) ||
-- (inexact >= 0 && mpfr_powerof2_raw (y))))
-+ ((MPFR_IS_NEG (y) ? inexact <= 0 : inexact >= 0) &&
-+ mpfr_powerof2_raw (y))))
- rnd_mode = MPFR_RNDZ;
- return mpfr_underflow (y, rnd_mode, MPFR_SIGN(y));
- }
-diff -Naurd mpfr-3.1.3-a/src/div_2ui.c mpfr-3.1.3-b/src/div_2ui.c
---- mpfr-3.1.3-a/src/div_2ui.c 2015-07-02 10:50:08.106573933 +0000
-+++ mpfr-3.1.3-b/src/div_2ui.c 2015-07-17 08:54:48.608807656 +0000
-@@ -44,7 +44,9 @@
- if (MPFR_UNLIKELY (n >= diffexp)) /* exp - n <= emin - 1 */
- {
- if (rnd_mode == MPFR_RNDN &&
-- (n > diffexp || (inexact >= 0 && mpfr_powerof2_raw (y))))
-+ (n > diffexp ||
-+ ((MPFR_IS_NEG (y) ? inexact <= 0 : inexact >= 0) &&
-+ mpfr_powerof2_raw (y))))
- rnd_mode = MPFR_RNDZ;
- return mpfr_underflow (y, rnd_mode, MPFR_SIGN (y));
- }
-diff -Naurd mpfr-3.1.3-a/src/mpfr.h mpfr-3.1.3-b/src/mpfr.h
---- mpfr-3.1.3-a/src/mpfr.h 2015-07-02 10:50:08.126574142 +0000
-+++ mpfr-3.1.3-b/src/mpfr.h 2015-07-17 08:54:48.616811495 +0000
-@@ -27,7 +27,7 @@
- #define MPFR_VERSION_MAJOR 3
- #define MPFR_VERSION_MINOR 1
- #define MPFR_VERSION_PATCHLEVEL 3
--#define MPFR_VERSION_STRING "3.1.3-p2"
-+#define MPFR_VERSION_STRING "3.1.3-p3"
-
- /* Macros dealing with MPFR VERSION */
- #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))
-diff -Naurd mpfr-3.1.3-a/src/mul_2si.c mpfr-3.1.3-b/src/mul_2si.c
---- mpfr-3.1.3-a/src/mul_2si.c 2015-07-02 10:50:08.106573933 +0000
-+++ mpfr-3.1.3-b/src/mul_2si.c 2015-07-17 08:54:48.608807656 +0000
-@@ -48,7 +48,8 @@
- if (rnd_mode == MPFR_RNDN &&
- (__gmpfr_emin > MPFR_EMAX_MAX + (n + 1) ||
- exp < __gmpfr_emin - (n + 1) ||
-- (inexact >= 0 && mpfr_powerof2_raw (y))))
-+ ((MPFR_IS_NEG (y) ? inexact <= 0 : inexact >= 0) &&
-+ mpfr_powerof2_raw (y))))
- rnd_mode = MPFR_RNDZ;
- return mpfr_underflow (y, rnd_mode, MPFR_SIGN(y));
- }
-diff -Naurd mpfr-3.1.3-a/src/version.c mpfr-3.1.3-b/src/version.c
---- mpfr-3.1.3-a/src/version.c 2015-07-02 10:50:08.126574142 +0000
-+++ mpfr-3.1.3-b/src/version.c 2015-07-17 08:54:48.616811495 +0000
-@@ -25,5 +25,5 @@
- const char *
- mpfr_get_version (void)
- {
-- return "3.1.3-p2";
-+ return "3.1.3-p3";
- }
-diff -Naurd mpfr-3.1.3-a/tests/tmul_2exp.c mpfr-3.1.3-b/tests/tmul_2exp.c
---- mpfr-3.1.3-a/tests/tmul_2exp.c 2015-07-02 10:50:08.106573933 +0000
-+++ mpfr-3.1.3-b/tests/tmul_2exp.c 2015-07-17 08:54:48.608807656 +0000
-@@ -50,77 +50,82 @@
- {
- mpfr_t x, y, z1, z2;
- mpfr_exp_t emin;
-- int i, k;
-+ int i, k, s;
- int prec;
- int rnd;
- int div;
- int inex1, inex2;
- unsigned int flags1, flags2;
-
-- /* Test mul_2si(x, e - k), div_2si(x, k - e) and div_2ui(x, k - e)
-- * with emin = e, x = 1 + i/16, i in { -1, 0, 1 }, and k = 1 to 4,
-- * by comparing the result with the one of a simple division.
-+ /* Test mul_2si(x, e - k), div_2si(x, k - e) and div_2ui(x, k - e) with
-+ * emin = e, x = s * (1 + i/16), i in { -1, 0, 1 }, s in { -1, 1 }, and
-+ * k = 1 to 4, by comparing the result with the one of a simple division.
- */
- emin = mpfr_get_emin ();
- set_emin (e);
- mpfr_inits2 (8, x, y, (mpfr_ptr) 0);
- for (i = 15; i <= 17; i++)
-- {
-- inex1 = mpfr_set_ui_2exp (x, i, -4, MPFR_RNDN);
-- MPFR_ASSERTN (inex1 == 0);
-- for (prec = 6; prec >= 3; prec -= 3)
-- {
-- mpfr_inits2 (prec, z1, z2, (mpfr_ptr) 0);
-- RND_LOOP (rnd)
-- for (k = 1; k <= 4; k++)
-- {
-- /* The following one is assumed to be correct. */
-- inex1 = mpfr_mul_2si (y, x, e, MPFR_RNDN);
-- MPFR_ASSERTN (inex1 == 0);
-- inex1 = mpfr_set_ui (z1, 1 << k, MPFR_RNDN);
-- MPFR_ASSERTN (inex1 == 0);
-- mpfr_clear_flags ();
-- /* Do not use mpfr_div_ui to avoid the optimization
-- by mpfr_div_2si. */
-- inex1 = mpfr_div (z1, y, z1, (mpfr_rnd_t) rnd);
-- flags1 = __gmpfr_flags;
--
-- for (div = 0; div <= 2; div++)
-+ for (s = 1; s >= -1; s -= 2)
-+ {
-+ inex1 = mpfr_set_si_2exp (x, s * i, -4, MPFR_RNDN);
-+ MPFR_ASSERTN (inex1 == 0);
-+ for (prec = 6; prec >= 3; prec -= 3)
-+ {
-+ mpfr_inits2 (prec, z1, z2, (mpfr_ptr) 0);
-+ RND_LOOP (rnd)
-+ for (k = 1; k <= 4; k++)
- {
-+ /* The following one is assumed to be correct. */
-+ inex1 = mpfr_mul_2si (y, x, e, MPFR_RNDN);
-+ MPFR_ASSERTN (inex1 == 0);
-+ inex1 = mpfr_set_ui (z1, 1 << k, MPFR_RNDN);
-+ MPFR_ASSERTN (inex1 == 0);
- mpfr_clear_flags ();
-- inex2 = div == 0 ?
-- mpfr_mul_2si (z2, x, e - k, (mpfr_rnd_t) rnd) : div == 1 ?
-- mpfr_div_2si (z2, x, k - e, (mpfr_rnd_t) rnd) :
-- mpfr_div_2ui (z2, x, k - e, (mpfr_rnd_t) rnd);
-- flags2 = __gmpfr_flags;
-- if (flags1 == flags2 && SAME_SIGN (inex1, inex2) &&
-- mpfr_equal_p (z1, z2))
-- continue;
-- printf ("Error in underflow(");
-- if (e == MPFR_EMIN_MIN)
-- printf ("MPFR_EMIN_MIN");
-- else if (e == emin)
-- printf ("default emin");
-- else if (e >= LONG_MIN)
-- printf ("%ld", (long) e);
-- else
-- printf ("= LONG_MIN)
-+ printf ("%ld", (long) e);
-+ else
-+ printf (" 30000 images/graphs
+, enableDoxygen ? false
+
+# e.g. "optimized" or "debug". If not set, use default one
+, build_profile ? null
+
+# --enable-examples
+, withExamples ? false
+
+# very long
+, withManual ? false, doxygen ? null, graphviz ? null, imagemagick ? null
+# for manual, tetex is used to get the eps2pdf binary
+# texlive to get latexmk. building manual still fails though
+, dia, tetex ? null, ghostscript ? null, texlive ? null
+
+# generates python bindings
+, generateBindings ? false, ncurses ? null
+
+# All modules can be enabled by choosing 'all_modules'.
+# we include here the DCE mandatory ones
+, modules ? [ "core" "network" "internet" "point-to-point" "fd-net-device" "netanim"]
+, gcc6
+, lib
+}:
+
+let
+ pythonEnv = python.withPackages(ps:
+ stdenv.lib.optional withManual ps.sphinx
+ ++ stdenv.lib.optionals generateBindings (with ps;[ pybindgen pygccxml ])
+ );
+in
+stdenv.mkDerivation rec {
+
+ name = "ns-3.${version}";
+ version = "28";
+
+ # the all in one https://www.nsnam.org/release/ns-allinone-3.27.tar.bz2;
+ # fetches everything (netanim, etc), this package focuses on ns3-core
+ src = fetchFromGitHub {
+ owner = "nsnam";
+ repo = "ns-3-dev-git";
+ rev = name;
+ sha256 = "17kzfjpgw2mvyx1c9bxccnvw67jpk09fxmcnlkqx9xisk10qnhng";
+ };
+
+ # ncurses is a hidden dependency of waf when checking python
+ buildInputs = lib.optionals generateBindings [ castxml ncurses ]
+ ++ stdenv.lib.optional enableDoxygen [ doxygen graphviz imagemagick ]
+ ++ stdenv.lib.optional withManual [ dia tetex ghostscript texlive.combined.scheme-medium ];
+
+ propagatedBuildInputs = [ gcc6 pythonEnv ];
+
+ postPatch = ''
+ patchShebangs ./waf
+ patchShebangs doc/ns3_html_theme/get_version.sh
+ '';
+
+ configureScript = "${python.interpreter} ./waf configure";
+
+ configureFlags = with stdenv.lib; [
+ "--enable-modules=${stdenv.lib.concatStringsSep "," modules}"
+ "--with-python=${pythonEnv.interpreter}"
+ ]
+ ++ optional (build_profile != null) "--build-profile=${build_profile}"
+ ++ optional generateBindings [ ]
+ ++ optional withExamples " --enable-examples "
+ ++ optional doCheck " --enable-tests "
+ ;
+
+ postBuild = with stdenv.lib; let flags = concatStringsSep ";" (
+ optional enableDoxygen "./waf doxygen"
+ ++ optional withManual "./waf sphinx"
+ );
+ in "${flags}"
+ ;
+
+ doCheck = true;
+
+ # we need to specify the proper interpreter else ns3 can check against a
+ # different version even though we
+ checkPhase = ''
+ ${pythonEnv.interpreter} ./test.py
+ '';
+
+ meta = {
+ homepage = http://www.nsnam.org;
+ license = stdenv.lib.licenses.gpl3;
+ description = "A discrete time event network simulator";
+ platforms = with stdenv.lib.platforms; unix;
+ };
+}
diff --git a/pkgs/development/libraries/spice-gtk/default.nix b/pkgs/development/libraries/spice-gtk/default.nix
index 4fae3696c63..bedd4771253 100644
--- a/pkgs/development/libraries/spice-gtk/default.nix
+++ b/pkgs/development/libraries/spice-gtk/default.nix
@@ -1,8 +1,29 @@
{ stdenv, fetchurl, pkgconfig, spice-protocol, gettext, celt_0_5_1
, openssl, libpulseaudio, pixman, gobjectIntrospection, libjpeg_turbo, zlib
, cyrus_sasl, python2Packages, autoreconfHook, usbredir, libsoup
-, polkit, acl, usbutils, vala
-, gtk3, epoxy }:
+, withPolkit ? true, polkit, acl, usbutils
+, vala, gtk3, epoxy }:
+
+# If this package is built with polkit support (withPolkit=true),
+# usb redirection reqires spice-client-glib-usb-acl-helper to run setuid root.
+# The helper confirms via polkit that the user has an active session,
+# then adds a device acl entry for that user.
+# Example NixOS config to create a setuid wrapper for the helper:
+# security.wrappers.spice-client-glib-usb-acl-helper.source =
+# "${pkgs.spice-gtk}/bin/spice-client-glib-usb-acl-helper";
+# On non-NixOS installations, make a setuid copy of the helper
+# outside the store and adjust PATH to find the setuid version.
+
+# If this package is built without polkit support (withPolkit=false),
+# usb redirection requires read-write access to usb devices.
+# This can be granted by adding users to a custom group like "usb"
+# and using a udev rule to put all usb devices in that group.
+# Example NixOS config:
+# users.groups.usb = {};
+# users.users.dummy.extraGroups = [ "usb" ];
+# services.udev.extraRules = ''
+# KERNEL=="*", SUBSYSTEMS=="usb", MODE="0664", GROUP="usb"
+# '';
with stdenv.lib;
@@ -18,11 +39,16 @@ in stdenv.mkDerivation rec {
sha256 = "1vknp72pl6v6nf3dphhwp29hk6gv787db2pmyg4m312z2q0hwwp9";
};
+ postPatch = ''
+ # get rid of absolute path to helper in store so we can use a setuid wrapper
+ substituteInPlace src/usb-acl-helper.c \
+ --replace 'ACL_HELPER_PATH"/' '"'
+ '';
+
buildInputs = [
spice-protocol celt_0_5_1 openssl libpulseaudio pixman
libjpeg_turbo zlib cyrus_sasl python pygtk usbredir gtk3 epoxy
- polkit acl usbutils
- ];
+ ] ++ optionals withPolkit [ polkit acl usbutils ] ;
nativeBuildInputs = [ pkgconfig gettext libsoup autoreconfHook vala gobjectIntrospection ];
@@ -34,16 +60,6 @@ in stdenv.mkDerivation rec {
"--enable-vala"
];
- # usb redirection needs spice-client-glib-usb-acl-helper to run setuid root
- # the helper then uses polkit to check access
- # in nixos, enable this with
- # security.wrappers.spice-client-glib-usb-acl-helper.source =
- # "${pkgs.spice_gtk}/bin/spice-client-glib-usb-acl-helper.real";
- postFixup = ''
- mv $out/bin/spice-client-glib-usb-acl-helper $out/bin/spice-client-glib-usb-acl-helper.real
- ln -sf /run/wrappers/bin/spice-client-glib-usb-acl-helper $out/bin/spice-client-glib-usb-acl-helper
- '';
-
dontDisableStatic = true; # Needed by the coroutine test
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/tachyon/default.nix b/pkgs/development/libraries/tachyon/default.nix
index b1649da6459..e4a24279c9b 100644
--- a/pkgs/development/libraries/tachyon/default.nix
+++ b/pkgs/development/libraries/tachyon/default.nix
@@ -1,10 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "tachyon-${version}";
- version = "0.98.9";
+ version = "0.99b2";
src = fetchurl {
url = "http://jedi.ks.uiuc.edu/~johns/tachyon/files/${version}/${name}.tar.gz";
- sha256 = "1ms0xr4ibrzz291ibm265lyjrdjrmhfrx0a70hwykhsdxn6jk8y6";
+ sha256 = "04m0bniszyg7ryknj8laj3rl5sspacw5nr45x59j2swcsxmdvn1v";
};
buildInputs = [];
preBuild = "cd unix";
diff --git a/pkgs/development/libraries/umockdev/default.nix b/pkgs/development/libraries/umockdev/default.nix
index 9bb11ca92af..fb43af36243 100644
--- a/pkgs/development/libraries/umockdev/default.nix
+++ b/pkgs/development/libraries/umockdev/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "umockdev-${version}";
- version = "0.11.1";
+ version = "0.11.2";
src = fetchFromGitHub {
owner = "martinpitt";
repo = "umockdev";
rev = version;
- sha256 ="0cmswac8m7zfvk6cb8k5iisqr7arnn1yhcmasri072yz0pmr6dr0";
+ sha256 ="1dvhs9nkznlnagzjny61fh574g42c47b9s5hxsqdgqb51njawdg1";
};
buildInputs = [ glib systemd libgudev ];
diff --git a/pkgs/development/libraries/unixODBCDrivers/default.nix b/pkgs/development/libraries/unixODBCDrivers/default.nix
index badcb7e661b..e7a2dee541d 100644
--- a/pkgs/development/libraries/unixODBCDrivers/default.nix
+++ b/pkgs/development/libraries/unixODBCDrivers/default.nix
@@ -5,11 +5,11 @@
{
psql = stdenv.mkDerivation rec {
name = "psqlodbc-${version}";
- version = "09.05.0210";
+ version = "10.01.0000";
src = fetchurl {
url = "http://ftp.postgresql.org/pub/odbc/versions/src/${name}.tar.gz";
- sha256 = "0317zrxaiy209xzcc6b5sz6hsyiv4zm74iikp91rgz7z3ll4n4dc";
+ sha256 = "1cyams7157f3gry86x64xrplqi2vyqrq3rqka59gv4lb4rpl7jl7";
};
buildInputs = [ unixODBC postgresql ];
diff --git a/pkgs/development/libraries/vulkan-loader/default.nix b/pkgs/development/libraries/vulkan-loader/default.nix
index 4bc64203051..2b0d765efc8 100644
--- a/pkgs/development/libraries/vulkan-loader/default.nix
+++ b/pkgs/development/libraries/vulkan-loader/default.nix
@@ -3,12 +3,12 @@
libXext, wayland, libGL, makeWrapper }:
let
- version = "1.0.61.1";
+ version = "1.1.70.0";
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "Vulkan-LoaderAndValidationLayers";
rev = "sdk-${version}";
- sha256 = "043kw6wnrpdplnb40x6n9rgf3gygsn9jiv91y458sydbhalfr945";
+ sha256 = "1a7xwl65bi03l4zbjq54qkxjb8kb4m78qvw8bas5alhf9v6i6yqp";
};
in
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ makeWrapper pkgconfig ];
buildInputs = [ cmake git python3 python3Packages.lxml
- glslang spirv-tools x11 libxcb libXrandr libXext wayland
+ glslang x11 libxcb libXrandr libXext wayland
];
enableParallelBuilding = true;
@@ -28,13 +28,18 @@ stdenv.mkDerivation rec {
];
outputs = [ "out" "dev" "demos" ];
+ patches = [ ./rev-file.patch ];
+
+ postUnpack = ''
+ # Hack so a version header can be generated. Relies on ./rev-file.patch to work.
+ mkdir -p "$sourceRoot/external/glslang/External"
+ echo "${spirv-tools.src.rev}" > "$sourceRoot/external/glslang/External/spirv-tools"
+ '';
preConfigure = ''
checkRev() {
[ "$2" = $(cat "external_revisions/$1_revision") ] || (echo "ERROR: dependency $1 is revision $2 but should be revision" $(cat "external_revisions/$1_revision") && exit 1)
}
- checkRev spirv-tools "${spirv-tools.src.rev}"
- checkRev spirv-headers "${spirv-tools.headers.rev}"
checkRev glslang "${glslang.src.rev}"
'';
diff --git a/pkgs/development/libraries/vulkan-loader/rev-file.patch b/pkgs/development/libraries/vulkan-loader/rev-file.patch
new file mode 100644
index 00000000000..e8f9f92c8ea
--- /dev/null
+++ b/pkgs/development/libraries/vulkan-loader/rev-file.patch
@@ -0,0 +1,21 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index c9f73ce96..d14ffeed9 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -339,13 +339,13 @@ macro(run_vk_xml_generate dependency output)
+ endmacro()
+
+ # Define macro used for generating header files containing commit IDs for external dependencies
+-macro(run_external_revision_generate source_dir symbol_name output)
++macro(run_external_revision_generate rev_file symbol_name output)
+ add_custom_command(OUTPUT ${output}
+ # NOTE: If you modify this call to use --rev_file instead of --git_dir (to read the commit ID from a file instead of
+ # parsing from a Git repository), you probably also want to add the revision file to the list of DEPENDS on the
+ # subsequent line (to ensure that the script is re-run when the revision file is modified).
+- COMMAND ${PYTHON_CMD} ${SCRIPTS_DIR}/external_revision_generator.py --git_dir ${source_dir} -s ${symbol_name} -o ${output}
+- DEPENDS ${SCRIPTS_DIR}/external_revision_generator.py ${source_dir}/.git/HEAD ${source_dir}/.git/index
++ COMMAND ${PYTHON_CMD} ${SCRIPTS_DIR}/external_revision_generator.py --rev_file ${rev_file} -s ${symbol_name} -o ${output}
++ DEPENDS ${SCRIPTS_DIR}/external_revision_generator.py ${rev_file}
+ )
+ endmacro()
+
diff --git a/pkgs/development/libraries/webkitgtk/2.20.nix b/pkgs/development/libraries/webkitgtk/2.20.nix
index 8b44f11ee93..588f4bc4e3b 100644
--- a/pkgs/development/libraries/webkitgtk/2.20.nix
+++ b/pkgs/development/libraries/webkitgtk/2.20.nix
@@ -39,6 +39,12 @@ stdenv.mkDerivation rec {
patchShebangs .
'';
+ postConfigure = ''
+ # A stopgap for a non-deterministic build failure when using only one core
+ # Upstream bug: https://bugs.webkit.org/show_bug.cgi?id=183788#c4
+ ninja JavaScriptCoreForwardingHeaders WTFForwardingHeaders
+ '';
+
cmakeFlags = [
"-DPORT=GTK"
"-DUSE_LIBHYPHEN=0"
diff --git a/pkgs/development/libraries/wlroots/default.nix b/pkgs/development/libraries/wlroots/default.nix
index 3fdaeb82438..24cff1996c3 100644
--- a/pkgs/development/libraries/wlroots/default.nix
+++ b/pkgs/development/libraries/wlroots/default.nix
@@ -42,5 +42,8 @@ in stdenv.mkDerivation rec {
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ primeos ];
+ # Marked as broken until the first official/stable release (upstream
+ # request). See #38344 for the public discussion.
+ broken = true;
};
}
diff --git a/pkgs/development/libraries/xmlrpc-c/default.nix b/pkgs/development/libraries/xmlrpc-c/default.nix
index 92e3424a5f6..8a0017109bb 100644
--- a/pkgs/development/libraries/xmlrpc-c/default.nix
+++ b/pkgs/development/libraries/xmlrpc-c/default.nix
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
# /doc/COPYING also lists "Expat license",
# "ABYSS Web Server License" and "Python 1.5.2 License"
license = licenses.bsd3;
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
};
}
diff --git a/pkgs/development/libraries/zlog/default.nix b/pkgs/development/libraries/zlog/default.nix
index d3dc41371de..21d8a7babb3 100644
--- a/pkgs/development/libraries/zlog/default.nix
+++ b/pkgs/development/libraries/zlog/default.nix
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
homepage = http://hardysimpson.github.com/zlog;
license = licenses.lgpl21;
platforms = platforms.linux; # cannot test on something else
- maintainers = [ maintainers.matthiasbeyer ];
+ maintainers = [ ];
};
}
diff --git a/pkgs/development/misc/avr/gcc/default.nix b/pkgs/development/misc/avr/gcc/default.nix
index 8d1eb43c934..82497929183 100644
--- a/pkgs/development/misc/avr/gcc/default.nix
+++ b/pkgs/development/misc/avr/gcc/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchurl, gmp, mpfr, libmpc, zlib, avrbinutils, texinfo }:
let
- version = "5.4.0";
+ version = "7.3.0";
in
stdenv.mkDerivation {
name = "avr-gcc-${version}";
src = fetchurl {
- url = "mirror://gcc/releases/gcc-${version}/gcc-${version}.tar.bz2";
- sha256 = "0fihlcy5hnksdxk0sn6bvgnyq8gfrgs8m794b1jxwd1dxinzg3b0";
+ url = "mirror://gcc/releases/gcc-${version}/gcc-${version}.tar.xz";
+ sha256 = "0p71bij6bfhzyrs8676a8jmpjsfz392s2rg862sdnsk30jpacb43";
};
patches = [
@@ -54,7 +54,7 @@ stdenv.mkDerivation {
description = "GNU Compiler Collection, version ${version} for AVR microcontrollers";
homepage = http://gcc.gnu.org;
license = licenses.gpl3Plus;
- platforms = platforms.linux;
+ platforms = with platforms; linux ++ darwin;
maintainers = with maintainers; [ mguentner ];
};
}
diff --git a/pkgs/development/misc/loc/default.nix b/pkgs/development/misc/loc/default.nix
index eef10f3323f..efa76ea00a0 100644
--- a/pkgs/development/misc/loc/default.nix
+++ b/pkgs/development/misc/loc/default.nix
@@ -19,7 +19,7 @@ buildRustPackage rec {
homepage = https://github.com/cgag/loc;
description = "Count lines of code quickly";
license = stdenv.lib.licenses.mit;
- maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
+ maintainers = with stdenv.lib.maintainers; [ ];
platforms = with stdenv.lib.platforms; linux;
};
}
diff --git a/pkgs/development/misc/rpiboot/unstable.nix b/pkgs/development/misc/rpiboot/unstable.nix
new file mode 100644
index 00000000000..c89d2f11e95
--- /dev/null
+++ b/pkgs/development/misc/rpiboot/unstable.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchFromGitHub, libusb1 }:
+
+let
+ version = "2018-03-27";
+ name = "rpiboot-unstable-${version}";
+in stdenv.mkDerivation {
+ inherit name;
+
+ src = fetchFromGitHub {
+ owner = "raspberrypi";
+ repo = "usbboot";
+ rev = "fb86716935f2e820333b037a2ff93a338ad9b695";
+ sha256 = "163g7iw7kf6ra71adx6lf1xzf3kv20bppva15ljwn54jlah5mv98";
+ };
+
+ nativeBuildInputs = [ libusb1 ];
+
+ patchPhase = ''
+ sed -i "s@/usr/@$out/@g" main.c
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ mkdir -p $out/share/rpiboot
+ cp rpiboot $out/bin
+ cp -r msd $out/share/rpiboot
+ '';
+
+ meta = {
+ homepage = https://github.com/raspberrypi/usbboot;
+ description = "Utility to boot a Raspberry Pi CM/CM3/Zero over USB";
+ maintainers = [ stdenv.lib.maintainers.cartr ];
+ license = stdenv.lib.licenses.asl20;
+ platforms = stdenv.lib.platforms.unix;
+ };
+}
diff --git a/pkgs/development/node-packages/node-packages-v6.json b/pkgs/development/node-packages/node-packages-v6.json
index ad9d79fd88e..d96241a0808 100644
--- a/pkgs/development/node-packages/node-packages-v6.json
+++ b/pkgs/development/node-packages/node-packages-v6.json
@@ -73,7 +73,7 @@
, "npm-check-updates"
, "nsp"
, "ocaml-language-server"
-, "parsoid"
+, { "parsoid": "git://github.com/abbradar/parsoid#stable" }
, "peerflix"
, "peerflix-server"
, "phantomjs"
@@ -102,6 +102,7 @@
, "typings"
, "uglify-js"
, "ungit"
+, "vue-cli"
, "webdrvr"
, "webpack"
, "web-ext"
diff --git a/pkgs/development/node-packages/node-packages-v6.nix b/pkgs/development/node-packages/node-packages-v6.nix
index 88a40fb0402..5071b4edeab 100644
--- a/pkgs/development/node-packages/node-packages-v6.nix
+++ b/pkgs/development/node-packages/node-packages-v6.nix
@@ -4,22 +4,40 @@
let
sources = {
- "@ionic/cli-framework-0.1.2" = {
- name = "_at_ionic_slash_cli-framework";
- packageName = "@ionic/cli-framework";
- version = "0.1.2";
+ "@cliqz-oss/firefox-client-0.3.1" = {
+ name = "_at_cliqz-oss_slash_firefox-client";
+ packageName = "@cliqz-oss/firefox-client";
+ version = "0.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@ionic/cli-framework/-/cli-framework-0.1.2.tgz";
- sha512 = "265kszf17mdz60zpfrj5i47lqwwgp6h1b7i8vymig1pnlqd3lnljibxvd2d1rfa3827ks435k9wws458z3dk7fyq8wfmzmv8fk9qjhh";
+ url = "https://registry.npmjs.org/@cliqz-oss/firefox-client/-/firefox-client-0.3.1.tgz";
+ sha512 = "0mzrszrx3b26v168dxy14mafp9dnczzl10yrdg203q46xcasi6a668yg2zf3nlzmf4klylfkbca3b3amd0646barp0nkh1zkfi97vs4";
};
};
- "@ionic/cli-utils-1.19.1" = {
+ "@cliqz-oss/node-firefox-connect-1.2.1" = {
+ name = "_at_cliqz-oss_slash_node-firefox-connect";
+ packageName = "@cliqz-oss/node-firefox-connect";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cliqz-oss/node-firefox-connect/-/node-firefox-connect-1.2.1.tgz";
+ sha512 = "2f8l9alm034f4mrp2shf3pgcvm1m9lvbw2n5jpjnnmk6mn36qmwz4hjnrky279z4wnphgr2wv1vksn57w6ncl3cfr13nzv93s435wiv";
+ };
+ };
+ "@ionic/cli-framework-0.1.3" = {
+ name = "_at_ionic_slash_cli-framework";
+ packageName = "@ionic/cli-framework";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@ionic/cli-framework/-/cli-framework-0.1.3.tgz";
+ sha512 = "0l4lpl9477wf6i2xzqqqv5lmrmnyf82n0rbww6ynaszyb6cl38m2dpbz4xv0ksy5mayjyfkq6nj7mjzh4cvak12zfwp4cgrrai6ybkg";
+ };
+ };
+ "@ionic/cli-utils-1.19.2" = {
name = "_at_ionic_slash_cli-utils";
packageName = "@ionic/cli-utils";
- version = "1.19.1";
+ version = "1.19.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@ionic/cli-utils/-/cli-utils-1.19.1.tgz";
- sha512 = "3anhsxw0zyzi9j4kfnqxg2h4fxqjyw6pabb75z5b17hmksmjcyy6psic9fziyrgllp5rqksadqdzbkbb6lrviclhiz26sj8f7gjfi8r";
+ url = "https://registry.npmjs.org/@ionic/cli-utils/-/cli-utils-1.19.2.tgz";
+ sha512 = "10fl86bf0p911b7w0dnz2q3b8092c50h6x8kf79lwg8bg3jnmnmvz0i868xhf7qnawyaikhqdf5nifpb42f9jr3x0mxgmp4ppdwadlx";
};
};
"@ionic/discover-0.4.0" = {
@@ -76,22 +94,22 @@ let
sha512 = "2fv2qaz90rp6ib2s45ix0p3a4bd6yl6k94k1kkhw7w4s2aa5mqc6chppkf6pfvsz1l6phh7y0xswyfyzjgny7qzascch8c7ws20a0r4";
};
};
- "@types/node-8.9.5" = {
+ "@types/node-8.10.1" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "8.9.5";
+ version = "8.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-8.9.5.tgz";
- sha512 = "06wcjpwrp2zkccv51w2j75yq11jcdb69r7y04l1qihncwhd56dagwcvvn7lm48bjp7rkfcxbsfn18658wjy9wqrdvfxacpjrdddy4cd";
+ url = "https://registry.npmjs.org/@types/node/-/node-8.10.1.tgz";
+ sha512 = "0idg6lra5659kj2sbfhfp209bsxbg7s2gxkg6pa566grjw498iida3f0w1dd2cbzh1zw7q6zdww3q19ikq789mbqkqpx990wx84iyjz";
};
};
- "@types/node-9.4.7" = {
+ "@types/node-9.6.1" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "9.4.7";
+ version = "9.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-9.4.7.tgz";
- sha512 = "1rk1inz71x7pkcc7j3w776wf7wi8byz3h2203wzl3vpmxrhmy4vfkmhy25sdhi05pc6f0dy1254qilfn1hwivm7dmfwgiwdcp9bs5p0";
+ url = "https://registry.npmjs.org/@types/node/-/node-9.6.1.tgz";
+ sha512 = "2sxvv78fkmdrpqq04pkyq69fkny1xj1abcp8ajkmmmfn1cs3jdiir545s9h1gsnxzls1iiigbzj8dlkimlqdfpbgdlm8h6pj2mlf2f7";
};
};
"@types/request-2.47.0" = {
@@ -211,6 +229,15 @@ let
sha512 = "38s4f3id97wsb0rg9nm9zvxyq0nvwrmrpa5dzvrkp36mf5ibs98b4z6lvsbrwzzs0sbcank6c7gpp06vcwp9acfhp41rzlhi3ybsxwy";
};
};
+ "absolute-0.0.1" = {
+ name = "absolute";
+ packageName = "absolute";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/absolute/-/absolute-0.0.1.tgz";
+ sha1 = "c22822f87e1c939f579887504d9c109c4173829d";
+ };
+ };
"abstract-leveldown-0.12.4" = {
name = "abstract-leveldown";
packageName = "abstract-leveldown";
@@ -301,15 +328,6 @@ let
sha512 = "0wmwifv9mm9gqcir9zbz5y1gl1rgwwprqh1f3csjydj8kf3byca7img3rh5b54kbnw3ik34bc6ynbnzsd01zmxrsfdvjv95hn84rpld";
};
};
- "acorn-dynamic-import-2.0.2" = {
- name = "acorn-dynamic-import";
- packageName = "acorn-dynamic-import";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz";
- sha1 = "c752bd210bef679501b6c6cb7fc84f8f47158cc4";
- };
- };
"acorn-dynamic-import-3.0.0" = {
name = "acorn-dynamic-import";
packageName = "acorn-dynamic-import";
@@ -418,13 +436,13 @@ let
sha1 = "6a7990437ca736d5e1288db92bd3266d5f5cb2aa";
};
};
- "addons-linter-0.35.0" = {
+ "addons-linter-0.41.0" = {
name = "addons-linter";
packageName = "addons-linter";
- version = "0.35.0";
+ version = "0.41.0";
src = fetchurl {
- url = "https://registry.npmjs.org/addons-linter/-/addons-linter-0.35.0.tgz";
- sha1 = "85872cce58983ff339ced297dbff486c02ecd336";
+ url = "https://registry.npmjs.org/addons-linter/-/addons-linter-0.41.0.tgz";
+ sha512 = "1cdq1s3zaz5547yn12h23434f3g6jjchrjdwv7x0qbg38zilaix5x04ajy87pw94rs1mk6kkawa517whzjn0jd7kpx6nac75qw7rcwf";
};
};
"addr-to-ip-port-1.4.3" = {
@@ -562,13 +580,22 @@ let
sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965";
};
};
- "ajv-6.2.1" = {
+ "ajv-6.3.0" = {
name = "ajv";
packageName = "ajv";
- version = "6.2.1";
+ version = "6.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-6.2.1.tgz";
- sha1 = "28a6abc493a2abe0fb4c8507acaedb43fa550671";
+ url = "https://registry.npmjs.org/ajv/-/ajv-6.3.0.tgz";
+ sha1 = "1650a41114ef00574cac10b8032d8f4c14812da7";
+ };
+ };
+ "ajv-6.4.0" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "6.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ajv/-/ajv-6.4.0.tgz";
+ sha1 = "d3aff78e9277549771daf0164cff48482b754fc6";
};
};
"ajv-keywords-1.5.1" = {
@@ -679,13 +706,13 @@ let
sha1 = "3e75c037475217544ed763a8db5709fa9ae5bf9a";
};
};
- "ansi-diff-stream-1.2.0" = {
+ "ansi-diff-stream-1.2.1" = {
name = "ansi-diff-stream";
packageName = "ansi-diff-stream";
- version = "1.2.0";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-diff-stream/-/ansi-diff-stream-1.2.0.tgz";
- sha1 = "eb325c20ac3623ecd592011a9295d76d97de460e";
+ url = "https://registry.npmjs.org/ansi-diff-stream/-/ansi-diff-stream-1.2.1.tgz";
+ sha512 = "3lf59lflmnm783cbczclcms4qp42l79s7jbzx7xgz89rzk325nfj26bzd61g83lp250a3pjwh8q5w1khvfjkwn8rm9sm80dhbgsr8ix";
};
};
"ansi-escapes-1.4.0" = {
@@ -697,13 +724,13 @@ let
sha1 = "d3a8a83b319aa67793662b13e761c7911422306e";
};
};
- "ansi-escapes-3.0.0" = {
+ "ansi-escapes-3.1.0" = {
name = "ansi-escapes";
packageName = "ansi-escapes";
- version = "3.0.0";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.0.0.tgz";
- sha512 = "06szfav8g7xywvqsis16nnkjqs2snhv37r4m53l1ax8k2sahvqv9id2klam32jajqd08ylw8g9wbcjr971igx6vh8idan76drrjby9v";
+ url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz";
+ sha512 = "1bm72rs09dwjhfif8kqjxnpb5fgmcdgkn5483f11j6791s5161f2kvxy69pkgcq0jdws6kqfmr1bx5189lnvkzgkq851qs3gzq1n02j";
};
};
"ansi-gray-0.1.1" = {
@@ -715,6 +742,15 @@ let
sha1 = "2962cf54ec9792c48510a3deb524436861ef7251";
};
};
+ "ansi-red-0.1.1" = {
+ name = "ansi-red";
+ packageName = "ansi-red";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz";
+ sha1 = "8c638f9d1080800a353c9c28c8a81ca4705d946c";
+ };
+ };
"ansi-regex-0.2.1" = {
name = "ansi-regex";
packageName = "ansi-regex";
@@ -1543,13 +1579,13 @@ let
sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
};
};
- "atob-2.0.3" = {
+ "atob-2.1.0" = {
name = "atob";
packageName = "atob";
- version = "2.0.3";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/atob/-/atob-2.0.3.tgz";
- sha1 = "19c7a760473774468f20b2d2d03372ad7d4cbf5d";
+ url = "https://registry.npmjs.org/atob/-/atob-2.1.0.tgz";
+ sha512 = "0dyf7054n94f1pwp9chcy6vawgwd2wqp8jqrnvxl489jyxxbg46n2vkb5vfs5jqnkmh6kbyv4lpysrn13hzzh5q021frc6vrcgqms2a";
};
};
"atomic-batcher-1.0.2" = {
@@ -1579,13 +1615,13 @@ let
sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3";
};
};
- "aws-sdk-2.208.0" = {
+ "aws-sdk-2.218.1" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.208.0";
+ version = "2.218.1";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.208.0.tgz";
- sha1 = "f95e44524cb62c9a6e0ef95270236fc6a62178d6";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.218.1.tgz";
+ sha1 = "b4cf742cc0853bd7c868b388cbf0b4a1ef1abc12";
};
};
"aws-sign-0.2.0" = {
@@ -1759,13 +1795,13 @@ let
sha1 = "f63a6dad0355633d9347fb403f417fb195fe3b91";
};
};
- "azure-arm-network-4.0.1" = {
+ "azure-arm-network-5.1.0" = {
name = "azure-arm-network";
packageName = "azure-arm-network";
- version = "4.0.1";
+ version = "5.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-network/-/azure-arm-network-4.0.1.tgz";
- sha1 = "577d8a2be2eb9e5298b561837405b2eaef283a19";
+ url = "https://registry.npmjs.org/azure-arm-network/-/azure-arm-network-5.1.0.tgz";
+ sha1 = "b2be4bfc27173b1cb7fc54425cbee27824f65b52";
};
};
"azure-arm-powerbiembedded-0.1.0" = {
@@ -2281,15 +2317,6 @@ let
sha1 = "d6400cac1c4c660976d90d07a04351d89395f5e8";
};
};
- "base64-js-1.2.0" = {
- name = "base64-js";
- packageName = "base64-js";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-js/-/base64-js-1.2.0.tgz";
- sha1 = "a39992d723584811982be5e290bb6a53d86700f1";
- };
- };
"base64-js-1.2.3" = {
name = "base64-js";
packageName = "base64-js";
@@ -2497,13 +2524,13 @@ let
sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4";
};
};
- "big-integer-1.6.26" = {
+ "big-integer-1.6.27" = {
name = "big-integer";
packageName = "big-integer";
- version = "1.6.26";
+ version = "1.6.27";
src = fetchurl {
- url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.26.tgz";
- sha1 = "3af1672fa62daf2d5ecafacf6e5aa0d25e02c1c8";
+ url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.27.tgz";
+ sha512 = "2v5f59yjsa3hzwhk333s84nfl1x24w52h9hqpwbav0p5v5d5prkna0flw25ywccrrjziq3lylbl874qqikzljkyz2g6jjdqhlqhld9p";
};
};
"big.js-3.2.0" = {
@@ -2668,13 +2695,13 @@ let
sha1 = "fdca871a99713aa00d19e3bbba41c44787a65398";
};
};
- "bl-1.2.1" = {
+ "bl-1.2.2" = {
name = "bl";
packageName = "bl";
- version = "1.2.1";
+ version = "1.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/bl/-/bl-1.2.1.tgz";
- sha1 = "cac328f7bee45730d404b692203fcb590e172d5e";
+ url = "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz";
+ sha512 = "0810nalazir8szyxvbg53d7416j4a7xy94sdri37mwmnax9s9hx88mzky882sr9dv0is7w9fqlp7ys6ijr1z1imc2dnfxk8fri51jvv";
};
};
"blake2b-2.1.2" = {
@@ -2911,13 +2938,13 @@ let
sha1 = "4d67dc2602c0cc16dd9bce7ebf87e948290f5812";
};
};
- "bower-1.8.2" = {
+ "bower-1.8.4" = {
name = "bower";
packageName = "bower";
- version = "1.8.2";
+ version = "1.8.4";
src = fetchurl {
- url = "https://registry.npmjs.org/bower/-/bower-1.8.2.tgz";
- sha1 = "adf53529c8d4af02ef24fb8d5341c1419d33e2f7";
+ url = "https://registry.npmjs.org/bower/-/bower-1.8.4.tgz";
+ sha1 = "e7876a076deb8137f7d06525dc5e8c66db82f28a";
};
};
"bower-endpoint-parser-0.2.1" = {
@@ -3055,13 +3082,13 @@ let
sha1 = "51598408a13f4c9c5b20eba44554b2c0b0ae4074";
};
};
- "browser-pack-6.0.4" = {
+ "browser-pack-6.1.0" = {
name = "browser-pack";
packageName = "browser-pack";
- version = "6.0.4";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/browser-pack/-/browser-pack-6.0.4.tgz";
- sha512 = "0ylgxzrsxs25v3c4mz5ggqawb8k3xb39ialqlflk1nadfk8wrig2g2ipkpnw6bf9zhdhmigkwqbbl8yssibcb6fgnbbqfgsnfgnz123";
+ url = "https://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz";
+ sha512 = "1cav0iv5irfvilx6x14zbxil5m012hxan16cgyp9yjs6fqfg6fny2cdjimfwgil9ma8n4w8g8wv4yn843sz257p44vkbaz8qn1jxdks";
};
};
"browser-resolve-1.11.2" = {
@@ -3217,6 +3244,15 @@ let
sha1 = "cf34fdcff081a189b589b4b3e5e9309cd6506c81";
};
};
+ "buffer-3.6.0" = {
+ name = "buffer";
+ packageName = "buffer";
+ version = "3.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer/-/buffer-3.6.0.tgz";
+ sha1 = "a72c936f77b96bf52f5f7e7b467180628551defb";
+ };
+ };
"buffer-4.9.1" = {
name = "buffer";
packageName = "buffer";
@@ -3235,6 +3271,24 @@ let
sha512 = "1ipkzdnq03rnxyl50wmzigdbd96lh0mgzffcab80yxl38x7k316kzs3h0w0bxdjj7vqh6dw3wgb7y3rsqab0ar4ky9rbh0r1f1i2hk2";
};
};
+ "buffer-alloc-1.1.0" = {
+ name = "buffer-alloc";
+ packageName = "buffer-alloc";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.1.0.tgz";
+ sha1 = "05514d33bf1656d3540c684f65b1202e90eca303";
+ };
+ };
+ "buffer-alloc-unsafe-0.1.1" = {
+ name = "buffer-alloc-unsafe";
+ packageName = "buffer-alloc-unsafe";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-0.1.1.tgz";
+ sha1 = "ffe1f67551dd055737de253337bfe853dfab1a6a";
+ };
+ };
"buffer-alloc-unsafe-1.0.0" = {
name = "buffer-alloc-unsafe";
packageName = "buffer-alloc-unsafe";
@@ -3298,6 +3352,24 @@ let
sha1 = "0353b54fd07fd9564170671ae6f66b9cf10d27f5";
};
};
+ "buffer-fill-0.1.1" = {
+ name = "buffer-fill";
+ packageName = "buffer-fill";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-0.1.1.tgz";
+ sha512 = "3nny0zbpnaxp1544gp7lc53jvs1jgzpmp92cy939dik36bi8lvhrsh4g082lxdplwsma22cgg9q93dw5dnbn1ljqkh4fb2i6w3lq032";
+ };
+ };
+ "buffer-from-1.0.0" = {
+ name = "buffer-from";
+ packageName = "buffer-from";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.0.0.tgz";
+ sha512 = "3252laq8prm41lgzlhmc7rdj99gwcvpf7cn6j686g4qmspnl3haid5khv9pc9cfjja9wb64nwfvgdwi2kpdf125xfg48aqapwssjxpk";
+ };
+ };
"buffer-indexof-1.1.1" = {
name = "buffer-indexof";
packageName = "buffer-indexof";
@@ -3415,13 +3487,13 @@ let
sha1 = "cb94faeb61c8696451db36534e1422f94f0aee88";
};
};
- "bulk-write-stream-1.1.3" = {
+ "bulk-write-stream-1.1.4" = {
name = "bulk-write-stream";
packageName = "bulk-write-stream";
- version = "1.1.3";
+ version = "1.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/bulk-write-stream/-/bulk-write-stream-1.1.3.tgz";
- sha1 = "d29ca385fbd53f357aee5bd3d3028732b62ae275";
+ url = "https://registry.npmjs.org/bulk-write-stream/-/bulk-write-stream-1.1.4.tgz";
+ sha512 = "2g3ccqw8k5vhdhnks27i954xglllw5gay8nvy3zgm2c7jpwnjc2imarwshx53pz54br6q4i4x2va4s80ixavafphhsykdhyzrvv1lhs";
};
};
"bunyan-1.5.1" = {
@@ -3802,6 +3874,15 @@ let
sha1 = "98cc890ca652dd2ef0e70b37925310ff9e90fc8b";
};
};
+ "caw-2.0.1" = {
+ name = "caw";
+ packageName = "caw";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz";
+ sha512 = "2wa0gi2wljxw00rvqz454sgdr8yy90z8lhprxjc1prwi695lnzrh6sk0qqhp63h9gmbldyvvzfvm8k1jk0sbv6icdawcss441jky3qa";
+ };
+ };
"ccount-1.0.2" = {
name = "ccount";
packageName = "ccount";
@@ -3973,6 +4054,15 @@ let
sha1 = "b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2";
};
};
+ "charenc-0.0.2" = {
+ name = "charenc";
+ packageName = "charenc";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz";
+ sha1 = "c0a1d2f3a7092e03774bfa83f14c0fc5790a8667";
+ };
+ };
"check-error-1.0.2" = {
name = "check-error";
packageName = "check-error";
@@ -4036,13 +4126,13 @@ let
sha1 = "798e689778151c8076b4b360e5edd28cda2bb468";
};
};
- "chokidar-2.0.2" = {
+ "chokidar-2.0.3" = {
name = "chokidar";
packageName = "chokidar";
- version = "2.0.2";
+ version = "2.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/chokidar/-/chokidar-2.0.2.tgz";
- sha512 = "1kncf65ax274b43r63m0bfbap3j5ah7dn86niqwpzzw6ilvpc7yy0fan14k584lw8ycf4nl78n5gv3bpyr4jrk5j3v441ragk1qfzcp";
+ url = "https://registry.npmjs.org/chokidar/-/chokidar-2.0.3.tgz";
+ sha512 = "0r9sfr7gz91aphg4vk476c4z07gqq6wdyhlhk3brazjwfvqz9jqccl19qyrwiwijx0aw85jw0zhnfayapk9wzzcj9wcqp3dhrfj4vyd";
};
};
"chownr-0.0.2" = {
@@ -4126,6 +4216,15 @@ let
sha512 = "3cm9kdc1sv7pakzlhrc1pazdvg9lk4hv31lximwbcrgmwfzg6imxrndszgx9yzlizknfh2b73cr7b5mfcv50bldpyq6jr5s4zknsj1a";
};
};
+ "circular-append-file-1.0.1" = {
+ name = "circular-append-file";
+ packageName = "circular-append-file";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/circular-append-file/-/circular-append-file-1.0.1.tgz";
+ sha512 = "294ys13wj7mq7c2sb6h20a25z98wv9mar62nliikcsnb55xyqqwy3hj2ghcmc71yrx61i9s15x0qy71sy9x6i0ghsaxf2akn2zcah05";
+ };
+ };
"circular-json-0.3.3" = {
name = "circular-json";
packageName = "circular-json";
@@ -4252,13 +4351,13 @@ let
sha1 = "7e673ee0dd39a611a486476e53f3c6b3941cb582";
};
};
- "cli-spinners-1.1.0" = {
+ "cli-spinners-1.3.0" = {
name = "cli-spinners";
packageName = "cli-spinners";
- version = "1.1.0";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.1.0.tgz";
- sha1 = "f1847b168844d917a671eb9d147e3df497c90d06";
+ url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.3.0.tgz";
+ sha512 = "36fw6sfxv4nwbywjns5fvwflfdimmngjc44ri9xhmqq8cb64b0p19fk30m7ywhr9m9bac8a9jnkb22bs2h0bskv6y5spnqny6mzf6ka";
};
};
"cli-table-0.3.1" = {
@@ -4423,13 +4522,13 @@ let
sha1 = "c6126a90ad4f72dbf5acdb243cc37724fe93fc1f";
};
};
- "clone-1.0.3" = {
+ "clone-1.0.4" = {
name = "clone";
packageName = "clone";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/clone/-/clone-1.0.3.tgz";
- sha1 = "298d7e2231660f40c003c2ed3140decf3f53085f";
+ url = "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz";
+ sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e";
};
};
"clone-2.1.1" = {
@@ -4441,6 +4540,15 @@ let
sha1 = "d217d1e961118e3ac9a4b8bba3285553bf647cdb";
};
};
+ "clone-2.1.2" = {
+ name = "clone";
+ packageName = "clone";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz";
+ sha1 = "1b7f4b9f591f1e8f83670401600345a02887435f";
+ };
+ };
"clone-buffer-1.0.0" = {
name = "clone-buffer";
packageName = "clone-buffer";
@@ -4459,13 +4567,13 @@ let
sha1 = "348c61ae9cdbe0edfe053d91ff4cc521d790ede8";
};
};
- "clone-regexp-1.0.0" = {
+ "clone-regexp-1.0.1" = {
name = "clone-regexp";
packageName = "clone-regexp";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/clone-regexp/-/clone-regexp-1.0.0.tgz";
- sha1 = "eae0a2413f55c0942f818c229fefce845d7f3b1c";
+ url = "https://registry.npmjs.org/clone-regexp/-/clone-regexp-1.0.1.tgz";
+ sha512 = "2dkam277bx7ajypbx3z8jrpigy0lqfflbj3ic5crhprjilxlfm8nh6xzpjm1p3n4ndx6pjw2pnm5shjirs2cj6lg7bnwnqiiksa7j0m";
};
};
"clone-response-1.0.2" = {
@@ -4495,13 +4603,13 @@ let
sha1 = "b3782dff8bb5474e18b9b6bf0fdfe782f8777680";
};
};
- "cloneable-readable-1.1.1" = {
+ "cloneable-readable-1.1.2" = {
name = "cloneable-readable";
packageName = "cloneable-readable";
- version = "1.1.1";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.1.tgz";
- sha512 = "3bfsmhwhasp3dqnj54lss7pcmyliy2i15x9sqm11yrlah27i6xyiiagh4f252ss7kr7b7spgqpcslv45am4vg9drm7i3a2xlaml9lqc";
+ url = "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.2.tgz";
+ sha512 = "2kg2ysl15s9cxgj62p43gzagfqf3kk2zqj4i6g3ckxs2b0fvx71blw7qy7v7gmy2pi9z9jsrc81v43kz7khagrvhlpwyv55vzibxbh6";
};
};
"cmd-shim-2.0.2" = {
@@ -4549,6 +4657,33 @@ let
sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
};
};
+ "co-from-stream-0.0.0" = {
+ name = "co-from-stream";
+ packageName = "co-from-stream";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/co-from-stream/-/co-from-stream-0.0.0.tgz";
+ sha1 = "1a5cd8ced77263946094fa39f2499a63297bcaf9";
+ };
+ };
+ "co-fs-extra-1.2.1" = {
+ name = "co-fs-extra";
+ packageName = "co-fs-extra";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/co-fs-extra/-/co-fs-extra-1.2.1.tgz";
+ sha1 = "3b6ad77cf2614530f677b1cf62664f5ba756b722";
+ };
+ };
+ "co-read-0.0.1" = {
+ name = "co-read";
+ packageName = "co-read";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/co-read/-/co-read-0.0.1.tgz";
+ sha1 = "f81b3eb8a86675fec51e3d883a7f564e873c9389";
+ };
+ };
"coa-2.0.1" = {
name = "coa";
packageName = "coa";
@@ -4621,13 +4756,13 @@ let
sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
};
};
- "color-2.0.1" = {
+ "color-3.0.0" = {
name = "color";
packageName = "color";
- version = "2.0.1";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/color/-/color-2.0.1.tgz";
- sha512 = "1gir7mfj6033amg78p7jvpj0nk2hw61hqd81r6x3a2qmgizbw3d89k0qk62680zhm9ypcx6c9p2cgwjvb8smxv0qgvblkwza9ah5ddr";
+ url = "https://registry.npmjs.org/color/-/color-3.0.0.tgz";
+ sha512 = "3xh3l9zhh6dav7pp5hy88kbb6c52j0pf331ywpp6w2jaf94w25fjn4am930775mskxy75cxl90fji17cym40ivslxxlpcrlxgkmsalc";
};
};
"color-convert-1.9.1" = {
@@ -4738,15 +4873,6 @@ let
sha1 = "458c07e09e0d900fc28b70a3fec2dacd1d2cb7f6";
};
};
- "combine-source-map-0.7.2" = {
- name = "combine-source-map";
- packageName = "combine-source-map";
- version = "0.7.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.7.2.tgz";
- sha1 = "0870312856b307a87cc4ac486f3a9a62aeccc09e";
- };
- };
"combine-source-map-0.8.0" = {
name = "combine-source-map";
packageName = "combine-source-map";
@@ -4873,13 +4999,13 @@ let
sha512 = "11j7mwxfdnhi3yfkhxjvfkg1mzdsi3wq7iygma6ksmj1f7hfs0z8rpfcysqmy85f67mqvzhda3w1lyy1jqxxm31k799sazbipm7b17r";
};
};
- "commander-2.15.0" = {
+ "commander-2.15.1" = {
name = "commander";
packageName = "commander";
- version = "2.15.0";
+ version = "2.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.15.0.tgz";
- sha512 = "090my2m6q69l4kgn1slqs845mf9s5zx7l1p345z2qij174pyk4jr2xkalnq8k0dfhghvdmcjxba03qn959n64r8nkg2cq9d3ja647gc";
+ url = "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz";
+ sha512 = "1mb8z6hhy74rfdgj3spmk52sdqa5bb2w5wp28z3md1daqcca4vbbsg66wz8hdhrv0fnnmf8yzdkmnw3c373vcccmyizzlnmbpsd6msn";
};
};
"commander-2.6.0" = {
@@ -5022,7 +5148,7 @@ let
packageName = "compression";
version = "1.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/compression/-/compression-1.5.2.tgz";
+ url = "http://registry.npmjs.org/compression/-/compression-1.5.2.tgz";
sha1 = "b03b8d86e6f8ad29683cba8df91ddc6ffc77b395";
};
};
@@ -5031,7 +5157,7 @@ let
packageName = "compression";
version = "1.7.2";
src = fetchurl {
- url = "https://registry.npmjs.org/compression/-/compression-1.7.2.tgz";
+ url = "http://registry.npmjs.org/compression/-/compression-1.7.2.tgz";
sha1 = "aaffbcd6aaf854b44ebb280353d5ad1651f59a69";
};
};
@@ -5071,13 +5197,13 @@ let
sha1 = "0aac662fd52be78964d5532f694784e70110acf7";
};
};
- "concat-stream-1.6.1" = {
+ "concat-stream-1.6.2" = {
name = "concat-stream";
packageName = "concat-stream";
- version = "1.6.1";
+ version = "1.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.1.tgz";
- sha512 = "1gyp2id8ifqdpzk81qz5q7200wf8m66ammg6cz8cxv4blmqh7rf761fxd1536ib4kcdp8jccvyx1l9vi6kjl26pwyd05pblki455jc2";
+ url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz";
+ sha512 = "05nnf80j9ls12y3cw2dfnc6rmand3ya5sx9cqn9dgg19ljzdnyfjjv8ig79xi73gr2y4rkfzn9wjip2zzwp5n2d49njd3ki2a1c3cfv";
};
};
"conf-1.4.0" = {
@@ -5125,13 +5251,13 @@ let
sha1 = "737a3a7036e9886102aa6099e47bb33ab1aba1a1";
};
};
- "configstore-3.1.1" = {
+ "configstore-3.1.2" = {
name = "configstore";
packageName = "configstore";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/configstore/-/configstore-3.1.1.tgz";
- sha512 = "2zmidvkp20q25yv6a5d7k1daawdg0w6ppgayxzpwfhyvmgwybkkv7ni0j4b2j9c8wjn8z33zf5d4bjr8jywb5qixc75vypyy87n90z6";
+ url = "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz";
+ sha512 = "2difdg3f56d584kfxl1zvm4ik5m3ln949m0q9sxq6ranzx2iwqa9zxqxy2l5i2lsm8jwmaiqkf7rc73gfnfip5m2qh8awd3s4ggknxy";
};
};
"connect-1.9.2" = {
@@ -5287,6 +5413,15 @@ let
sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
};
};
+ "consolidate-0.14.5" = {
+ name = "consolidate";
+ packageName = "consolidate";
+ version = "0.14.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/consolidate/-/consolidate-0.14.5.tgz";
+ sha1 = "5a25047bc76f73072667c8cb52c989888f494c63";
+ };
+ };
"constantinople-3.0.2" = {
name = "constantinople";
packageName = "constantinople";
@@ -5359,12 +5494,12 @@ let
sha512 = "1f4y61wc913jrnga7nny83gzf9l2488q6sl1ry9lbwgh5x5d3va0xcc0xrmjk6gdxl6d4r6rsk800xp5bazhjrx05yx1wpc8c8gg0w4";
};
};
- "content-type-git+https://github.com/wikimedia/content-type.git#master" = {
+ "content-type-git+https://github.com/wikimedia/content-type#master" = {
name = "content-type";
packageName = "content-type";
version = "1.0.1";
src = fetchgit {
- url = "https://github.com/wikimedia/content-type.git";
+ url = "https://github.com/wikimedia/content-type";
rev = "47b2632d0a2ee79a7d67268e2f6621becd95d05b";
sha256 = "e583031138b98e2a09ce14dbd72afa0377201894092c941ef4cc07206c35ed04";
};
@@ -5387,13 +5522,13 @@ let
sha1 = "bd727a7faed77e71ff3985ac93351a912733ad0f";
};
};
- "conventional-changelog-1.1.18" = {
+ "conventional-changelog-1.1.23" = {
name = "conventional-changelog";
packageName = "conventional-changelog";
- version = "1.1.18";
+ version = "1.1.23";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-1.1.18.tgz";
- sha512 = "02967qizq9ymmgf5yahk2rca3dkrjsslqwrdsdsw4a8qjfhkliijsngzvi8p95mkr84mh4651kapbybiwdwyfncv4cgpv36m1pgj1xk";
+ url = "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-1.1.23.tgz";
+ sha512 = "2775l94nr8rbnvhihkrwyszncc2g7z1kvbsqpbvni86h8072xvxngbba6yxzzw4dfs57ghklkh9l0ibjy17rl7ldrh6q9lpyd9xf8y8";
};
};
"conventional-changelog-angular-1.6.6" = {
@@ -5405,67 +5540,67 @@ let
sha512 = "0v02kj8l2ji18jmcgjqa0nqsfn4h9jklgy4g9brf1ppm0n8344in3xpmyc5y06i5k3jjxl8sv90cndh2fbg4fhn0wr1ric258ajgr5j";
};
};
- "conventional-changelog-atom-0.2.4" = {
+ "conventional-changelog-atom-0.2.8" = {
name = "conventional-changelog-atom";
packageName = "conventional-changelog-atom";
- version = "0.2.4";
+ version = "0.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-0.2.4.tgz";
- sha512 = "2b43fd5cpi069hsmfswl320lnpnvahmqmnrc9csk6qv0dq72nfj0jzafmbv5gsb3ds2ssr29lswwky61shy3n9hbxshq0qw3in6ds73";
+ url = "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-0.2.8.tgz";
+ sha512 = "3m1yhgjwbz0x993dfdw3g2n4svz4ym4k1snhg57iraw1418glgdwpz52j01300v8d1p6ldjjbrv7x3gqa08xcqq6inpkbhv2fmdk4zj";
};
};
- "conventional-changelog-cli-1.3.16" = {
+ "conventional-changelog-cli-1.3.21" = {
name = "conventional-changelog-cli";
packageName = "conventional-changelog-cli";
- version = "1.3.16";
+ version = "1.3.21";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-cli/-/conventional-changelog-cli-1.3.16.tgz";
- sha512 = "1h3h3vq237a95wqm6ml85794lhr268mq6v3j7574hmb04ssw7mrls5b6mn5q9azs5i594xxi9klaxzbrnqwxcyyz5cnz1svngzcdl6c";
+ url = "https://registry.npmjs.org/conventional-changelog-cli/-/conventional-changelog-cli-1.3.21.tgz";
+ sha512 = "1n93839r75vwj9fl4i3x3l06zc84kin92cp8nrlxksga9lqdpxc8b8i72wvi9jvwk0z6i29wisxdpiw6y7rrmdl13ch9f3k7jb43m9b";
};
};
- "conventional-changelog-codemirror-0.3.4" = {
+ "conventional-changelog-codemirror-0.3.8" = {
name = "conventional-changelog-codemirror";
packageName = "conventional-changelog-codemirror";
- version = "0.3.4";
+ version = "0.3.8";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.3.4.tgz";
- sha512 = "33091h0zm06gdwhcqi5c3xvcjl6fw8cj3wvis9hyl5gix1vl2wd2pifymgp7rag6dbyzilb0g5q3ak29dcsrdzizqzibk8m0hdfkkph";
+ url = "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.3.8.tgz";
+ sha512 = "24l71rg9rqfl9aa8fi3c1dc2iqxmdsh6ba8b9rwrrj7dg1gzfc5afw03rns5b1h6zld15942aqsjvwklwp6myzw3q1aakaps0m5jwfw";
};
};
- "conventional-changelog-core-2.0.5" = {
+ "conventional-changelog-core-2.0.10" = {
name = "conventional-changelog-core";
packageName = "conventional-changelog-core";
- version = "2.0.5";
+ version = "2.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-2.0.5.tgz";
- sha512 = "1agyx5rj0lbrky9ndhha25la98lh2h1lyli2r4r27r1p0pr48niwg04al4whnvcldh0592fmyrdgf8vqqp5n6xz3df43j6dkpnnrzcl";
+ url = "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-2.0.10.tgz";
+ sha512 = "19pvarpv78qfmlnsz11c8anrwfg1v04qmwrsrcnai8p3xmbzdyvp1znz9j23l0i6l26yabkd4b631wybnkgxr4qgwzgb9hvf8fhvz8l";
};
};
- "conventional-changelog-ember-0.3.6" = {
+ "conventional-changelog-ember-0.3.11" = {
name = "conventional-changelog-ember";
packageName = "conventional-changelog-ember";
- version = "0.3.6";
+ version = "0.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-0.3.6.tgz";
- sha512 = "24dx0snmkfhr4qi7vdq0aywjw9k23x68kaqh0gn92lca7j1268zbzr6vf00izx5g86kkjihlzgsgx8piyy1mnimn9nk7bj8pv2ka4w4";
+ url = "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-0.3.11.tgz";
+ sha512 = "1pm9wncjsfizvxzf84fp9ywdfm0znj0af0h2012ylazva8iis7zp4vph9ymrnd87kfmdv5gk2s0nsq8gqm6vxh87vbdykg640zczf0j";
};
};
- "conventional-changelog-eslint-1.0.5" = {
+ "conventional-changelog-eslint-1.0.9" = {
name = "conventional-changelog-eslint";
packageName = "conventional-changelog-eslint";
- version = "1.0.5";
+ version = "1.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-1.0.5.tgz";
- sha512 = "272hf880yc54va1r1h5zg9fk2vhfcacw7jixn3ksgaxk4nld0kdlfrpnv7b2nf682dssagbk6mdkqljgc0ldig3yqwccjqf0gx2zmgc";
+ url = "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-1.0.9.tgz";
+ sha512 = "3nl1q7m2f7yf8fr40dpns2x6n9z3n8m4kd74fxn2z4d0v0dp2si3h2xbg339984wyfa1ina5w61n6q8n1pcybwjghyxjzbnb1yygkl7";
};
};
- "conventional-changelog-express-0.3.4" = {
+ "conventional-changelog-express-0.3.6" = {
name = "conventional-changelog-express";
packageName = "conventional-changelog-express";
- version = "0.3.4";
+ version = "0.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-0.3.4.tgz";
- sha512 = "3w3pm3dqwn8bj29809j0ivybw8vn2grnz486h9bm4kk9bn4849k9pxiqmx2ifpqf09hdl17fjk1xw320zz33wnvjzx78kbrpmpi9r9k";
+ url = "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-0.3.6.tgz";
+ sha512 = "3qvnznizyjsb4nxznraiw24wydli7ky95905792az7mgm4dpc0hhxg6l9n5jlx5saglig9sm2gi3i0grqy39plvkp8ikxar2as9a9fy";
};
};
"conventional-changelog-jquery-0.1.0" = {
@@ -5486,49 +5621,49 @@ let
sha1 = "0479eb443cc7d72c58bf0bcf0ef1d444a92f0e5c";
};
};
- "conventional-changelog-jshint-0.3.4" = {
+ "conventional-changelog-jshint-0.3.8" = {
name = "conventional-changelog-jshint";
packageName = "conventional-changelog-jshint";
- version = "0.3.4";
+ version = "0.3.8";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-0.3.4.tgz";
- sha512 = "0lzbgx3x2bfchxp8p4ppjavnp4yywjks3486yrxanq3skq0x5g4wnbhcf2viwm167mhn3aiawxygsxql5ww8md1xzssdrqb730fmnh9";
+ url = "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-0.3.8.tgz";
+ sha512 = "25274wd4xzrjinpfglybkna5wm74wnfqhyll32ixz8fnq43gg50b99ip2sj17nqd5x9a5l111d0922gqv9j93q2sdwrbzs8hr9m0zw6";
};
};
- "conventional-changelog-preset-loader-1.1.6" = {
+ "conventional-changelog-preset-loader-1.1.8" = {
name = "conventional-changelog-preset-loader";
packageName = "conventional-changelog-preset-loader";
- version = "1.1.6";
+ version = "1.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-1.1.6.tgz";
- sha512 = "12qk33piqbilkyrvin1vsjzp5pcvs7sschn5jry272r1hnv3x0jrwb1dlnik8vpp3zqai6n70h4ls55q2ch5n13a6g25c1hvhzwhqy9";
+ url = "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-1.1.8.tgz";
+ sha512 = "1rl5rdcffc9nr30wxf718hl5qkcnb5hi5d85rchw48v2gyjbw371910qcd9v7pwfc9isrg1xxg8npnq2lxnv31xjp6dlqdqh4rjqj9j";
};
};
- "conventional-changelog-writer-3.0.4" = {
+ "conventional-changelog-writer-3.0.9" = {
name = "conventional-changelog-writer";
packageName = "conventional-changelog-writer";
- version = "3.0.4";
+ version = "3.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-3.0.4.tgz";
- sha512 = "1ryw2mmza9y6bk5hs2ivhvp9p5hq7hhydhis2880w41dajr193zvccwhglp7js7j435d3i2d38i5aikydqg2r4jdc7753w4d22zyiqi";
+ url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-3.0.9.tgz";
+ sha512 = "3ypk00r7ddkzx8ayyzdss65167c8h4qgn7f0m2p7zif0sw55ljpbx07zr0hmw8rkyzq0dv7ydr5l14wa60c1fkja8n19ia936rrpllz";
};
};
- "conventional-commits-filter-1.1.5" = {
+ "conventional-commits-filter-1.1.6" = {
name = "conventional-commits-filter";
packageName = "conventional-commits-filter";
- version = "1.1.5";
+ version = "1.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-1.1.5.tgz";
- sha512 = "0dw3vksvzwig2hiiw1kky2p424136r2faa941bkcdy3ljhp7mgd9i8pz3vdccw23v51z7vhh1dkw7wg363qxg9kvcxr2lgwp1cgwgcs";
+ url = "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-1.1.6.tgz";
+ sha512 = "38pzjvxmmjg6y92qyskzpxngphp9s5lxy89ldq9mwx4dcy4n8am2d57j1w4gb7h2fkggbfy5744xrj7ycz2v5afr8hj892a4jsf1h19";
};
};
- "conventional-commits-parser-2.1.5" = {
+ "conventional-commits-parser-2.1.7" = {
name = "conventional-commits-parser";
packageName = "conventional-commits-parser";
- version = "2.1.5";
+ version = "2.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-2.1.5.tgz";
- sha512 = "2nb2s8hrbv3sl19xzz9x5pqgmm4kimrsaqlzs8xa2wzr0zg68090xnlq5ifcbmcm47fg5l9m63kkri248idzrvz2y689y3jbbmhz84d";
+ url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-2.1.7.tgz";
+ sha512 = "0ahfqxbkswm1pnbj477wz7kl2588dbg8skjz7xzyykv4w2bw9aal3idvs8kjchlv140s64jcfa2clli93phw4jk85wa09q4s9sim0q6";
};
};
"conventional-recommended-bump-1.2.1" = {
@@ -5801,13 +5936,13 @@ let
sha1 = "652294c14651db28fa93bd2d5ff2983a4f08c636";
};
};
- "core-js-2.5.3" = {
+ "core-js-2.5.4" = {
name = "core-js";
packageName = "core-js";
- version = "2.5.3";
+ version = "2.5.4";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-2.5.3.tgz";
- sha1 = "8acc38345824f16d8365b7c9b4259168e8ed603e";
+ url = "https://registry.npmjs.org/core-js/-/core-js-2.5.4.tgz";
+ sha1 = "f2c8bf181f2a80b92f360121429ce63a2f0aeae0";
};
};
"core-util-is-1.0.2" = {
@@ -5990,6 +6125,15 @@ let
sha1 = "7eeeed9eddc95e22c189382e34624044a89a5a6d";
};
};
+ "crypt-0.0.2" = {
+ name = "crypt";
+ packageName = "crypt";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz";
+ sha1 = "88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b";
+ };
+ };
"crypt3-0.2.0" = {
name = "crypt3";
packageName = "crypt3";
@@ -6395,22 +6539,22 @@ let
sha512 = "2lc9p062gaa2xrf07z14xqgid3rw5fg05ak3s13g3mrr5hf8zxmdvp3lq4wggj7k5pc2c43r3d4yyy7rfrqafsdm7hfisdda4zgsi1w";
};
};
- "dat-ignore-2.0.0" = {
+ "dat-ignore-2.1.1" = {
name = "dat-ignore";
packageName = "dat-ignore";
- version = "2.0.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-ignore/-/dat-ignore-2.0.0.tgz";
- sha512 = "1s78mv3ngs1v1cgpcp97y1xmns97m2r6gjkkrksl63j5d870vpsmmrhsfm1vw4q0dz4c1yfnfcpijlgbqai9c5d2zj1lz56rih0kxk8";
+ url = "https://registry.npmjs.org/dat-ignore/-/dat-ignore-2.1.1.tgz";
+ sha512 = "3ars15n4l3fgvnzah15zpfzirg66clg2a72d2qawg340ad1f0xbahxgzfj52q3ib48s6k7m4a8zcpv5n3pq2blkm1dhpyz1s9d9y44d";
};
};
- "dat-json-1.0.1" = {
+ "dat-json-1.0.2" = {
name = "dat-json";
packageName = "dat-json";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-json/-/dat-json-1.0.1.tgz";
- sha512 = "13nn20vg6jx1h8ypazv9zn236hvv29wwq52mdbbfl77zrg8d7syni933v2mm3y1jsk25c7dc2gs1876fz0yblniryncnbjxrf0aq0nq";
+ url = "https://registry.npmjs.org/dat-json/-/dat-json-1.0.2.tgz";
+ sha512 = "0i32dn4p0dmjbljm9csnrfibnrgljbqcqkiy5n2wn0mdqpklnv6k9imrv93c0j6p5hsrpnnpjdibhw6fyf5a3183g2wxd1zw5avx6hi";
};
};
"dat-link-resolve-2.1.0" = {
@@ -6692,6 +6836,15 @@ let
sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
};
};
+ "decompress-4.2.0" = {
+ name = "decompress";
+ packageName = "decompress";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress/-/decompress-4.2.0.tgz";
+ sha1 = "7aedd85427e5a92dacfe55674a7c505e96d01f9d";
+ };
+ };
"decompress-response-3.3.0" = {
name = "decompress-response";
packageName = "decompress-response";
@@ -6701,6 +6854,42 @@ let
sha1 = "80a4dd323748384bfa248083622aedec982adff3";
};
};
+ "decompress-tar-4.1.1" = {
+ name = "decompress-tar";
+ packageName = "decompress-tar";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz";
+ sha512 = "18rwwdac0961cs2xpagx8sfqysxzcvvna1bfhjd8aamgm5k6mbcr88k0qp46z1fvypvk00sc27mv0n7885cfwi525gix96659l4rli5";
+ };
+ };
+ "decompress-tarbz2-4.1.1" = {
+ name = "decompress-tarbz2";
+ packageName = "decompress-tarbz2";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz";
+ sha512 = "3s2l466xc70zvxrwsr1xr7x5sg9g9wh2wsvk81pxmhc0m73hwhfhhn63c53n6vkv8rlxs80gscrkpk8fc2mbh3j154cvbzm6wpk3kxk";
+ };
+ };
+ "decompress-targz-4.1.1" = {
+ name = "decompress-targz";
+ packageName = "decompress-targz";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz";
+ sha512 = "3gig705jrzdsihjnfij52kj17mgsclfn5vbzswqqdjd0ac4f0dy0afds02m4zm5jacnppavhydyy0rgd99prk8hkmbcisgbfxk3agz3";
+ };
+ };
+ "decompress-unzip-4.0.1" = {
+ name = "decompress-unzip";
+ packageName = "decompress-unzip";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz";
+ sha1 = "deaaccdfd14aeaf85578f733ae8210f9b4848f69";
+ };
+ };
"decompress-zip-0.3.0" = {
name = "decompress-zip";
packageName = "decompress-zip";
@@ -6791,15 +6980,6 @@ let
sha1 = "634780f2f8656ab771af8fa8431ed1ccee55c7b0";
};
};
- "deepmerge-1.5.2" = {
- name = "deepmerge";
- packageName = "deepmerge";
- version = "1.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/deepmerge/-/deepmerge-1.5.2.tgz";
- sha512 = "2sylzgq5rwi12ac5y4fbvyyhs128zlcrp1q1i0bkp27fvlg60hr1slxzckk22x2rzgmwsqqlvzyylm9v0gwzbsbprd3c1mg78c396gp";
- };
- };
"deepmerge-2.1.0" = {
name = "deepmerge";
packageName = "deepmerge";
@@ -7196,13 +7376,13 @@ let
sha1 = "4d5afc5187edba67ec6ab0e55f6422a0e2cb7338";
};
};
- "discovery-channel-5.4.7" = {
+ "discovery-channel-5.5.1" = {
name = "discovery-channel";
packageName = "discovery-channel";
- version = "5.4.7";
+ version = "5.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/discovery-channel/-/discovery-channel-5.4.7.tgz";
- sha512 = "3c8npbdr7r6725kkj76h5zy72l3gd8ndb3dy4dwbapxapfzccl9f6iy0zdy3wxywcfb6cc64w4mf089v00rcr1aqcjdlvn483pnzs78";
+ url = "https://registry.npmjs.org/discovery-channel/-/discovery-channel-5.5.1.tgz";
+ sha512 = "2zzy8n58w43cvmnascylmw3nppynm334nsjd85w329k8461lwif8xz8b5xqhx8grhpiawhhrri9nlf08ajxriiy4sn26gila509jj8h";
};
};
"discovery-swarm-4.4.2" = {
@@ -7214,13 +7394,13 @@ let
sha1 = "5d3160a46019e50e874195765df7d601ee55a813";
};
};
- "dispensary-0.12.0" = {
+ "dispensary-0.16.0" = {
name = "dispensary";
packageName = "dispensary";
- version = "0.12.0";
+ version = "0.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dispensary/-/dispensary-0.12.0.tgz";
- sha1 = "cc491bbbfa66a57414c958c68582a4c8703ff159";
+ url = "https://registry.npmjs.org/dispensary/-/dispensary-0.16.0.tgz";
+ sha1 = "7173f2828380135e3c8eb9f61719fa038c0cd133";
};
};
"diveSync-0.3.0" = {
@@ -7241,6 +7421,15 @@ let
sha512 = "2hda8mbvxc2r10g5p9dsrjk3qdrp7gpk66ps0dikwzcdgn9bvsf8ih9k19kxw7wr299cm7hav2q6rjp5m76zyb6mb19bfa3g6zxyvmg";
};
};
+ "dns-discovery-6.1.0" = {
+ name = "dns-discovery";
+ packageName = "dns-discovery";
+ version = "6.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-discovery/-/dns-discovery-6.1.0.tgz";
+ sha512 = "2qyx3fzq9h9x0m2l5b9226hx2vxpl7w3sgh352qfpa683zmjbzsm8x984jvfmrl3yzzipwg07p6dqdcm8ba3v19x5q1sdgfdhpssp9a";
+ };
+ };
"dns-equal-1.0.0" = {
name = "dns-equal";
packageName = "dns-equal";
@@ -7268,6 +7457,15 @@ let
sha512 = "19g682cvkba33mwrism28hibd2nv9xd16k5bj807jx3ih1cc7ff9dn8chmfjnqgglzl6lq3m3jarxng9vbarccgchd0aq118d15yk6i";
};
};
+ "dns-packet-4.1.1" = {
+ name = "dns-packet";
+ packageName = "dns-packet";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-packet/-/dns-packet-4.1.1.tgz";
+ sha512 = "09adhjnzfiilwrksrckjrxcfi54gy5xgcsvkq24r98j0xh1asvl5iywj4p37s4l7drgysmdlkv95iki5c554gviaj4738fnlhgn42v3";
+ };
+ };
"dns-socket-1.6.3" = {
name = "dns-socket";
packageName = "dns-socket";
@@ -7277,6 +7475,15 @@ let
sha512 = "2g9g9jqx44qpiawlxfn1g647dqwwz2djjpy350c83d1z79d5wa21cknh1jz4wrwsjkvgn14vhmjjxqxf5n8fqq6fjyzw85aa7fk4rgy";
};
};
+ "dns-socket-3.0.0" = {
+ name = "dns-socket";
+ packageName = "dns-socket";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-socket/-/dns-socket-3.0.0.tgz";
+ sha512 = "3yrr8f842jzbhkhbi8a5pgqasyqn03n74gq9l43qmr33ih6ms57kdl5ffkb6zpaaicgj2w8w7kdx4s4xh10aw3vz3k69zh9583s8i9k";
+ };
+ };
"dns-txt-2.0.2" = {
name = "dns-txt";
packageName = "dns-txt";
@@ -7304,13 +7511,13 @@ let
sha1 = "33dc69291eac3414f84871f2d59d77b6f6948be4";
};
};
- "doctoc-1.3.0" = {
+ "doctoc-1.3.1" = {
name = "doctoc";
packageName = "doctoc";
- version = "1.3.0";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/doctoc/-/doctoc-1.3.0.tgz";
- sha1 = "7f0839851dd58c808a2cae55d9504e012d08ee30";
+ url = "https://registry.npmjs.org/doctoc/-/doctoc-1.3.1.tgz";
+ sha1 = "f012e3603e3156254c2ef22ac88c7190f55426ba";
};
};
"doctrine-2.1.0" = {
@@ -7358,13 +7565,13 @@ let
sha1 = "073c697546ce0780ce23be4a28e293e40bc30c82";
};
};
- "dom-storage-2.0.2" = {
+ "dom-storage-2.1.0" = {
name = "dom-storage";
packageName = "dom-storage";
- version = "2.0.2";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dom-storage/-/dom-storage-2.0.2.tgz";
- sha1 = "ed17cbf68abd10e0aef8182713e297c5e4b500b0";
+ url = "https://registry.npmjs.org/dom-storage/-/dom-storage-2.1.0.tgz";
+ sha512 = "3ckwbdpfa94f4kv5vav65l1qm56bg54bs2wgz9x5nx64avazbg3p07w05mjbfw066clq69vmyfg1fcph5r99i74x18l95zkcp4nk943";
};
};
"dom-walk-0.1.1" = {
@@ -7511,6 +7718,24 @@ let
sha1 = "531319715b0e81ffcc22eb28478ba27643e12c6c";
};
};
+ "download-5.0.3" = {
+ name = "download";
+ packageName = "download";
+ version = "5.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/download/-/download-5.0.3.tgz";
+ sha1 = "63537f977f99266a30eb8a2a2fbd1f20b8000f7a";
+ };
+ };
+ "download-git-repo-1.0.2" = {
+ name = "download-git-repo";
+ packageName = "download-git-repo";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/download-git-repo/-/download-git-repo-1.0.2.tgz";
+ sha512 = "21sjxnakbaz6gkw8lrk0dizw893hwawsrhaypkxph8cdf6v7gyxl8b4n82qh99v4zvzcbbxbc7ff8jzkkn91vmn0w381vzh9ypi801z";
+ };
+ };
"dreamopt-0.6.0" = {
name = "dreamopt";
packageName = "dreamopt";
@@ -7773,6 +7998,15 @@ let
sha1 = "4daa4d9db00f9819880c79fa457ae5b09a1fd389";
};
};
+ "enable-1.3.2" = {
+ name = "enable";
+ packageName = "enable";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/enable/-/enable-1.3.2.tgz";
+ sha1 = "9eba6837d16d0982b59f87d889bf754443d52931";
+ };
+ };
"encodeurl-1.0.2" = {
name = "encodeurl";
packageName = "encodeurl";
@@ -7863,6 +8097,15 @@ let
sha512 = "1qcg5b143cxb4gxa9jpj51c8q9ihwb0sscwqicgwrghmfg8y2phqjzhlaxjsrd6z8h1mpsxzy00s54w9lx6vd27f1mj9iqqk6ya4khg";
};
};
+ "engine.io-3.2.0" = {
+ name = "engine.io";
+ packageName = "engine.io";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io/-/engine.io-3.2.0.tgz";
+ sha512 = "0mizbh339hvwkla9vy96m7jg92120wqm9af12ks998hrp2a0fzr3w0gxssjwhp0s0f3kyii24z1sz2x5xq9x3qb5cjn1q2h1fcf05lr";
+ };
+ };
"engine.io-client-1.3.1" = {
name = "engine.io-client";
packageName = "engine.io-client";
@@ -7890,6 +8133,15 @@ let
sha512 = "1zfr0lycsgvwkxc8i4qhg5rjr59ss7p66nz3j1y1awmvzgy9myn0rqrpv2hrnm76qv9kmiiss0jpxaaz9xy0lkp7857npkfb6q8fyw6";
};
};
+ "engine.io-client-3.2.1" = {
+ name = "engine.io-client";
+ packageName = "engine.io-client";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz";
+ sha512 = "37x70wgsxmbz24ypn1nprgrmqrbjf5ln7xjivpw5q6rw91kj2mhjq81ai8v7zs6am25h2sajk341kid215gxrmy88iwwy2n5f9ip46b";
+ };
+ };
"engine.io-parser-1.0.6" = {
name = "engine.io-parser";
packageName = "engine.io-parser";
@@ -7926,15 +8178,6 @@ let
sha1 = "a115c32504b6302e85a76269d7a57ccdd962e359";
};
};
- "enhanced-resolve-3.4.1" = {
- name = "enhanced-resolve";
- packageName = "enhanced-resolve";
- version = "3.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz";
- sha1 = "0421e339fd71419b3da13d129b3979040230476e";
- };
- };
"enhanced-resolve-4.0.0" = {
name = "enhanced-resolve";
packageName = "enhanced-resolve";
@@ -8043,13 +8286,13 @@ let
sha1 = "eaba64ca5d542a311ac945f582defc336165d9f4";
};
};
- "es-abstract-1.10.0" = {
+ "es-abstract-1.11.0" = {
name = "es-abstract";
packageName = "es-abstract";
- version = "1.10.0";
+ version = "1.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.10.0.tgz";
- sha512 = "04nd5ylkfffc08vn5kjhz0saqh44nj19f5j3ahrrhf3zvc9da5rf6snnh63xv4gfhacjbax1jajzgqv4zpm77v806jf883a2w77zs7y";
+ url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.11.0.tgz";
+ sha512 = "2aaq6ivy5raj1a99db6gvw7qn2vs27h0pqvgpf2fqfm9avwqsirr8gs86yx7n36qysjw1vabz6mlc8dfpi6fmz9yqvk8kapz49jnx36";
};
};
"es-to-primitive-1.1.1" = {
@@ -8061,13 +8304,13 @@ let
sha1 = "45355248a88979034b6792e19bb81f2b7975dd0d";
};
};
- "es5-ext-0.10.40" = {
+ "es5-ext-0.10.42" = {
name = "es5-ext";
packageName = "es5-ext";
- version = "0.10.40";
+ version = "0.10.42";
src = fetchurl {
- url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.40.tgz";
- sha512 = "2ylf5xas3zi45vg84c8r81d1lw1d1wmckzf8pvnkwgmq6js0n5mms6lrpnmac7sbi4fv9aqlnrspz7s97vbqii3c6py7r4sikg63lab";
+ url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.42.tgz";
+ sha512 = "1412ssfrx1kvraz8kp4x9lc1jzcdh2952vbmlimrfalmbjv44rh504ihb4fg5mjwx8ix1f1wii0a0qngwrfk4gl271mcywgp7b4x700";
};
};
"es5-ext-0.8.2" = {
@@ -8277,22 +8520,22 @@ let
sha1 = "c8fc6201c7f40dd08941b87c085767386a679acc";
};
};
- "eslint-4.15.0" = {
+ "eslint-4.19.0" = {
name = "eslint";
packageName = "eslint";
- version = "4.15.0";
+ version = "4.19.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-4.15.0.tgz";
- sha512 = "3l1j4qy0gqa8rkwpdsmkkbqcmbx23ym8h64d1bbj5i5ds5ks0g91myldzp0y25r6b3ba9646hy4i2jiad2jmm8h68z89i2larkvyhyc";
+ url = "https://registry.npmjs.org/eslint/-/eslint-4.19.0.tgz";
+ sha512 = "29dc1z24n3c60hfac5afy7rk3mqdch8hnn07fnb9314dbyk5ih2l1284vl3nsgsm5ja5w144nsgmipbycva47gwpl1qfsma5gjcpkdg";
};
};
- "eslint-4.18.2" = {
+ "eslint-4.19.1" = {
name = "eslint";
packageName = "eslint";
- version = "4.18.2";
+ version = "4.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-4.18.2.tgz";
- sha512 = "0mqvxkfl52068bfkpxjn14dgwfv4vv8w0a8pq2rw54bkbshfa2y6rpx122ssk3si3dy9298g68079ns1n7m0jrzgwca7a430ggj4bmb";
+ url = "https://registry.npmjs.org/eslint/-/eslint-4.19.1.tgz";
+ sha512 = "0hw70vjlg6z0y9kf6vjr7g0w9hbm426fwvyzr88l62c5hd9mxrbw5v34b6zb31vbbyda3mkvcwgfnxgqaxvpn0wlrxr0va43pbzygbd";
};
};
"eslint-plugin-no-unsafe-innerhtml-1.0.16" = {
@@ -8376,13 +8619,13 @@ let
sha1 = "633acdb40d9bd4db8a1c1d68c06a942959fad2b0";
};
};
- "esquery-1.0.0" = {
+ "esquery-1.0.1" = {
name = "esquery";
packageName = "esquery";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/esquery/-/esquery-1.0.0.tgz";
- sha1 = "cfba8b57d7fba93f17298a8a006a04cda13d80fa";
+ url = "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz";
+ sha512 = "0s9lxfan3qbvpprj71ldy70x9sz4xkpakhr3pymkm13bx40px4kp4xcgipscn8m21qigddin5mkr52bicbm34g46dapyn68kikv4s2a";
};
};
"esrecurse-4.2.1" = {
@@ -8471,7 +8714,7 @@ let
packageName = "event-stream";
version = "0.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/event-stream/-/event-stream-0.5.3.tgz";
+ url = "http://registry.npmjs.org/event-stream/-/event-stream-0.5.3.tgz";
sha1 = "b77b9309f7107addfeab63f0c0eafd8db0bd8c1c";
};
};
@@ -8480,7 +8723,7 @@ let
packageName = "event-stream";
version = "3.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/event-stream/-/event-stream-3.1.5.tgz";
+ url = "http://registry.npmjs.org/event-stream/-/event-stream-3.1.5.tgz";
sha1 = "6cba5a3ae02a7e4967d65ad04ef12502a2fff66c";
};
};
@@ -8489,7 +8732,7 @@ let
packageName = "event-stream";
version = "3.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/event-stream/-/event-stream-3.2.2.tgz";
+ url = "http://registry.npmjs.org/event-stream/-/event-stream-3.2.2.tgz";
sha1 = "f79f9984c07ee3fd9b44ffb3cd0422b13e24084d";
};
};
@@ -8498,7 +8741,7 @@ let
packageName = "event-stream";
version = "3.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz";
+ url = "http://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz";
sha1 = "4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571";
};
};
@@ -8925,13 +9168,13 @@ let
sha1 = "12d7b0db850f7ff7e7081baf4005700060c4600b";
};
};
- "external-editor-2.1.0" = {
+ "external-editor-2.2.0" = {
name = "external-editor";
packageName = "external-editor";
- version = "2.1.0";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/external-editor/-/external-editor-2.1.0.tgz";
- sha512 = "366albydy3glqs8h6y7rdpdhmyffn7vaig5snw8cb1zmn22mgvfywr08jfbmqjiqc9pyjyaaqv6xz5sfy2j1y18590l4f8mji7j53hk";
+ url = "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz";
+ sha512 = "3sf897ajmkcp0j6rgd0jy6k95s9ck3j305yrr00kmckl8qdhswhbdd5g4m2fai03x8phs1vw2ahf9v7ym5ji4zfxydxyamiy61glabd";
};
};
"extglob-0.3.2" = {
@@ -8961,15 +9204,6 @@ let
sha1 = "5abbedc98c0d5202e3278727f9192d7e086c6be1";
};
};
- "extract-text-webpack-plugin-3.0.2" = {
- name = "extract-text-webpack-plugin";
- packageName = "extract-text-webpack-plugin";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/extract-text-webpack-plugin/-/extract-text-webpack-plugin-3.0.2.tgz";
- sha512 = "10rc4hfyzf8n5b30q0fpawnbnr1cs33mmrz9466hhcxjzlz7ys44zbsr5kbvr1jn5nivcr91nmfhpq2mqi1wxmr19zsnimri5kwppvf";
- };
- };
"extract-zip-1.5.0" = {
name = "extract-zip";
packageName = "extract-zip";
@@ -9240,6 +9474,33 @@ let
sha1 = "c392990c3e684783d838b8c84a45d8a048458361";
};
};
+ "file-type-3.9.0" = {
+ name = "file-type";
+ packageName = "file-type";
+ version = "3.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz";
+ sha1 = "257a078384d1db8087bc449d107d52a52672b9e9";
+ };
+ };
+ "file-type-5.2.0" = {
+ name = "file-type";
+ packageName = "file-type";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz";
+ sha1 = "2ddbea7c73ffe36368dfae49dc338c058c2b8ad6";
+ };
+ };
+ "file-type-6.2.0" = {
+ name = "file-type";
+ packageName = "file-type";
+ version = "6.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz";
+ sha512 = "0xf8ry7jj1c5mvvp5qxidq3qcqxzdngx1q9r981ddq3wfcidwqd4h52hplv462hvm9frdl086advhfqfxbnvwm8ass3knby6l217xv0";
+ };
+ };
"file-uri-to-path-1.0.0" = {
name = "file-uri-to-path";
packageName = "file-uri-to-path";
@@ -9258,6 +9519,24 @@ let
sha1 = "c1c4b9bee3e09725ddb106b75c1e301fe2f18b26";
};
};
+ "filename-reserved-regex-2.0.0" = {
+ name = "filename-reserved-regex";
+ packageName = "filename-reserved-regex";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz";
+ sha1 = "abf73dfab735d045440abfea2d91f389ebbfa229";
+ };
+ };
+ "filenamify-2.0.0" = {
+ name = "filenamify";
+ packageName = "filenamify";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/filenamify/-/filenamify-2.0.0.tgz";
+ sha1 = "bd162262c0b6e94bfbcdcf19a3bbb3764f785695";
+ };
+ };
"filesize-3.6.0" = {
name = "filesize";
packageName = "filesize";
@@ -9465,15 +9744,6 @@ let
sha1 = "b37dc844b76a2f5e7081e884f7c0ae344f153476";
};
};
- "firefox-client-0.3.0" = {
- name = "firefox-client";
- packageName = "firefox-client";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/firefox-client/-/firefox-client-0.3.0.tgz";
- sha1 = "3794460f6eb6afcf41376addcbc7462e24a4cd8b";
- };
- };
"firefox-profile-1.1.0" = {
name = "firefox-profile";
packageName = "firefox-profile";
@@ -9573,15 +9843,6 @@ let
sha1 = "554440766da0a0d603999f433453f6c2fc6a75c1";
};
};
- "fluent-0.4.1" = {
- name = "fluent";
- packageName = "fluent";
- version = "0.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/fluent/-/fluent-0.4.1.tgz";
- sha512 = "2hrbkg2399py60vsz1k5xydrm5kwfh1f6fpgpbkrs9nni1xpq4isy8aif5jq5dakyksbf0yjx3sh7jl9f54c3r6jkf3amm3grxlbaxx";
- };
- };
"fluent-ffmpeg-2.1.2" = {
name = "fluent-ffmpeg";
packageName = "fluent-ffmpeg";
@@ -9591,13 +9852,22 @@ let
sha1 = "c952de2240f812ebda0aa8006d7776ee2acf7d74";
};
};
- "flush-write-stream-1.0.2" = {
+ "fluent-syntax-0.6.6" = {
+ name = "fluent-syntax";
+ packageName = "fluent-syntax";
+ version = "0.6.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fluent-syntax/-/fluent-syntax-0.6.6.tgz";
+ sha512 = "18dv619kjzc3fdahfc242r7lb27a3pjxx5xd8shascb9xb8c1zncsrbnj0an8qjsg1pwf0az7h7gv5v0g50b3pixznr7wk7d8yqfazj";
+ };
+ };
+ "flush-write-stream-1.0.3" = {
name = "flush-write-stream";
packageName = "flush-write-stream";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.2.tgz";
- sha1 = "c81b90d8746766f1a609a46809946c45dd8ae417";
+ url = "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.3.tgz";
+ sha512 = "0dycj5bh8djmx4lj5llrbg3cg0ynq32qn8pzk8zl9j8pm6nv5n1qzk4m7dq81q96ygzh8jl9chqh8826rrbl8maa9643fvl5lq5kabi";
};
};
"follow-redirects-0.0.3" = {
@@ -9807,13 +10077,13 @@ let
sha1 = "ef5491490f9433b705faa77249c99029ae348559";
};
};
- "formidable-1.2.0" = {
+ "formidable-1.2.1" = {
name = "formidable";
packageName = "formidable";
- version = "1.2.0";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/formidable/-/formidable-1.2.0.tgz";
- sha512 = "00p3bjjkrbwf4xcizvkz2bdc1h0cs8gnshfwn35ncx0zs5qy8pzgc65xg6ndma0mlfy69v5r0cg3zj8x6j6jdn4gzj2w0ibgm7mmgw6";
+ url = "https://registry.npmjs.org/formidable/-/formidable-1.2.1.tgz";
+ sha512 = "1x0n2rfaiasdjbw1mm7s29z84f68c7iji7lb1gkxvpknvv6q7bwns7z55ijcf4vkh4kvis12rbgaaih49jf9lj53s30mllb1d35bkqn";
};
};
"forwarded-0.1.2" = {
@@ -10266,6 +10536,15 @@ let
sha1 = "dd7ce7de187c06c8bf353796ac71e099f0980ebc";
};
};
+ "get-proxy-2.1.0" = {
+ name = "get-proxy";
+ packageName = "get-proxy";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz";
+ sha512 = "0kjf4p1krvzah7k5yngvvc39b7jnkzqlp3cdab8451zh1q4mxmav111dmycnadv28ja2wvcwvavjl7w550ja7qyw4dx976n0illhrnf";
+ };
+ };
"get-stdin-4.0.1" = {
name = "get-stdin";
packageName = "get-stdin";
@@ -10284,6 +10563,15 @@ let
sha1 = "122e161591e21ff4c52530305693f20e6393a398";
};
};
+ "get-stream-2.3.1" = {
+ name = "get-stream";
+ packageName = "get-stream";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz";
+ sha1 = "5f38f93f346009666ee0150a054167f91bdd95de";
+ };
+ };
"get-stream-3.0.0" = {
name = "get-stream";
packageName = "get-stream";
@@ -10311,13 +10599,13 @@ let
sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
};
};
- "getmac-1.2.1" = {
+ "getmac-1.4.1" = {
name = "getmac";
packageName = "getmac";
- version = "1.2.1";
+ version = "1.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/getmac/-/getmac-1.2.1.tgz";
- sha1 = "0d095fd0627850043eac1dcfa0b120bbdc1426d1";
+ url = "https://registry.npmjs.org/getmac/-/getmac-1.4.1.tgz";
+ sha512 = "0r7zqgvfiv3r6zy8fms9gdcf3a1r46kpf8pm5x7vwrc27vgv69ra244s89k73hb9rna6r3s9v20yzbwjmz2c13gh3s0bbd07zq7w2lr";
};
};
"getpass-0.1.7" = {
@@ -10338,13 +10626,22 @@ let
sha1 = "2c5a6638d893934b9b55037d0ad82cb7004b2679";
};
};
- "git-raw-commits-1.3.4" = {
+ "git-clone-0.1.0" = {
+ name = "git-clone";
+ packageName = "git-clone";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/git-clone/-/git-clone-0.1.0.tgz";
+ sha1 = "0d76163778093aef7f1c30238f2a9ef3f07a2eb9";
+ };
+ };
+ "git-raw-commits-1.3.6" = {
name = "git-raw-commits";
packageName = "git-raw-commits";
- version = "1.3.4";
+ version = "1.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-1.3.4.tgz";
- sha512 = "0yfkxk071bahnzw2h5ip6qb7mq76psfwiqs232gkzr91hc55kqw57pjn33j04h3xiwvgrikl20mbccisi006rxyh0lwfvj7bkivwwqv";
+ url = "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-1.3.6.tgz";
+ sha512 = "111718czypc8jr47xq3n5xvfwx6nib7y36bpb882id57sdhv49bfpdmkgxbrb524942rw3k6wq15128mlv4q8fbkh5g3wjhmgdhmyxj";
};
};
"git-remote-origin-url-2.0.0" = {
@@ -10365,13 +10662,13 @@ let
sha1 = "a0c2e3dd392abcf6b76962e27fc75fb3223449ce";
};
};
- "git-semver-tags-1.3.4" = {
+ "git-semver-tags-1.3.6" = {
name = "git-semver-tags";
packageName = "git-semver-tags";
- version = "1.3.4";
+ version = "1.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-1.3.4.tgz";
- sha512 = "0hhdj4992a96ys5i9k6pjbn99wwsabb92drxr0s7vzxyxlpydrvjzbb4rwdnsd0rm7h92420yr2f3khpakkp6ivgg09fp9hhgprkvax";
+ url = "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-1.3.6.tgz";
+ sha512 = "25114wyd4p8qn681l730d9s1wgh4kmvizin5361hx5qvpd82adi2fkjkvv289nk1vb6hx8q13ikhyc705hw8iag1b23zq37g4kfacfs";
};
};
"gitconfiglocal-1.0.0" = {
@@ -10636,13 +10933,13 @@ let
sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe";
};
};
- "globals-11.3.0" = {
+ "globals-11.4.0" = {
name = "globals";
packageName = "globals";
- version = "11.3.0";
+ version = "11.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/globals/-/globals-11.3.0.tgz";
- sha512 = "1vlgbj6gcsd9dshs7xldhg92zd62r3w51jf9x80qnn0y4llbl2ji5sl7ibmv7ysr0iv8hzid151n8zxhyi84rlnczysjhb6v4l5qjlj";
+ url = "https://registry.npmjs.org/globals/-/globals-11.4.0.tgz";
+ sha512 = "0fgjya5jfxjd8gzgpnpig973bbplfq2i5fkfpi5lxyjsi3988wq3by19ka2ql2j4a80l9bk5g5brq4vvd2hr61ak79pzwm5z24ycb0g";
};
};
"globals-9.18.0" = {
@@ -10798,6 +11095,15 @@ let
sha512 = "0w1lx3hms5mx84mlxsgpvjr42qba17wwqhma0np67c9l8smkd2nwx7gr8724a2q1z7x0hjdjnwzx81893mj2ax498wl7y1h4yl5pysy";
};
};
+ "gray-matter-2.1.1" = {
+ name = "gray-matter";
+ packageName = "gray-matter";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz";
+ sha1 = "3042d9adec2a1ded6a7707a9ed2380f8a17a430e";
+ };
+ };
"grouped-queue-0.3.3" = {
name = "grouped-queue";
packageName = "grouped-queue";
@@ -11050,6 +11356,15 @@ let
sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd";
};
};
+ "has-generators-1.0.1" = {
+ name = "has-generators";
+ packageName = "has-generators";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-generators/-/has-generators-1.0.1.tgz";
+ sha1 = "a6a2e55486011940482e13e2c93791c449acf449";
+ };
+ };
"has-gulplog-0.1.0" = {
name = "has-gulplog";
packageName = "has-gulplog";
@@ -11491,6 +11806,15 @@ let
sha1 = "0a002cc85707192a7e7946ceedc11155f60ec736";
};
};
+ "http-errors-1.6.3" = {
+ name = "http-errors";
+ packageName = "http-errors";
+ version = "1.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz";
+ sha1 = "8b55680bb4be283a0b5bf4ea2e38580be1d9320d";
+ };
+ };
"http-headers-3.0.2" = {
name = "http-headers";
packageName = "http-headers";
@@ -11644,13 +11968,13 @@ let
sha1 = "35f7da6c48ce4ddbfa264891ac593ee5ff8671e6";
};
};
- "https-proxy-agent-2.2.0" = {
+ "https-proxy-agent-2.2.1" = {
name = "https-proxy-agent";
packageName = "https-proxy-agent";
- version = "2.2.0";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.0.tgz";
- sha512 = "2ybiwjzy908vjwlhg0cfi00ylv35l1kkldn3l69j8hvng0wn7l6193054hy2zw7a69r8xgn5n6w0fx3h2pajnyggiqggjzgf5yrqidr";
+ url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz";
+ sha512 = "2arj581rpjpgky9cr5hh3asan2mh7825rwxy63mp02amw9w6vsi59bay0dwp72md28mmzrmahxc909v1r1ca6y6r3f5dryna95r7w0w";
};
};
"humanize-0.0.9" = {
@@ -11671,31 +11995,31 @@ let
sha1 = "a65b34459ad6367adbb3707a82a3c9f916167030";
};
};
- "humanize-string-1.0.1" = {
+ "humanize-string-1.0.2" = {
name = "humanize-string";
packageName = "humanize-string";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/humanize-string/-/humanize-string-1.0.1.tgz";
- sha1 = "fce2d6c545efc25dea1f23235182c98da0180b42";
+ url = "https://registry.npmjs.org/humanize-string/-/humanize-string-1.0.2.tgz";
+ sha512 = "3bml62y8rmpga8wbcxfqm6izvc9xxlblx0vc08r778qa42jgw6fjif4i7f9bj2y98bz4xyimg5vfgch92j6i2l7zcwiq5za8l34cziw";
};
};
- "hypercore-6.12.3" = {
+ "hypercore-6.12.7" = {
name = "hypercore";
packageName = "hypercore";
- version = "6.12.3";
+ version = "6.12.7";
src = fetchurl {
- url = "https://registry.npmjs.org/hypercore/-/hypercore-6.12.3.tgz";
- sha512 = "0gxq17xmp2926g01dram5fdny52r40lvvanf83d35vvrhsck95zx2ymrhn6hv81hp8wvlwlqs84zbz35xp6d0nf3396pa0kra44ma4k";
+ url = "https://registry.npmjs.org/hypercore/-/hypercore-6.12.7.tgz";
+ sha512 = "28wgk53py46wrcp8h8xkirakbc3v64r1aaqnl0g0ivp9x7791wkga63mbjl0cdsa3yif0cvbp8djwcpzx0smfyyqkdz7skjdgsbg57j";
};
};
- "hypercore-protocol-6.6.0" = {
+ "hypercore-protocol-6.6.4" = {
name = "hypercore-protocol";
packageName = "hypercore-protocol";
- version = "6.6.0";
+ version = "6.6.4";
src = fetchurl {
- url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.6.0.tgz";
- sha512 = "3kwmsg8vfza3i9nbx84v43sh4gi5bjpmj7mn15xyvxg30k0074yvgpng16g8310r88dsk055awlj9zf5zpsk1r0zy61890k9y7bpppg";
+ url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.6.4.tgz";
+ sha512 = "0rxj8d4lp45q7v3wwwv23m7qi84vw3wvyafqiy9x5f9lqkynq8v8yajpq9bcnc935927qjnxajn8n0cyhg0fqjnpywlfyxgxczkndgm";
};
};
"hyperdrive-9.12.3" = {
@@ -11797,6 +12121,15 @@ let
sha1 = "c6019a7595f2cefca702eab694a010bcd9298d20";
};
};
+ "ieee754-1.1.11" = {
+ name = "ieee754";
+ packageName = "ieee754";
+ version = "1.1.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.11.tgz";
+ sha512 = "0g5x1ijy37vzfz46pnh03mxkmdb9d2qd9f8ncy49xj4j9xkks9p0x8s5hnyc7grwh6sryk118rd7w7wz6w0hzyw9agwnavvlc4g642n";
+ };
+ };
"ieee754-1.1.8" = {
name = "ieee754";
packageName = "ieee754";
@@ -12103,13 +12436,13 @@ let
sha512 = "1wsmzzva3rfjb4bfks7ba2nvha9ziwgq2kag6xxibc5cc6mz19xbgj4fm3a7ghvfbfx4am0x13ibc8j2s5m3sv12nph44rq56gnvv47";
};
};
- "insert-module-globals-7.0.2" = {
+ "insert-module-globals-7.0.5" = {
name = "insert-module-globals";
packageName = "insert-module-globals";
- version = "7.0.2";
+ version = "7.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.0.2.tgz";
- sha512 = "19lb0lqjmyxr13va9m2mdyjmpfb2c4lgnnnwysri85znpa37gcgi6b57zj0h5ymk6fbl3snjfw07gb9azb8yvkldj6av6wdvs1knyx7";
+ url = "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.0.5.tgz";
+ sha512 = "3fk0jxs2s9i64hqs1y6ncl81nddpb2kr58myi8805mg9j3xgmn5svxmk8xwvm2358snahh9r0k1zmpv6512sq383zp4m6sc5an6s162";
};
};
"insight-0.8.4" = {
@@ -12166,13 +12499,13 @@ let
sha1 = "96fb0a936c12babd6ff1752a17d05616abd094c6";
};
};
- "invariant-2.2.3" = {
+ "invariant-2.2.4" = {
name = "invariant";
packageName = "invariant";
- version = "2.2.3";
+ version = "2.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/invariant/-/invariant-2.2.3.tgz";
- sha512 = "2s1gvqa56gnq2pkh0yy5ch3pb69dkwxr6myw9r3cc1c55xnrpiwzgc90ns4n9lij9slw0aayzm95k3x3rfrv0m7dnikq39hx0ylz7pd";
+ url = "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz";
+ sha512 = "0sa0bflh46zr7zqdifqk3a48bmqlmpikrnmwvgz8nx6979piw2m92qrn1g5xnpjzxn864y2jq3gl84jkws2dad3mlwr6s3fa10my4m6";
};
};
"invert-kv-1.0.0" = {
@@ -12598,6 +12931,15 @@ let
sha1 = "0dfd98f5a9111716dd535dda6492f67bf3d25a80";
};
};
+ "is-mergeable-object-1.1.0" = {
+ name = "is-mergeable-object";
+ packageName = "is-mergeable-object";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-mergeable-object/-/is-mergeable-object-1.1.0.tgz";
+ sha512 = "03srgd19nl1p2b2ny8gamq5qvv4k124inq5fzkb1kqxdw9y45fr46g8awmpnx0hgwpfg0blysfms7r8n89sf5183hr2xd8x0l7q7z15";
+ };
+ };
"is-my-ip-valid-1.0.0" = {
name = "is-my-ip-valid";
packageName = "is-my-ip-valid";
@@ -12616,6 +12958,15 @@ let
sha512 = "29bla4943cs5dks8f307ykpgk5gihgjy158h8nspcxia85gb1lwaxpqywisr7621spdp8j5p4vd3zhfl2csdlihy06w9017b2r42610";
};
};
+ "is-natural-number-4.0.1" = {
+ name = "is-natural-number";
+ packageName = "is-natural-number";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz";
+ sha1 = "ab9d76e1db4ced51e35de0c72ebecf09f734cde8";
+ };
+ };
"is-negated-glob-1.0.0" = {
name = "is-negated-glob";
packageName = "is-negated-glob";
@@ -12706,13 +13057,13 @@ let
sha1 = "d225ec23132e89edd38fda767472e62e65f1106d";
};
};
- "is-path-in-cwd-1.0.0" = {
+ "is-path-in-cwd-1.0.1" = {
name = "is-path-in-cwd";
packageName = "is-path-in-cwd";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz";
- sha1 = "6477582b8214d602346094567003be8a9eac04dc";
+ url = "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz";
+ sha512 = "1lrmbdvciajn2smq4j80qvp3gpkkzqddiyay3xgbzni3gi4vljkawyyw68i6h8m1jfdg4jy8l8c16rlfvr17pnfb314xw5q6m2pad8n";
};
};
"is-path-inside-1.0.1" = {
@@ -12904,13 +13255,13 @@ let
sha1 = "8a59117d932de1de00f245fcdd39ce43f1e939a6";
};
};
- "is-supported-regexp-flag-1.0.0" = {
+ "is-supported-regexp-flag-1.0.1" = {
name = "is-supported-regexp-flag";
packageName = "is-supported-regexp-flag";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.0.tgz";
- sha1 = "8b520c85fae7a253382d4b02652e045576e13bb8";
+ url = "https://registry.npmjs.org/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.1.tgz";
+ sha512 = "0lrp2yp3bjcq9v1sxn5451bmmnj129aws8g0ym3a2s4wkc2y6ym591pym51dgs2xg7cpid087hvmnvqjr36pp6gm419ibhlqmwhkxyy";
};
};
"is-symbol-1.0.1" = {
@@ -12958,13 +13309,13 @@ let
sha512 = "2asak63h3kc1vackrpai7qfiv15ndr231w1yc753m1dy7fd6ywxsr0rvh88b9ppyxhmc373fqk89a0pw3dllv7m5nbbbcqzvmaskccs";
};
};
- "is-url-1.2.2" = {
+ "is-url-1.2.4" = {
name = "is-url";
packageName = "is-url";
- version = "1.2.2";
+ version = "1.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/is-url/-/is-url-1.2.2.tgz";
- sha1 = "498905a593bf47cc2d9e7f738372bbf7696c7f26";
+ url = "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz";
+ sha512 = "31qfylxnpb1y8vczgi2nh57ayl7s5ppn8iskp21607l6ka7jxq409pf2mvspwnx6pj29b63ldayjgljsbhyc442gfc1i185dy5ccfr1";
};
};
"is-utf8-0.2.1" = {
@@ -13039,6 +13390,15 @@ let
sha1 = "a37d94ed9cda2d59865c9f76fe596ee1f338741e";
};
};
+ "isarray-2.0.4" = {
+ name = "isarray";
+ packageName = "isarray";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isarray/-/isarray-2.0.4.tgz";
+ sha512 = "1l996rw6ql1ypf4jvy0yhl3d08zislzsxc0lgbc4hh3kb4qzlxqv29d9nblq9ai6lkiwvxfgynknk8j6j9qm49jqlsnib924lx5gk0q";
+ };
+ };
"isbinaryfile-3.0.2" = {
name = "isbinaryfile";
packageName = "isbinaryfile";
@@ -13345,15 +13705,6 @@ let
sha1 = "1e60b0fef1bc0af67bc0d146dfdde5486cd615b4";
};
};
- "json-loader-0.5.7" = {
- name = "json-loader";
- packageName = "json-loader";
- version = "0.5.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz";
- sha512 = "3iwy9jwca9hg6h1k7cmcdlsygn2qzjv7w72fsrfjfpdrcyd4xc5fb11sf664rvnzrfmz24f19kvi3qawif4n63lggvpg5pv73qfrcs0";
- };
- };
"json-merge-patch-0.2.3" = {
name = "json-merge-patch";
packageName = "json-merge-patch";
@@ -13363,13 +13714,13 @@ let
sha1 = "fa2c6b5af87da77bae2966a589d52e23ed81fe40";
};
};
- "json-parse-better-errors-1.0.1" = {
+ "json-parse-better-errors-1.0.2" = {
name = "json-parse-better-errors";
packageName = "json-parse-better-errors";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz";
- sha512 = "05ndp7b03ikx2vqivfxlm6c73yagjyrdp22ay8z592pqxldbsm7hjzpa3asal2vys99lvirqar3ly3sb1ibhhngls4sqc4nwp2jj967";
+ url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz";
+ sha512 = "2pv1kaf7gjr0bhr2djaf1i88li7q3v5daz4zm4hz57i4h21jgryihxb5c2h0p0q1vrq1ffyg279hp0vjrg73shvxr5lir6plxjb5fls";
};
};
"json-parse-helpfulerror-1.0.3" = {
@@ -13976,22 +14327,22 @@ let
sha512 = "2qh1bqb9lj7l92pwcrwmpcanbyn65rmni3swyv6hrphn7xbaw8mkir3w67sf4ardk1iqvz9waalq2wf2rgpvvblhva2n2hssq6as6yr";
};
};
- "kuduscript-1.0.15" = {
+ "kuduscript-1.0.16" = {
name = "kuduscript";
packageName = "kuduscript";
- version = "1.0.15";
+ version = "1.0.16";
src = fetchurl {
- url = "https://registry.npmjs.org/kuduscript/-/kuduscript-1.0.15.tgz";
- sha1 = "2721f05aa6876534cd30d6ded9418651cadfaa21";
+ url = "https://registry.npmjs.org/kuduscript/-/kuduscript-1.0.16.tgz";
+ sha512 = "2pws4jvqqdysxbqb5bw1m67wklk7lrxl293q5w9cd58drz6jzs4qzgiy6gg7dzx9m2pgn9kqxns8pw445d68ncqk2nxpdcimnnsbszv";
};
};
- "labeled-stream-splicer-2.0.0" = {
+ "labeled-stream-splicer-2.0.1" = {
name = "labeled-stream-splicer";
packageName = "labeled-stream-splicer";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz";
- sha1 = "a52e1d138024c00b86b1c0c91f677918b8ae0a59";
+ url = "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.1.tgz";
+ sha512 = "0z3ssjaq1bx4j1dcysbbmsnq24zglv2gdsm3by6dr34w10jrlg06rrh3l7qa8a3ch7ag9gmkjfrw6m448sra299gz5rvg2ifsc7hbrh";
};
};
"last-one-wins-1.0.4" = {
@@ -14678,15 +15029,6 @@ let
sha1 = "bec1024f85b1bd96cbea405b23c14ad6443a6f81";
};
};
- "lodash.endswith-4.2.1" = {
- name = "lodash.endswith";
- packageName = "lodash.endswith";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.endswith/-/lodash.endswith-4.2.1.tgz";
- sha1 = "fed59ac1738ed3e236edd7064ec456448b37bc09";
- };
- };
"lodash.escape-3.2.0" = {
name = "lodash.escape";
packageName = "lodash.escape";
@@ -14795,15 +15137,6 @@ let
sha1 = "415c4478f2bcc30120c22ce10ed3226f7d3e18e0";
};
};
- "lodash.isfunction-3.0.9" = {
- name = "lodash.isfunction";
- packageName = "lodash.isfunction";
- version = "3.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz";
- sha512 = "0ki8njk33gc8ayf2vmnx2jrfdapwckm7dx2z4zn1ik07hwgwx5zb3fsi9mlamhg6rnj1qlvfwsbg2074x19x8gq60615fbr7lvdfah2";
- };
- };
"lodash.isplainobject-4.0.6" = {
name = "lodash.isplainobject";
packageName = "lodash.isplainobject";
@@ -14957,15 +15290,6 @@ let
sha1 = "edd14c824e2cc9c1e0b0a1b42bb5210516a42438";
};
};
- "lodash.startswith-4.2.1" = {
- name = "lodash.startswith";
- packageName = "lodash.startswith";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.startswith/-/lodash.startswith-4.2.1.tgz";
- sha1 = "c598c4adce188a27e53145731cdc6c0e7177600c";
- };
- };
"lodash.template-3.6.2" = {
name = "lodash.template";
packageName = "lodash.template";
@@ -15182,6 +15506,15 @@ let
sha1 = "4e3366b39e7f5457e35f1324bdf6f88d0bfc7306";
};
};
+ "lowercase-keys-1.0.1" = {
+ name = "lowercase-keys";
+ packageName = "lowercase-keys";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz";
+ sha512 = "1a7qa1zn5zl1nf7i6w3299lc3biabfb0w2c30cl770l2dbldvi72nwvjdlinhx7j0ldip82sj710aprdjbmbg782i2pa3jpbgmy6qhv";
+ };
+ };
"lru-2.0.1" = {
name = "lru";
packageName = "lru";
@@ -15254,15 +15587,6 @@ let
sha512 = "1whynbvy3pbwcpkxk6rqhsymj2h3bh7p13nfhs9ch6hfx96vrh86j7vd4lqcaqjy5dhsfjps6sh2wqndh269wjz42khbh6339g9a1y2";
};
};
- "lsmod-1.0.0" = {
- name = "lsmod";
- packageName = "lsmod";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lsmod/-/lsmod-1.0.0.tgz";
- sha1 = "9a00f76dca36eb23fa05350afe1b585d4299e64b";
- };
- };
"ltgt-1.0.2" = {
name = "ltgt";
packageName = "ltgt";
@@ -15524,13 +15848,13 @@ let
sha1 = "0e2cba81390b0549a9153ec3b0d915b61c164be7";
};
};
- "marked-0.3.17" = {
+ "marked-0.3.19" = {
name = "marked";
packageName = "marked";
- version = "0.3.17";
+ version = "0.3.19";
src = fetchurl {
- url = "https://registry.npmjs.org/marked/-/marked-0.3.17.tgz";
- sha512 = "2cw4hwy4hyxspppby5ww0sljhyg0nhlgy0aamqvf7nrhg4vyrgyp8ah52pz99rr8pvsjk3h9z9q8fhrlqaixw5kgk2si5yrr0v9n0pq";
+ url = "https://registry.npmjs.org/marked/-/marked-0.3.19.tgz";
+ sha512 = "2940np3jq9midbdw8mhfry1msy3572i2gj0y3z9c8z1dyrdhxg1rivcxhgihpqs6gihqnzgdhbgmgsabm2ch7gzbvf16dxacccrxbbr";
};
};
"matcher-collection-1.0.5" = {
@@ -15542,6 +15866,15 @@ let
sha512 = "1hfvbsx85xqrw6g0k7rkqwngl8b2nwj92ax10ilx3b4lma2mcp8q6zpvam1sffgqsssa9d13cj7prrzg5c00mf0c8q92w59m36ach4x";
};
};
+ "md5-2.2.1" = {
+ name = "md5";
+ packageName = "md5";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz";
+ sha1 = "53ab38d5fe3c8891ba465329ea23fac0540126f9";
+ };
+ };
"md5.js-1.3.4" = {
name = "md5.js";
packageName = "md5.js";
@@ -15740,6 +16073,15 @@ let
sha1 = "401fdec7ec21cdb9e03cd3d3021398da21b27085";
};
};
+ "metalsmith-2.3.0" = {
+ name = "metalsmith";
+ packageName = "metalsmith";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/metalsmith/-/metalsmith-2.3.0.tgz";
+ sha1 = "833afbb5a2a6385e2d9ae3d935e39e33eaea5231";
+ };
+ };
"method-override-2.3.10" = {
name = "method-override";
packageName = "method-override";
@@ -15821,13 +16163,13 @@ let
sha1 = "86677c97d1720b363431d04d0d15293bd38c1565";
};
};
- "micromatch-3.1.9" = {
+ "micromatch-3.1.10" = {
name = "micromatch";
packageName = "micromatch";
- version = "3.1.9";
+ version = "3.1.10";
src = fetchurl {
- url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.9.tgz";
- sha512 = "3vfciram7xbwcwvhii8960vnvf3jczn092sfbfgx1vivk3scvkm9znjnbq2ppywg9h8i86d8vq3ha4c9a3jllaian0gcl7rrgm36lja";
+ url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz";
+ sha512 = "1r9rsac8gdslsplya0cnzyk6q0bh7m0wnxccdisacr5327k5k0v6f48dzp0022z8qqpzpvxw7sv1gzhvrqn6v5sz7qcvx37by1a8s1i";
};
};
"miller-rabin-4.0.1" = {
@@ -16091,13 +16433,13 @@ let
sha512 = "1slngp5z9rczjirv9lpdwiv1ap4xmp28jxl4r0i5hpds1khlm89qp70ziz8k5h2vwjph6srjqi3gb2yrwwsnnwli6p8yxvlyx7nn80p";
};
};
- "minipass-2.2.1" = {
+ "minipass-2.2.4" = {
name = "minipass";
packageName = "minipass";
- version = "2.2.1";
+ version = "2.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/minipass/-/minipass-2.2.1.tgz";
- sha512 = "3yy9s65iwrx5hndcqbxrks88xi9cf8hra6zalgf8xfr4ahpp31s0i8lv6jpyb42p0y7z55ac3390sbqxcgcvan3xls449agbjb98mmv";
+ url = "https://registry.npmjs.org/minipass/-/minipass-2.2.4.tgz";
+ sha512 = "3r74gps1yd2fabj46qd42hknvpkg4aqwg3cdz8xjn8aqww0rsk3nmbgh8p2h0rkjlpxihg1wnpfa4bmpgmnydlbhpb1rz5dcxcwhdc7";
};
};
"minizlib-1.1.0" = {
@@ -16217,13 +16559,13 @@ let
sha1 = "f1fa58899f3f452d788f1573401212a4ef898de5";
};
};
- "modify-values-1.0.0" = {
+ "modify-values-1.0.1" = {
name = "modify-values";
packageName = "modify-values";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/modify-values/-/modify-values-1.0.0.tgz";
- sha1 = "e2b6cdeb9ce19f99317a53722f3dbf5df5eaaab2";
+ url = "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz";
+ sha512 = "15hcc3355684n37j7979fs72xj57d71cpl1vbqf3n0nkj3mdairyl91q80xhrhrzlpbxc1yccvqqbh31zv7p4wmilcbl5vswg2rnpf5";
};
};
"module-deps-4.1.1" = {
@@ -16235,13 +16577,13 @@ let
sha1 = "23215833f1da13fd606ccb8087b44852dcb821fd";
};
};
- "module-deps-6.0.0" = {
+ "module-deps-6.0.2" = {
name = "module-deps";
packageName = "module-deps";
- version = "6.0.0";
+ version = "6.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/module-deps/-/module-deps-6.0.0.tgz";
- sha512 = "0ri32x2v7ywi8n4h92scc5pq6zlh7mmzbmk0gh2gsh3490w4d9islz1rs0in98cl2h5fl0dfx2dfcad0disnaiqflw46d24ja20raq4";
+ url = "https://registry.npmjs.org/module-deps/-/module-deps-6.0.2.tgz";
+ sha512 = "2zf8ycbhqnh9hc6zd3h5s1ii6bjg41z721ffg760j8i045vjjzpzzg542c02ylkic68p0skw1ss97lwphblcw8rip3ik29x9pglhq19";
};
};
"moment-2.1.0" = {
@@ -16289,6 +16631,15 @@ let
sha512 = "02hkdlhchyx4dqrh4q7p3c0xggpygcf0pimjvm66sib8z87wkbndici8vp2r39b472zpmybrf85y2c92lbw3hng9j2kfifl33l7f9jc";
};
};
+ "moment-2.22.0" = {
+ name = "moment";
+ packageName = "moment";
+ version = "2.22.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/moment/-/moment-2.22.0.tgz";
+ sha512 = "1v5hxqrwy3yd5023aflf2r1nlkayx1sh9cjjyk3415lba199gkimbq72ba26j3rf2azc0zwhqcz86jh8garynvlh1zm6vr33w59fsyn";
+ };
+ };
"moment-2.6.0" = {
name = "moment";
packageName = "moment";
@@ -16505,13 +16856,13 @@ let
sha1 = "8bce09f053b1565dbaa8bd022ca40155c35b0fde";
};
};
- "ms-rest-azure-2.5.4" = {
+ "ms-rest-azure-2.5.5" = {
name = "ms-rest-azure";
packageName = "ms-rest-azure";
- version = "2.5.4";
+ version = "2.5.5";
src = fetchurl {
- url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-2.5.4.tgz";
- sha512 = "049vfg1l6jfzdn82m5shchi6zzlfk81csihlalwj1mm96j0dykbx885sbjyv3wr0iqwjwzp4i1x2kv750xvzvyljfqrlnh1kfhrq32b";
+ url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-2.5.5.tgz";
+ sha512 = "37sgjm2jqs7fnlzbxihq6sdxxd4w7m5nnkmvp5rrnq9ghsfbbk9pr1z4lm6my3yg06hhqgdyg7rnnzvds26yxjwic7d1g1ab1igjwrf";
};
};
"msgpack-1.0.2" = {
@@ -16568,6 +16919,15 @@ let
sha512 = "3m42kr8y2s1krl4gzb5xsa9v3h01xalvrgdkj99gyfaq7761asmj5m6kzm70mxb22125gia12g7rmarnzmh09403j8j2cyvx7jqjblf";
};
};
+ "multicast-dns-7.0.0" = {
+ name = "multicast-dns";
+ packageName = "multicast-dns";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.0.0.tgz";
+ sha512 = "3z5r41v1y4fk8751g0s7ssgzpiaw7g3bwbnjk9gvdh5x3rijzpnlk03s0vlng9yx3f5j9h0zfy6rjfmh183gxyxh2y8y7hps977k806";
+ };
+ };
"multicast-dns-service-types-1.1.0" = {
name = "multicast-dns-service-types";
packageName = "multicast-dns-service-types";
@@ -16586,6 +16946,15 @@ let
sha512 = "2liv9lhcxrlp21524jzp1hxzbd07xmb7qlzma5qfn98bgn63ga0i5jalrhlz6qc08fd4jxh3hj2mi9wm14s95lip5x236052rv3i4rx";
};
};
+ "multimatch-2.1.0" = {
+ name = "multimatch";
+ packageName = "multimatch";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz";
+ sha1 = "9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b";
+ };
+ };
"multiparty-2.2.0" = {
name = "multiparty";
packageName = "multiparty";
@@ -16622,6 +16991,15 @@ let
sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b";
};
};
+ "multistream-2.1.0" = {
+ name = "multistream";
+ packageName = "multistream";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multistream/-/multistream-2.1.0.tgz";
+ sha1 = "625c267d5c44424ad6294788b5bb4da3dcb32f1d";
+ };
+ };
"muri-0.3.1" = {
name = "muri";
packageName = "muri";
@@ -16766,6 +17144,15 @@ let
sha1 = "020a7ccedc63fdee85f85967d5607849e74abbe8";
};
};
+ "nan-2.10.0" = {
+ name = "nan";
+ packageName = "nan";
+ version = "2.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz";
+ sha512 = "349rr7x0djrlkav4gbhkg355852ingn965r0kkch8rr4cwp7qki9676zpq8cq988yszzd2hld6szsbbnd1v6rghzf11abn1nyzlj1vc";
+ };
+ };
"nan-2.3.5" = {
name = "nan";
packageName = "nan";
@@ -16793,15 +17180,6 @@ let
sha1 = "e4ff34e6c95fdfb5aecc08de6596f43605a7db45";
};
};
- "nan-2.9.2" = {
- name = "nan";
- packageName = "nan";
- version = "2.9.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/nan/-/nan-2.9.2.tgz";
- sha512 = "1iwlv98jbkr46c7hy28crk2m89jiskrp4qfa5ysyacyq8dkbk4hii3cc61irf39b7n6wd9cjlaasmakv9dsknqhb3876zrvrbjvmmcn";
- };
- };
"nanoassert-1.1.0" = {
name = "nanoassert";
packageName = "nanoassert";
@@ -16905,13 +17283,13 @@ let
sha1 = "20a318c30cb45f71fe7adfbf7b21c99c1472ef11";
};
};
- "natives-1.1.1" = {
+ "natives-1.1.2" = {
name = "natives";
packageName = "natives";
- version = "1.1.1";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/natives/-/natives-1.1.1.tgz";
- sha512 = "08a9lf00d2pkqmdi6ipp00pjin0gwl6fh283cjdjbayaz834lppwrw19kn4s642kwa46bfcway3033j6rbqd96iy86qrzrfgz35mr7i";
+ url = "https://registry.npmjs.org/natives/-/natives-1.1.2.tgz";
+ sha512 = "246d44jpalvlcvk1ig1b2qc05fsgq8gy926xcl86bdnx663k8bh7pi4ny1pa7xr0bxydm33rhkvwzz3fjrrr7pkrjx0pmj44x5l1d75";
};
};
"natural-compare-1.4.0" = {
@@ -16932,15 +17310,6 @@ let
sha1 = "17b09581988979fddafe0201e931ba933c96cbb4";
};
};
- "ncname-1.0.0" = {
- name = "ncname";
- packageName = "ncname";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ncname/-/ncname-1.0.0.tgz";
- sha1 = "5b57ad18b1ca092864ef62b0b1ed8194f383b71c";
- };
- };
"nconf-0.6.9" = {
name = "nconf";
packageName = "nconf";
@@ -17067,12 +17436,12 @@ let
sha1 = "2b327184e8992101177b28563fb5e7102acd0ca9";
};
};
- "negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access" = {
+ "negotiator-git+https://github.com/arlolra/negotiator#full-parse-access" = {
name = "negotiator";
packageName = "negotiator";
version = "0.6.1";
src = fetchgit {
- url = "https://github.com/arlolra/negotiator.git";
+ url = "https://github.com/arlolra/negotiator";
rev = "0418ab4e9a665772b7e233564a4525c9d9a8ec3a";
sha256 = "243e90fbf6616ef39f3c71bbcd027799e35cbf2ef3f25203676f65b20f7f7394";
};
@@ -17239,15 +17608,6 @@ let
sha512 = "0lz5m15w7qaks0a0s3dm0crsjrsd123dy00pn6qwcp50zfjykxkp22i5ymh6smlc0ags38nmdxlxw9yyq509azlv8kcdvdiq857h5in";
};
};
- "node-firefox-connect-1.2.0" = {
- name = "node-firefox-connect";
- packageName = "node-firefox-connect";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-firefox-connect/-/node-firefox-connect-1.2.0.tgz";
- sha1 = "42403848313240c98514ef14b3302816fe3b84e1";
- };
- };
"node-forge-0.6.23" = {
name = "node-forge";
packageName = "node-forge";
@@ -17257,13 +17617,13 @@ let
sha1 = "f03cf65ebd5d4d9dd2f7becb57ceaf78ed94a2bf";
};
};
- "node-forge-0.7.4" = {
+ "node-forge-0.7.5" = {
name = "node-forge";
packageName = "node-forge";
- version = "0.7.4";
+ version = "0.7.5";
src = fetchurl {
- url = "https://registry.npmjs.org/node-forge/-/node-forge-0.7.4.tgz";
- sha512 = "0ygz69n952i01haj405jv90sa51d0yvyxqq9hn04p6fkfvbvm0yzk0310d864sjz5frvj1f6r0dl4xaiwz690hvkglazdmy9vvz8dzh";
+ url = "https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz";
+ sha512 = "0aq9ajngp210n97kmgnqyhil492amwhcn3b8bwxgsli9hq5qy4lh7qmncwbb1j0llrc4zalr0haj0fphrygz8kinzij848kcckx0rij";
};
};
"node-gyp-build-3.3.0" = {
@@ -17329,40 +17689,40 @@ let
sha512 = "2cwrivwc0ha272cly9r61bbb14kkl1s1hsmn53yr88b6pfjqj512nac6c5rphc6ak88v8gpl1f879qdd3v7386103zzr7miibpmbhis";
};
};
- "node-red-node-email-0.1.24" = {
+ "node-red-node-email-0.1.27" = {
name = "node-red-node-email";
packageName = "node-red-node-email";
- version = "0.1.24";
+ version = "0.1.27";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-email/-/node-red-node-email-0.1.24.tgz";
- sha1 = "ba12c72b01b39e33f375ccbf4321b163425e8fb2";
+ url = "https://registry.npmjs.org/node-red-node-email/-/node-red-node-email-0.1.27.tgz";
+ sha512 = "0r799aswbfv6f9rjdrh6bddfzwj1mpinlani8cwc7zbmipcf4dsyffmf3xghb3hpb15k26jvpb46f2ia8cff1vyn4i9h3jn5dnzflnc";
};
};
- "node-red-node-feedparser-0.1.10" = {
+ "node-red-node-feedparser-0.1.12" = {
name = "node-red-node-feedparser";
packageName = "node-red-node-feedparser";
- version = "0.1.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-feedparser/-/node-red-node-feedparser-0.1.10.tgz";
- sha512 = "0d40wp93zkzw88sv839mm8ywrv0jidpfqbv5a6j0dgj5ivvi7crnsy92ciiifazdrnh9qqhg2vs7ganja4h8xrsmjal1jh48cdyxwdz";
- };
- };
- "node-red-node-rbe-0.2.1" = {
- name = "node-red-node-rbe";
- packageName = "node-red-node-rbe";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-rbe/-/node-red-node-rbe-0.2.1.tgz";
- sha512 = "3s12a0r8a6nzfqk1a1v1k5drczf4qpnia460l3rq4bixnl0k0fahc1hh4cqcw9rlzc59cz3p4dv19ixrwf2wc6nxixsyqz417li68wb";
- };
- };
- "node-red-node-twitter-0.1.12" = {
- name = "node-red-node-twitter";
- packageName = "node-red-node-twitter";
version = "0.1.12";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-twitter/-/node-red-node-twitter-0.1.12.tgz";
- sha512 = "3h9isciksl33ajjzn4s0dp8s8m3zkijqc7rbw4v8glrhz5y3npbv8501sffak943jyd4k3dqalizv9giwaxqfd1760pkhbzh816y6j4";
+ url = "https://registry.npmjs.org/node-red-node-feedparser/-/node-red-node-feedparser-0.1.12.tgz";
+ sha512 = "2ymvmw9wh0rq14fbxg44p3wm1r34lmr7wvh8z40g4cssrpcmb43cc3wr94z9blxpnjmf9795b3slmd3s4283snm01q5z1jppa9kn2lk";
+ };
+ };
+ "node-red-node-rbe-0.2.3" = {
+ name = "node-red-node-rbe";
+ packageName = "node-red-node-rbe";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-red-node-rbe/-/node-red-node-rbe-0.2.3.tgz";
+ sha512 = "06is8ig0mlp85dl5hjp86gp7hwahssfls65gbwcql3awygilv9zlgxngm4yrl54vmkyjk2dk5gbf78r6bm4jgm3qf07xdbwvcgjvqz7";
+ };
+ };
+ "node-red-node-twitter-0.1.13" = {
+ name = "node-red-node-twitter";
+ packageName = "node-red-node-twitter";
+ version = "0.1.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-red-node-twitter/-/node-red-node-twitter-0.1.13.tgz";
+ sha512 = "0wfkdalwxzyyivqxiwiba5j8pyis83lhipiwck2xrbks3w0x1ldf12fgnzx61kq64sdmzpczqwb7588ggh5drj64ymj88vwdbca0bd9";
};
};
"node-static-0.7.10" = {
@@ -17671,13 +18031,13 @@ let
sha1 = "5b1d577e4c8869d6c8603bc89e9cd1637303e46e";
};
};
- "npm-5.6.0" = {
+ "npm-5.7.1" = {
name = "npm";
packageName = "npm";
- version = "5.6.0";
+ version = "5.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-5.6.0.tgz";
- sha512 = "0nnr796ik5h8bsd3k9ygivivr3na2ksnf5iipf8dsnn20j10i9sgmhmsnzbimd2pqgjbrpp8gbpl2q7j5c7yjqjfirrh8xcc3v3gpws";
+ url = "https://registry.npmjs.org/npm/-/npm-5.7.1.tgz";
+ sha512 = "147xlh1d389j8yilssidlk7w8qgp1354y5p2bhv30a0m74vmfbl48859yfidij4ixbf0dhdmzkg6zz6viik2cskkrz4nw56zsz2nn5g";
};
};
"npm-bundled-1.0.3" = {
@@ -17689,6 +18049,15 @@ let
sha512 = "0xk8ky1cjf8q2wkbgfzplpn04sm9xnl6i71dwnc29rfh8m2glan5nd6l4k3q7ikci7xpwfpcmyy3frr873zndjmhbr344grkyh3f907";
};
};
+ "npm-conf-1.1.3" = {
+ name = "npm-conf";
+ packageName = "npm-conf";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz";
+ sha512 = "1rx44jzcf3byibrwmgyr0598hng4snjfj9bx29xm7bi5y1bqkbvb2krh8z0ccpzv3aps71qwrq55a56l1qkzlan118xyfn9j5nkh9v2";
+ };
+ };
"npm-keyword-5.0.0" = {
name = "npm-keyword";
packageName = "npm-keyword";
@@ -17960,13 +18329,13 @@ let
sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
};
};
- "object-hash-1.2.0" = {
+ "object-hash-1.3.0" = {
name = "object-hash";
packageName = "object-hash";
- version = "1.2.0";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/object-hash/-/object-hash-1.2.0.tgz";
- sha512 = "19310wpjhfybr8gslg93qybbsrf3fjlmdgsgvn7d9yim1nmpcgjn5az280w4p8spvhq1djly7naa9434166gcmbavv0xirg75gmcr5j";
+ url = "https://registry.npmjs.org/object-hash/-/object-hash-1.3.0.tgz";
+ sha512 = "2qnadlb3xqg732666500m9gssayfvlzrhipcl3hyw3qm1yhmvnz72slbmzlbfi8kgzl95a32a896f1lf175ql4jmn9f2j95pm1v74nk";
};
};
"object-keys-1.0.11" = {
@@ -18154,7 +18523,7 @@ let
packageName = "onetime";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz";
+ url = "http://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz";
sha1 = "a1f7838f8314c516f05ecefcbc4ccfe04b4ed789";
};
};
@@ -18230,13 +18599,13 @@ let
sha1 = "6a341442f09d7d866bc11ed03de1e3828e3d6aab";
};
};
- "opentracing-0.14.1" = {
+ "opentracing-0.14.2" = {
name = "opentracing";
packageName = "opentracing";
- version = "0.14.1";
+ version = "0.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/opentracing/-/opentracing-0.14.1.tgz";
- sha1 = "40d278beea417660a35dd9d3ee76511ffa911dcd";
+ url = "https://registry.npmjs.org/opentracing/-/opentracing-0.14.2.tgz";
+ sha1 = "215c5cc0152483b8c5d74cec59308cf1cd595fb1";
};
};
"opn-4.0.2" = {
@@ -18257,6 +18626,15 @@ let
sha512 = "12iyalgghs3dj0pfb7rxa013x946169yfsjfd15fsfrx5kv80z2qh082x7v7d91hh7bf9vxcm4wqmyyj9ckk3gnvc7mw77j6fkwdpr5";
};
};
+ "opn-5.3.0" = {
+ name = "opn";
+ packageName = "opn";
+ version = "5.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz";
+ sha512 = "3d5s5y22sx4wfswzs8fmhr7sarmjigs8qhmmyrkiplfda6kkfk3kv67fs8npdklf8zbc9hmx76zsxqfv4bn5qlpzbfq96nfyailg0kd";
+ };
+ };
"optimist-0.2.8" = {
name = "optimist";
packageName = "optimist";
@@ -18500,13 +18878,13 @@ let
sha512 = "35jir2yjv2l3v8aj062w0hfinzgwpb1sbhmaym8h4xn78j498naj7mkf4rpv74n5bfkysxb7l893l2yw3dpqk5dgb2yiwr8pcydjmj5";
};
};
- "p-cancelable-0.4.0" = {
+ "p-cancelable-0.4.1" = {
name = "p-cancelable";
packageName = "p-cancelable";
- version = "0.4.0";
+ version = "0.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.0.tgz";
- sha512 = "3bd5qxdbz8icpcdb0mnhbfb5p4vzqx0jf02ii71prl6kgnaiki21agp84imr0id9fiwk0h8yi0wchmsy749r98ldscg3jxmyyl1s2pw";
+ url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz";
+ sha512 = "02ipk9sgz2q0msm9h53lxbjvqprh9k6zj8q21dvczv6p6a5d4q5yqcmwj6xm0icmdc94n42plfmwlymnqn4f15pgci5j1zgq81vbmhw";
};
};
"p-finally-1.0.0" = {
@@ -19238,22 +19616,22 @@ let
sha512 = "30bb7vx0m1k1m3d1i1khgvmgddx3ahqgprs421ssrh5plpx50k5bazsj67gdi7qiknircqy59yxbclq95s2rnmk8ysgkqdpsddijfw2";
};
};
- "peer-wire-protocol-0.7.0" = {
+ "peer-wire-protocol-0.7.1" = {
name = "peer-wire-protocol";
packageName = "peer-wire-protocol";
- version = "0.7.0";
+ version = "0.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/peer-wire-protocol/-/peer-wire-protocol-0.7.0.tgz";
- sha1 = "6c015abf24b4877ed9eca3822b22d996078011da";
+ url = "https://registry.npmjs.org/peer-wire-protocol/-/peer-wire-protocol-0.7.1.tgz";
+ sha512 = "2dzhv7b379pzls7q7kd168h4ckh3gnfxcizknb8bvqrpxrm847vjc8c0vpn1b490k94sgl5yxndfiw30rply4phymrx6z2wyrmi7njp";
};
};
- "peer-wire-swarm-0.12.1" = {
+ "peer-wire-swarm-0.12.2" = {
name = "peer-wire-swarm";
packageName = "peer-wire-swarm";
- version = "0.12.1";
+ version = "0.12.2";
src = fetchurl {
- url = "https://registry.npmjs.org/peer-wire-swarm/-/peer-wire-swarm-0.12.1.tgz";
- sha1 = "51b75da99c335c64c9ba9ef99fe27a4a5951ff42";
+ url = "https://registry.npmjs.org/peer-wire-swarm/-/peer-wire-swarm-0.12.2.tgz";
+ sha512 = "3bchr23xpdvjf588f8qx52ylri5kcqnqi4lf4mgh3i0j8sk1cljvsikd47l09jk4v3drg500q3p5q01nm2z4xfj4fk5xxnbfkb9k1dh";
};
};
"peerflix-0.34.0" = {
@@ -19274,12 +19652,12 @@ let
sha1 = "cf8bafae6eddff4b5a7efb185269eaaf4610ddbd";
};
};
- "pegjs-git+https://github.com/tstarling/pegjs.git#fork" = {
+ "pegjs-git+https://github.com/tstarling/pegjs#fork" = {
name = "pegjs";
packageName = "pegjs";
version = "0.8.0";
src = fetchgit {
- url = "https://github.com/tstarling/pegjs.git";
+ url = "https://github.com/tstarling/pegjs";
rev = "36d584bd7bbc564c86c058c5dfe8053b1fe1d584";
sha256 = "df0bf31b132e63beae73a28f1edfe0a2e9edf01660632c72834c682e2b484905";
};
@@ -19365,13 +19743,22 @@ let
sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa";
};
};
- "pino-4.10.3" = {
+ "pino-4.14.0" = {
name = "pino";
packageName = "pino";
- version = "4.10.3";
+ version = "4.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pino/-/pino-4.10.3.tgz";
- sha512 = "2kg8qqb15pav0a2f16xmj5iqzkx28d0c6i1ydy3vzn71hfv7b7kvsbv917bwj68bh8m2mgy9j0kj8j4npy14hg2h09q4h85sz8wm990";
+ url = "https://registry.npmjs.org/pino/-/pino-4.14.0.tgz";
+ sha512 = "1x3dsg8pg321khfaf3dd91ykkwhdn60wk169l3b2kp8wkbw242ld99qiv7cmbn76ccba75wdydv8mb2v4fg58lrfnn7jf5pvk2x7qwy";
+ };
+ };
+ "pino-std-serializers-1.2.0" = {
+ name = "pino-std-serializers";
+ packageName = "pino-std-serializers";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-1.2.0.tgz";
+ sha512 = "0h8xndhy3qwgkycbmypfp7a2dvk875prgnfg46zj9vz14i24xqqdw1xp748hkv2xl2phwhyaa82yr1ym6jn6r61527kz5f7f8qird78";
};
};
"pkg-dir-2.0.0" = {
@@ -19455,13 +19842,13 @@ let
sha1 = "0a32ca9481b1c364e92e18dc55c876de9d01da8b";
};
};
- "plist-2.1.0" = {
+ "plist-3.0.1" = {
name = "plist";
packageName = "plist";
- version = "2.1.0";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/plist/-/plist-2.1.0.tgz";
- sha1 = "57ccdb7a0821df21831217a3cad54e3e146a1025";
+ url = "https://registry.npmjs.org/plist/-/plist-3.0.1.tgz";
+ sha512 = "12n868myk28as4ivyihfw9ai50y0vc1jrr77r55drlidyi7qpwlm23aj9n05qqlzhs544yah6p535b5hiayh6xykf81q68wg8f2z60s";
};
};
"pluralize-1.2.1" = {
@@ -19572,15 +19959,6 @@ let
sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
};
};
- "postcss-6.0.14" = {
- name = "postcss";
- packageName = "postcss";
- version = "6.0.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/postcss/-/postcss-6.0.14.tgz";
- sha512 = "2id33g6232s35n25daqrkz0bvzm2zmhlkfzmigkgia5q4jy9xg38spppmsdg0qswjankyi28wrbjsdwhczqfkx7h71gg8dmzz8p779l";
- };
- };
"postcss-6.0.19" = {
name = "postcss";
packageName = "postcss";
@@ -19590,6 +19968,15 @@ let
sha512 = "174sg3cs8v8bqg8rnk673qp365n46kls3f3a41pp0jx48qivkg06rck0j2bfyzm5hr1i6kjbcn82h1rkjgfi5jbd0amrd877m3wfpbz";
};
};
+ "postcss-6.0.21" = {
+ name = "postcss";
+ packageName = "postcss";
+ version = "6.0.21";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss/-/postcss-6.0.21.tgz";
+ sha512 = "1vvp2mzw4gq6zm875fi7hgyypy0a44mbdpv0i4aqxsq8xajdxfyaz4ap4idh29v74ag4z26wla48k315yyg3d0h83zxkn1kniywmxnb";
+ };
+ };
"prebuild-install-2.1.2" = {
name = "prebuild-install";
packageName = "prebuild-install";
@@ -19698,13 +20085,13 @@ let
sha512 = "2dgznnpxsgy9bgp4kfby1is72blvca4lhmqb3nlja8yiig1v52c12p5yw0aag8jqazhkqvihpxmqf9gsjlg5dr1jb56jxzgnqrazy2n";
};
};
- "probe-image-size-3.2.0" = {
+ "probe-image-size-4.0.0" = {
name = "probe-image-size";
packageName = "probe-image-size";
- version = "3.2.0";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/probe-image-size/-/probe-image-size-3.2.0.tgz";
- sha512 = "2ss74kxzba7k01p9fz756q4q9g6m29h49s5pp9wg1larrjmlcm1avhy7rwmqqkpd8azblwa3wk736xz1nrlvzc1h274g863ywifckic";
+ url = "https://registry.npmjs.org/probe-image-size/-/probe-image-size-4.0.0.tgz";
+ sha512 = "1qwy2hmhw201igjdk90dpky6b1qpc9b2jm7nxrsshcagf0ln73s62mwfd2j0mkfx29bhsndjmm8v2fk3nwk8jinzavcz9iicnyx2vly";
};
};
"process-0.11.10" = {
@@ -20049,13 +20436,13 @@ let
sha1 = "39f699f3a46560dd5ebacbca693caf7c65c18cc6";
};
};
- "pug-2.0.1" = {
+ "pug-2.0.3" = {
name = "pug";
packageName = "pug";
- version = "2.0.1";
+ version = "2.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/pug/-/pug-2.0.1.tgz";
- sha1 = "27c151612b53d729abe8e8285aac6bc89345b5d0";
+ url = "https://registry.npmjs.org/pug/-/pug-2.0.3.tgz";
+ sha1 = "71cba82537c95a5eab7ed04696e4221f53aa878e";
};
};
"pug-attrs-2.0.3" = {
@@ -20085,13 +20472,13 @@ let
sha1 = "53ae7d9d29bb03cf564493a026109f54c47f5f26";
};
};
- "pug-filters-3.0.1" = {
+ "pug-filters-3.1.0" = {
name = "pug-filters";
packageName = "pug-filters";
- version = "3.0.1";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pug-filters/-/pug-filters-3.0.1.tgz";
- sha1 = "163ef73bfbb1f1544d032b2b40f45130eb52dccb";
+ url = "https://registry.npmjs.org/pug-filters/-/pug-filters-3.1.0.tgz";
+ sha1 = "27165555bc04c236e4aa2b0366246dfa021b626e";
};
};
"pug-lexer-4.0.0" = {
@@ -20193,13 +20580,13 @@ let
sha1 = "5f2f3aed47ad86919f01b12a2e99d6f1bd776581";
};
};
- "pull-stream-3.6.2" = {
+ "pull-stream-3.6.7" = {
name = "pull-stream";
packageName = "pull-stream";
- version = "3.6.2";
+ version = "3.6.7";
src = fetchurl {
- url = "https://registry.npmjs.org/pull-stream/-/pull-stream-3.6.2.tgz";
- sha1 = "1ea14c6f13174e6ac4def0c2a4e76567b7cb0c5c";
+ url = "https://registry.npmjs.org/pull-stream/-/pull-stream-3.6.7.tgz";
+ sha512 = "0cq5h32fsfnhxa9wbgk55jhr0z4mx6zmm42nx9r6n3j4bpl6sw2a6vh41raicq2q11bxh1vg7jxv2cdqw7nq6zb0fxm5nj8ipz3dlax";
};
};
"pull-window-2.1.4" = {
@@ -20238,6 +20625,15 @@ let
sha512 = "288hcmlwdnqda84ylx9cv413ic0r59k0dp71hy7a200jsb7h1y63277jwdp1jdp13c1b3pl6g2gzr5gjv9p72f5sp7w3p0d34swrqxf";
};
};
+ "pump-3.0.0" = {
+ name = "pump";
+ packageName = "pump";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz";
+ sha512 = "31n24fqakqmhzk2ch644gziskmysmrgiwclsdsr0rwk9spgikqpwickbnayap0rynfjlq72s7iny2p35n3qszypr97ws5njkpx741ig";
+ };
+ };
"pumpify-1.4.0" = {
name = "pumpify";
packageName = "pumpify";
@@ -20481,13 +20877,13 @@ let
sha1 = "63ac953352499ad670a9681a75680f6bf3dd1faf";
};
};
- "query-string-5.1.0" = {
+ "query-string-5.1.1" = {
name = "query-string";
packageName = "query-string";
- version = "5.1.0";
+ version = "5.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/query-string/-/query-string-5.1.0.tgz";
- sha512 = "04m33y2wlmhz19y109cv7l537bdagzl15jv3y0jc3mb7wrw3jpz15pws8m7pbfbqv9nwad46cg3c4cd620f27mwzs1hml2q373y8w0p";
+ url = "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz";
+ sha512 = "0kkwn38nmjd6n6byiz52gngvyiw46fbibx9c9p1vzn9g7l11f2jpbs39d4aqajk7kk2a6k69wx5bjgavbg1lh275ih6k84jdnr8wdc2";
};
};
"querystring-0.2.0" = {
@@ -20643,13 +21039,13 @@ let
sha1 = "f49be6b487894ddc40dcc94a322f611092e00d5e";
};
};
- "raven-2.3.0" = {
+ "raven-2.4.2" = {
name = "raven";
packageName = "raven";
- version = "2.3.0";
+ version = "2.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/raven/-/raven-2.3.0.tgz";
- sha1 = "96f15346bdaa433b3b6d47130804506155833d69";
+ url = "https://registry.npmjs.org/raven/-/raven-2.4.2.tgz";
+ sha1 = "0129e2adc30788646fd530b67d08a8ce25d4f6dc";
};
};
"raw-body-0.0.3" = {
@@ -20715,13 +21111,13 @@ let
sha1 = "ce24a2029ad94c3a40d09604a87227027d7210d3";
};
};
- "rc-1.2.5" = {
+ "rc-1.2.6" = {
name = "rc";
packageName = "rc";
- version = "1.2.5";
+ version = "1.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/rc/-/rc-1.2.5.tgz";
- sha1 = "275cd687f6e3b36cc756baa26dfee80a790301fd";
+ url = "https://registry.npmjs.org/rc/-/rc-1.2.6.tgz";
+ sha1 = "eb18989c6d4f4f162c399f79ddd29f3835568092";
};
};
"rc-config-loader-2.0.1" = {
@@ -20769,6 +21165,15 @@ let
sha1 = "2d5d157786a37c055d22077c32c53f8329e91c7b";
};
};
+ "read-metadata-1.0.0" = {
+ name = "read-metadata";
+ packageName = "read-metadata";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-metadata/-/read-metadata-1.0.0.tgz";
+ sha1 = "6df9cbe51184e8ceb7d0668b40ee5191e6f3dac6";
+ };
+ };
"read-only-stream-2.0.0" = {
name = "read-only-stream";
packageName = "read-only-stream";
@@ -20949,13 +21354,13 @@ let
sha512 = "0bb5d70l5lg02x515r2klvjhhz6xcxdb4ykbx16wq45l822bbsdd8sbki7vb28j17xr7181fmwlzhx3bizvr5xdq6cxpv53sidrq44x";
};
};
- "recursive-watch-1.1.3" = {
+ "recursive-watch-1.1.4" = {
name = "recursive-watch";
packageName = "recursive-watch";
- version = "1.1.3";
+ version = "1.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/recursive-watch/-/recursive-watch-1.1.3.tgz";
- sha512 = "3m0s8140jpamg1xxdlsslshx10qznb889s6yc8av6vvqbs56banhmjqy9lgl7g4ppsrsja0d2lhb5lacl3nxm8ggsrpdd7xqf53hvzx";
+ url = "https://registry.npmjs.org/recursive-watch/-/recursive-watch-1.1.4.tgz";
+ sha512 = "0yks7j98w5d3y375fb99kfbb8rz5qz72v6ld5i15h7fds1i02fq027w82ipanv3dkgvvrxyybw1v8lyrcs54h9airzv12sbcw1a6rvx";
};
};
"redent-1.0.0" = {
@@ -21084,6 +21489,15 @@ let
sha512 = "3cggngaj8m70zdn8kghha4mhvavm7jfy5xm2iqi94w4gi5m5irs3nlrgg975w2231y49jnnw7zhsg648pbkl9zb6vwhii83926q7917";
};
};
+ "regexpp-1.1.0" = {
+ name = "regexpp";
+ packageName = "regexpp";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz";
+ sha512 = "21xg69jgy5r7mffh5gjaqsv6izqvqh466q3fanmnzsgk33xhxp68nnszw4jcxk2w8lnc92phy26sr7xqq3ni36mg9yh2xb0bbqg1qrc";
+ };
+ };
"registry-auth-token-3.3.2" = {
name = "registry-auth-token";
packageName = "registry-auth-token";
@@ -21300,15 +21714,6 @@ let
sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
};
};
- "request-2.83.0" = {
- name = "request";
- packageName = "request";
- version = "2.83.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.83.0.tgz";
- sha512 = "0by1djkn836sqd9pk2c777wcjvp34qbk1plx7s4lmykljrblpjc64dvn6ni2vyxsbyk33wnl6avym8vgw0ggr4226xakck8mw7y07cm";
- };
- };
"request-2.85.0" = {
name = "request";
packageName = "request";
@@ -21417,13 +21822,13 @@ let
sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b";
};
};
- "resolve-1.5.0" = {
+ "resolve-1.6.0" = {
name = "resolve";
packageName = "resolve";
- version = "1.5.0";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz";
- sha512 = "25scf9zkhf5yc9x3d7mfq2im5vyxmq3ih939na6jzblal7mgfcijmadl2maz501mkccykj714gvdhhmlzi86hbk7k03r9ipnwd142l6";
+ url = "https://registry.npmjs.org/resolve/-/resolve-1.6.0.tgz";
+ sha512 = "1vidqan0cvx5paxxhp9ir7kfd1j7k2ll0z9d0arj8wrqrfw20mdj3ckwy8gwl7n2xagc3z3jm6zy1d3fhl3w2qffcj144xrvd0cj3lv";
};
};
"resolve-dir-1.0.1" = {
@@ -21705,13 +22110,13 @@ let
sha1 = "0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0";
};
};
- "run-parallel-1.1.7" = {
+ "run-parallel-1.1.8" = {
name = "run-parallel";
packageName = "run-parallel";
- version = "1.1.7";
+ version = "1.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.7.tgz";
- sha512 = "322cb6n7h8761gprij4m1z52rizyzvxwviima893gphrbrxkhjv6q4ifwspd0w9jhlk7jj0x64449aagms18v7ps6hr774ymvavh7lw";
+ url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.8.tgz";
+ sha512 = "1jzs29b3g9xx5408i8gzyflx0wajfa1ai9sgm63pbvkaas0351j9y92kxq06x8dhg7w829skizs88cdlf156zfm1yk5brbbb0spb6vv";
};
};
"run-queue-1.0.3" = {
@@ -21723,13 +22128,13 @@ let
sha1 = "e848396f057d223f24386924618e25694161ec47";
};
};
- "run-series-1.1.4" = {
+ "run-series-1.1.6" = {
name = "run-series";
packageName = "run-series";
- version = "1.1.4";
+ version = "1.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/run-series/-/run-series-1.1.4.tgz";
- sha1 = "89a73ddc5e75c9ef8ab6320c0a1600d6a41179b9";
+ url = "https://registry.npmjs.org/run-series/-/run-series-1.1.6.tgz";
+ sha512 = "2rpksrvsfrz5kv3cwr448d60521dlky61p5hp3ci7g8140yfm58g7xak4gkqysfc9cm6hknxyizfs832939fxg01qslxrzlx7l805a1";
};
};
"rusha-0.8.13" = {
@@ -21786,13 +22191,13 @@ let
sha1 = "753b87a89a11c95467c4ac1626c4efc4e05c67be";
};
};
- "rxjs-5.5.6" = {
+ "rxjs-5.5.8" = {
name = "rxjs";
packageName = "rxjs";
- version = "5.5.6";
+ version = "5.5.8";
src = fetchurl {
- url = "https://registry.npmjs.org/rxjs/-/rxjs-5.5.6.tgz";
- sha512 = "293yj2n5f5bj8b8y9czwgm5l3bqa0g3bbghnxsxwdpiz6s2mxiw6a79w3sqq3c1by3avmb5bgk8xgi0yss5y09pxw87055l60f3k15z";
+ url = "https://registry.npmjs.org/rxjs/-/rxjs-5.5.8.tgz";
+ sha512 = "32whnkvnay58zbcwimj3lpagg52k7swjdcys6i14a0im2hj1svh602bpvpb3zrqv36k96a1gsjjzbjxvfy6aj89i838l06mxsiflgh7";
};
};
"safe-buffer-5.0.1" = {
@@ -21903,15 +22308,6 @@ let
sha512 = "1dn291mjsda42w8kldlbmngk6dhjxfbvvd5lckyqmwbjaj6069iq3wx0nvcfglwnpddz2qa93lzf4hv77iz43bd2qixa079sjzl799n";
};
};
- "schema-utils-0.3.0" = {
- name = "schema-utils";
- packageName = "schema-utils";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/schema-utils/-/schema-utils-0.3.0.tgz";
- sha1 = "f5877222ce3e931edae039f17eb3716e7137f8cf";
- };
- };
"schema-utils-0.4.5" = {
name = "schema-utils";
packageName = "schema-utils";
@@ -21930,6 +22326,15 @@ let
sha1 = "a346bb1acd4207ae70bd7c0c7ca9e566b6baddb8";
};
};
+ "seek-bzip-1.0.5" = {
+ name = "seek-bzip";
+ packageName = "seek-bzip";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.5.tgz";
+ sha1 = "cfe917cb3d274bcffac792758af53173eb1fabdc";
+ };
+ };
"semaphore-async-await-1.5.1" = {
name = "semaphore-async-await";
packageName = "semaphore-async-await";
@@ -22047,13 +22452,13 @@ let
sha1 = "57f41de69707a62709a7e0104ba2117109ea47e8";
};
};
- "semver-utils-1.1.1" = {
+ "semver-utils-1.1.2" = {
name = "semver-utils";
packageName = "semver-utils";
- version = "1.1.1";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/semver-utils/-/semver-utils-1.1.1.tgz";
- sha1 = "27d92fec34d27cfa42707d3b40d025ae9855f2df";
+ url = "https://registry.npmjs.org/semver-utils/-/semver-utils-1.1.2.tgz";
+ sha512 = "09ryf3nvrfjqr93b8fj691lh48pvqhrpah5a5fm87szs42xcnl33sss49piv1grb9h2i7icdvz0i0m5yak5ccxa6xbv4x294rsfs6zr";
};
};
"send-0.0.3" = {
@@ -22182,13 +22587,13 @@ let
sha1 = "dd419e268de012ab72b319d337f2105013f9381f";
};
};
- "serve-favicon-2.4.5" = {
+ "serve-favicon-2.5.0" = {
name = "serve-favicon";
packageName = "serve-favicon";
- version = "2.4.5";
+ version = "2.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.5.tgz";
- sha512 = "2gn8a5l0hh655cxq2cvvar6k1hl8cpmagplavx6svjiz9kmi968nwbzhpc2fvpcpmsfqb8s5jjq0gvn8vwwc2lx3cj57ckbcf3prcdk";
+ url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz";
+ sha1 = "935d240cdfe0f5805307fdfe967d88942a2cbcf0";
};
};
"serve-index-1.7.3" = {
@@ -22263,13 +22668,13 @@ let
sha1 = "f13bf928e42b9c3e79383e61cc3998b5d14e6cdd";
};
};
- "service-runner-2.5.2" = {
+ "service-runner-2.3.0" = {
name = "service-runner";
packageName = "service-runner";
- version = "2.5.2";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/service-runner/-/service-runner-2.5.2.tgz";
- sha1 = "3a1b8f85625d0cb9154dcbe34d578142c95f1cc7";
+ url = "https://registry.npmjs.org/service-runner/-/service-runner-2.3.0.tgz";
+ sha1 = "09039dfdcc40cdbd0259dd3f982916675838cb59";
};
};
"set-blocking-2.0.0" = {
@@ -22335,13 +22740,13 @@ let
sha512 = "2jlhhawfqdiga1m6if01ks1q3yx56k5vj6wf372589vkswvdflw7224viivxali56b0jjsckpmjy10rj6fcakhw2dbq2psr197kzw86";
};
};
- "sha.js-2.4.10" = {
+ "sha.js-2.4.11" = {
name = "sha.js";
packageName = "sha.js";
- version = "2.4.10";
+ version = "2.4.11";
src = fetchurl {
- url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.10.tgz";
- sha512 = "2lfna0mg4mzdki4p3q29rsgywbghvy6f6jy6b61zj68d2d936wfqjgqpsdjchfcqkiim53qknpcnq9iiafyidfrw154qf75a2n2cz5y";
+ url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz";
+ sha512 = "2lihh3p2mrwymrly93ni37b1dvzwbm1jc47iqp66ax4bj41js4mr94wghv3c2agq98bb44nxxddn2n67ab978zk00xx2znw3vj2kha0";
};
};
"shallow-clone-0.1.2" = {
@@ -22461,13 +22866,13 @@ let
sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590";
};
};
- "sign-addon-0.2.2" = {
+ "sign-addon-0.3.0" = {
name = "sign-addon";
packageName = "sign-addon";
- version = "0.2.2";
+ version = "0.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sign-addon/-/sign-addon-0.2.2.tgz";
- sha512 = "3v5myvfbil1c5fsvqx32vqdv7mk62059isry4811avmkgzfv95scw8pnkwa77m6zg9g8vgsp3glqjm65k3rj8xfxnqv24mcmhjk78bz";
+ url = "https://registry.npmjs.org/sign-addon/-/sign-addon-0.3.0.tgz";
+ sha512 = "2czjlarf0pa0svlhbdb9i6hrk429za0gsialmxbmgwgbhyjx7mxkgf5mww4rkmsbncdi2va8p64rxjxf7gv8b0jd2a87cvm7rw5pky5";
};
};
"signal-exit-3.0.2" = {
@@ -22839,13 +23244,13 @@ let
sha512 = "0k2smmr24w5hb1cpql6vcgh58vzp4pmh9anf0bgz3arlsgq1mapnlq9fjqr6xs10aq1cmxaw987fwknqi62frax0fvs9bj3q3kmpg8l";
};
};
- "snyk-1.70.0" = {
+ "snyk-1.70.3" = {
name = "snyk";
packageName = "snyk";
- version = "1.70.0";
+ version = "1.70.3";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.70.0.tgz";
- sha1 = "141a5ab88c262ef1bd6cb2b590bc50d4f46f4dc8";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.70.3.tgz";
+ sha1 = "53c98949d27bf57905eeb7beed94d360a24fff55";
};
};
"snyk-config-1.0.1" = {
@@ -22920,13 +23325,13 @@ let
sha1 = "2a7bf0f07c7b811b9dda93cf9bbb10dc992dd7bc";
};
};
- "snyk-python-plugin-1.5.6" = {
+ "snyk-python-plugin-1.5.7" = {
name = "snyk-python-plugin";
packageName = "snyk-python-plugin";
- version = "1.5.6";
+ version = "1.5.7";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.5.6.tgz";
- sha512 = "1iv7h9k0vj7g2zzx8nzighx84q70kwvl4hhzd4fzxmc8vv06ymwwn4v7cirgbksqrjf9z1bfxq8id308ifb1flyas7blz8zs7xf4w30";
+ url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.5.7.tgz";
+ sha512 = "3fqq6dbx31yysvd835ng60linxmbkzixiqqf28yxq9pdx3x8dq55syhv1g6as3s85wd04q5vc5qlfgdl91jlhwcgjvdwjjr2wwp84pq";
};
};
"snyk-resolve-1.0.0" = {
@@ -23010,6 +23415,15 @@ let
sha1 = "c1a4590ceff87ecf13c72652f046f716b29e6014";
};
};
+ "socket.io-2.1.0" = {
+ name = "socket.io";
+ packageName = "socket.io";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-2.1.0.tgz";
+ sha512 = "2wkm6yqxvn8wk51rbakza3zxg3rknzfgmwqrbzvnlacf1yylplsr61i67m01sg8x7589ymj6x3z266ngvqd6qyyakdx4dlnsl4bfbr9";
+ };
+ };
"socket.io-adapter-0.2.0" = {
name = "socket.io-adapter";
packageName = "socket.io-adapter";
@@ -23073,6 +23487,15 @@ let
sha1 = "0918a552406dc5e540b380dcd97afc4a64332f8e";
};
};
+ "socket.io-client-2.1.0" = {
+ name = "socket.io-client";
+ packageName = "socket.io-client";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.0.tgz";
+ sha512 = "1xkd66603gshd7s080j107ms405z18mljc7gbmnkllph1zfg82sz5mgvsyhi1zs3bbv5lgvv29gxfn624gpv46v5mwy610wpnj8zwjf";
+ };
+ };
"socket.io-parser-2.1.2" = {
name = "socket.io-parser";
packageName = "socket.io-parser";
@@ -23109,6 +23532,15 @@ let
sha512 = "3pd3lbxawkd1zs739v0vv81vhf6pyax989j96hrc7vhql0xv7kn13sr893hrnn6m71jngw5h61523dq0b0p8drvff0fm0lbz8fbcil3";
};
};
+ "socket.io-parser-3.2.0" = {
+ name = "socket.io-parser";
+ packageName = "socket.io-parser";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz";
+ sha512 = "10calkdapaxrn8pjqghqxl9h2s6bm76wdd7rp3fd468zz43xcyx6qvywfdivrb2r1dsddig2byv2mbymiyb2q4r628s7z6wpb3q320m";
+ };
+ };
"socks-1.1.10" = {
name = "socks";
packageName = "socks";
@@ -23136,22 +23568,22 @@ let
sha512 = "33yfj0m61wn7g9s59m7mxhm6w91nkdrd7hcnnbacrj58zqgykpyr7f6lsggvc9xzysrf951ncxh4malqi11yf8z6909fasllxi6cnxh";
};
};
- "sodium-javascript-0.5.4" = {
+ "sodium-javascript-0.5.5" = {
name = "sodium-javascript";
packageName = "sodium-javascript";
- version = "0.5.4";
+ version = "0.5.5";
src = fetchurl {
- url = "https://registry.npmjs.org/sodium-javascript/-/sodium-javascript-0.5.4.tgz";
- sha512 = "1dqdzm0qjk1rwq62b010b649wdpvlzdxpmwc972p0dcwsc86wqfcm8lbdcxlrwypkn2jq5df1xpbxhxfphnpr993ac543p9s212si30";
+ url = "https://registry.npmjs.org/sodium-javascript/-/sodium-javascript-0.5.5.tgz";
+ sha512 = "3451wvpagbw2ib50galmlfrb5za3zh0ml1irbm2ijd0lbjblg9va4fnag6sfs7msb1m0i5zicz93jwp90c22v0n40qzpczhicg85jah";
};
};
- "sodium-native-2.1.4" = {
+ "sodium-native-2.1.5" = {
name = "sodium-native";
packageName = "sodium-native";
- version = "2.1.4";
+ version = "2.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/sodium-native/-/sodium-native-2.1.4.tgz";
- sha512 = "3d3bbjycbpplxgjpfz78vqr8g8hp62j37hr4c3vym7ax36qzxqan73fmqw2i3wd8ix65ysdlzbnzhrs3634ngp840gfpmm9alarc80j";
+ url = "https://registry.npmjs.org/sodium-native/-/sodium-native-2.1.5.tgz";
+ sha512 = "3cwd4rvsggx0lzc7433v6321fjs65q9nqr3c9gcz7j51ca580aq6ciacmmq788yxb3ih78b1fkpkprm75d0hadj3ng2bznc6qsl1var";
};
};
"sodium-universal-2.0.0" = {
@@ -23334,24 +23766,6 @@ let
sha1 = "32552aa64b458392a85eab3b0b5ee61527167aeb";
};
};
- "source-map-support-0.5.0" = {
- name = "source-map-support";
- packageName = "source-map-support";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.0.tgz";
- sha512 = "3nwgpximc17yn0lfg8658fxkm2hwbpvnbx5x1g0qgqvjm3vzld96rh1gf6iw1srbkicp0m825sq92r9bnj2r2gl8ys0f7fzivf0sjmx";
- };
- };
- "source-map-support-0.5.1" = {
- name = "source-map-support";
- packageName = "source-map-support";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.1.tgz";
- sha512 = "276x5a16yv0nlzjdvspsnbkxqhv8lvfj7a0sfzkaasfcwa2rm1ni3h3c0fva63bfqnazbywvs4pzrnbwg43j7gpymjd9cbbndq5x4qi";
- };
- };
"source-map-support-0.5.3" = {
name = "source-map-support";
packageName = "source-map-support";
@@ -23361,6 +23775,15 @@ let
sha512 = "3xy2ylp2qm8jwglcsf2fjwvn5w56im64w7yjghyv9ilw2fc5qj65w8h38lpls27m3b5prv8x9cnfmrhkfk7rlb52hmf810ycs0i7abq";
};
};
+ "source-map-support-0.5.4" = {
+ name = "source-map-support";
+ packageName = "source-map-support";
+ version = "0.5.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.4.tgz";
+ sha512 = "1vfdnbvldylljhm89hfxwsr3pd108my5z1l9gx8ld1j2v2bfpranqc7kc8i9mj24lbq6c4xxs181anrsa5ypbfd3r08v3c1dqyd4i1w";
+ };
+ };
"source-map-url-0.4.0" = {
name = "source-map-url";
packageName = "source-map-url";
@@ -23577,13 +24000,13 @@ let
sha1 = "512675a28f08f1e581779e1989ab1e13effb49e4";
};
};
- "sshpk-1.13.1" = {
+ "sshpk-1.14.1" = {
name = "sshpk";
packageName = "sshpk";
- version = "1.13.1";
+ version = "1.14.1";
src = fetchurl {
- url = "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz";
- sha1 = "512df6da6287144316dc4c18fe1cf1d940739be3";
+ url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.1.tgz";
+ sha1 = "130f5975eddad963f1d56f92b9ac6c51fa9f83eb";
};
};
"sshpk-1.7.1" = {
@@ -23604,13 +24027,13 @@ let
sha1 = "62e143c18530fda103320b3403e8ad42786d9718";
};
};
- "ssri-5.2.4" = {
+ "ssri-5.3.0" = {
name = "ssri";
packageName = "ssri";
- version = "5.2.4";
+ version = "5.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ssri/-/ssri-5.2.4.tgz";
- sha512 = "2si1dr4dwg0bkvsn38d6rk5raw5lbn2m9giwf8pnhy55wqgxsvv7b1pn252wj166cd8j302a2gwjy00ni473yr1vrxrzmssqs000waj";
+ url = "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz";
+ sha512 = "00qc3iqsi21cc2az3nz36q88psab4ickpzranndk6vmrb6yhn5xsq3kgp21x3lp0406bdaalpb59xy7zzqnl40ans69v3z2l8z8h52x";
};
};
"stable-0.1.6" = {
@@ -23640,6 +24063,15 @@ let
sha1 = "a8f6eaeca90674c333e7c43953f275b451510695";
};
};
+ "stat-mode-0.2.2" = {
+ name = "stat-mode";
+ packageName = "stat-mode";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stat-mode/-/stat-mode-0.2.2.tgz";
+ sha1 = "e6c80b623123d7d80cf132ce538f346289072502";
+ };
+ };
"static-extend-0.1.2" = {
name = "static-extend";
packageName = "static-extend";
@@ -23694,6 +24126,15 @@ let
sha512 = "1xxwqpj713rq1idbmp7mj7cj9dl52lazgpd5x8a9g88jawbkn9xpwbgljl7cvnd0jqkll2zpdj5xy63dlis9l2k8vmx1n1gvyv8456f";
};
};
+ "statuses-1.5.0" = {
+ name = "statuses";
+ packageName = "statuses";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz";
+ sha1 = "161c7dac177659fd9811f43771fa99381478628c";
+ };
+ };
"steno-0.4.4" = {
name = "steno";
packageName = "steno";
@@ -23775,13 +24216,13 @@ let
sha512 = "2h4ymczmf5aqldga4sj8acqlzc3almazi2vwiv7kx63k28sz1wwkqgzzv1hn47jf49k1x94w25fmmi001h5mj3n6g9in1s6b1n5vkcr";
};
};
- "stream-http-2.8.0" = {
+ "stream-http-2.8.1" = {
name = "stream-http";
packageName = "stream-http";
- version = "2.8.0";
+ version = "2.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/stream-http/-/stream-http-2.8.0.tgz";
- sha512 = "2ghzil78wsr29z8p1883i0vwx9gpsspha4wvdbpvqzbknrfiavwis010i5a7vy0xx8n486f6kwmjxsk3mg1w4bjy4whvizriz28b4xi";
+ url = "https://registry.npmjs.org/stream-http/-/stream-http-2.8.1.tgz";
+ sha512 = "3fbvnv92iyjjnbpggg15blfwzyk4q0f5rsdz2wyyd20j05vw8qgmr185r1r36i3m6qqb82il99qn0b09bb4b7s1myvccbf1bsij63bi";
};
};
"stream-parser-0.3.1" = {
@@ -24000,13 +24441,13 @@ let
sha512 = "29s1fqgr4mnhfxwczgdghfmmc1f792m9hysvcjxw2h5lfj8ndf2b6gm02m96qk5m75g4aisijvng4pk618anwbr8i9ay2jyszkqgslw";
};
};
- "string.prototype.codepointat-0.2.0" = {
+ "string.prototype.codepointat-0.2.1" = {
name = "string.prototype.codepointat";
packageName = "string.prototype.codepointat";
- version = "0.2.0";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz";
- sha1 = "6b26e9bd3afcaa7be3b4269b526de1b82000ac78";
+ url = "https://registry.npmjs.org/string.prototype.codepointat/-/string.prototype.codepointat-0.2.1.tgz";
+ sha512 = "1r18lbap331hx5hfic2irpd3rai1ymp5s93p5xfzfr0khw9krkx51glwhmdjxbrk07kryqqdc2fly59avw3pq3q2apq7q487q55bh6r";
};
};
"string2compact-1.2.2" = {
@@ -24162,6 +24603,15 @@ let
sha1 = "956bcc5d84430f69256a90ed823765cd858e159c";
};
};
+ "strip-dirs-2.1.0" = {
+ name = "strip-dirs";
+ packageName = "strip-dirs";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz";
+ sha512 = "3gd7bh1h7xjvl8y6lj1mmsv4qpgbxd620fbp2cjlnc3b9gn7wnzbs1170gs7i6y5arm0dd09y8d74vr357gvwmx9f0616wbw8wv3q14";
+ };
+ };
"strip-eof-1.0.0" = {
name = "strip-eof";
packageName = "strip-eof";
@@ -24216,6 +24666,15 @@ let
sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a";
};
};
+ "strip-outer-1.0.1" = {
+ name = "strip-outer";
+ packageName = "strip-outer";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz";
+ sha512 = "31a8vlzg4gwak3cx7n0lask77xyqpf5mz4ckphc10ykmb9r2lais7v4w8a8xij9lv2115xjnl7avkwp2l7cw3kbc3lpjsghl72757lk";
+ };
+ };
"strong-data-uri-1.0.5" = {
name = "strong-data-uri";
packageName = "strong-data-uri";
@@ -24405,15 +24864,6 @@ let
sha512 = "2q47avrxblc0an2g5ij8sd7ss2bqhdxy2949dk774gyg9vmsivg7fwyn885v2va72sxiv5k59ifvi3hg4ra6z95lr8in6sjyw008jai";
};
};
- "table-4.0.3" = {
- name = "table";
- packageName = "table";
- version = "4.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/table/-/table-4.0.3.tgz";
- sha512 = "0m684sf5sicq9hlavaw7wrm8d10p2vm1cvvrxgl7f2rpqbn5cm6hhsbzb0is6r1bm19p7960dwxif6lc48bz712kx27s176hhafgfjb";
- };
- };
"tabtab-1.3.2" = {
name = "tabtab";
packageName = "tabtab";
@@ -24505,13 +24955,13 @@ let
sha512 = "1ryql8hyrrhd0gdd71ishbj3cnr8ay0i0wpvy9mj3hjiy35cc1wa0h07wz8jwils98j00gr03ix3cf2j1xm43xjn9bsavwn1yr4a0x5";
};
};
- "tar-4.4.0" = {
+ "tar-4.4.1" = {
name = "tar";
packageName = "tar";
- version = "4.4.0";
+ version = "4.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-4.4.0.tgz";
- sha512 = "2jqkq86l5d9kaqvxd7m5r48smv4f8y10vx7r0rpwafwz5sskrmlpdswp8g351jfk5if2jv0a3wbjpss31x1cf6x5dx8zhib465576c0";
+ url = "https://registry.npmjs.org/tar/-/tar-4.4.1.tgz";
+ sha512 = "33gymcvk33znj1lscj0kds60g5jzagw2dcx1fcbpxz85pi21kqlazvwz579p301x0vqvir1nslh901zq28sfx2zpsnd7qldvjpzbsrv";
};
};
"tar-fs-1.16.0" = {
@@ -24757,6 +25207,15 @@ let
sha1 = "faa0e9d230c51acc95ca13a361ac05ca7e04553d";
};
};
+ "thunkify-wrap-1.0.4" = {
+ name = "thunkify-wrap";
+ packageName = "thunkify-wrap";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thunkify-wrap/-/thunkify-wrap-1.0.4.tgz";
+ sha1 = "b52be548ddfefda20e00b58c6096762b43dd6880";
+ };
+ };
"thunky-0.1.0" = {
name = "thunky";
packageName = "thunky";
@@ -24874,13 +25333,13 @@ let
sha1 = "320b5a52d83abb5978d81a3e887d4aefb15a6164";
};
};
- "titleize-1.0.0" = {
+ "titleize-1.0.1" = {
name = "titleize";
packageName = "titleize";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/titleize/-/titleize-1.0.0.tgz";
- sha1 = "7d350722061830ba6617631e0cfd3ea08398d95a";
+ url = "https://registry.npmjs.org/titleize/-/titleize-1.0.1.tgz";
+ sha512 = "1xp43r14ynva5c21rihxm625x47109zj7k3j0cpdmm74lc4fwml3vags077221gz2gf7vafwnskncmag4wnsisiz0bmiawapc70ck5d";
};
};
"tmp-0.0.28" = {
@@ -25072,13 +25531,13 @@ let
sha1 = "50346e42a43b35daf2a86f414afb153629a854be";
};
};
- "torrent-stream-1.0.3" = {
+ "torrent-stream-1.0.4" = {
name = "torrent-stream";
packageName = "torrent-stream";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/torrent-stream/-/torrent-stream-1.0.3.tgz";
- sha1 = "d8c043b44c3c448c9397a3aec42d2df55887037b";
+ url = "https://registry.npmjs.org/torrent-stream/-/torrent-stream-1.0.4.tgz";
+ sha512 = "3ka40l845bfjydjk9jbiz27x4cqd8birv5zfzvdm7ciij7r53ydz6y7pwmk0628qwdnkchgh10z4kdc3408zi8a8pimq7506qrji010";
};
};
"tosource-1.0.0" = {
@@ -25234,6 +25693,15 @@ let
sha1 = "9f9ba9d9efa8764c387698bcbfeb2c848f11adb3";
};
};
+ "trim-repeated-1.0.0" = {
+ name = "trim-repeated";
+ packageName = "trim-repeated";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz";
+ sha1 = "e3646a2ea4e891312bf7eace6cfb05380bc01c21";
+ };
+ };
"trim-right-1.0.1" = {
name = "trim-right";
packageName = "trim-right";
@@ -25450,6 +25918,15 @@ let
sha512 = "2gjv6xyp9rqfdfqadayc4b36b79sjdiwsxa38z43v01cdn3xbc06ax90mjv36hxj9j96nfbwr6w1wn7n0zq8f3y3fw4jfy0j1hw5557";
};
};
+ "typescript-2.8.1" = {
+ name = "typescript";
+ packageName = "typescript";
+ version = "2.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typescript/-/typescript-2.8.1.tgz";
+ sha512 = "1v0ac83sjf21wg11fpllicxz8irx9yg341zmng7vz15524gbfphc9ch70n4x9r70gm0r4ak79xyaxw9zh6b2cwcs7mg447qvzlxz3q2";
+ };
+ };
"typewise-1.0.3" = {
name = "typewise";
packageName = "typewise";
@@ -25558,13 +26035,13 @@ let
sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd";
};
};
- "uglify-js-3.3.14" = {
+ "uglify-js-3.3.18" = {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.3.14";
+ version = "3.3.18";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.14.tgz";
- sha512 = "0b7d9nvyrhc5ij0xaxvgha7h97d5h36zhnwmbbbj5abk64bvn38sf4d5jwy64n8algm2q36a08n0z4k4khhnnq4h4ysvrin0lyib3rr";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.18.tgz";
+ sha512 = "3vg4gpamx95s8md0lsnx3njijc8x5z8nifn2c204w261w09h7d65zjkm9mxy4v3scrab7nhd6qypdq5jgf8nkbvzvqp8akpzwbch62n";
};
};
"uglify-js-3.3.6" = {
@@ -25585,22 +26062,13 @@ let
sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7";
};
};
- "uglifyjs-webpack-plugin-0.4.6" = {
+ "uglifyjs-webpack-plugin-1.2.4" = {
name = "uglifyjs-webpack-plugin";
packageName = "uglifyjs-webpack-plugin";
- version = "0.4.6";
+ version = "1.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz";
- sha1 = "b951f4abb6bd617e66f63eb891498e391763e309";
- };
- };
- "uglifyjs-webpack-plugin-1.2.3" = {
- name = "uglifyjs-webpack-plugin";
- packageName = "uglifyjs-webpack-plugin";
- version = "1.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.3.tgz";
- sha512 = "3dhgxlb6k66s9ah10iapb3lsyygxg6hxrdrs734pgppyrqf8h9ib6mv1vhja19j1chnhffqryl84i6p77qmdq86i53f5fkmgv9zkkva";
+ url = "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.4.tgz";
+ sha512 = "14jcr2nd1d4l940llkm93b2rm9886qi9vz16ab85nji84bmsr99rvzvv4vwzj3j0m2lpkkm2gskd4p29lv4vzjr76zp6vxwjn71nhng";
};
};
"uid-0.0.2" = {
@@ -25666,13 +26134,13 @@ let
sha1 = "483126e11774df2f71b8b639dcd799c376162b82";
};
};
- "uint64be-2.0.1" = {
+ "uint64be-2.0.2" = {
name = "uint64be";
packageName = "uint64be";
- version = "2.0.1";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/uint64be/-/uint64be-2.0.1.tgz";
- sha1 = "a310d94e4e5e0b02a95d678e33323f802bdc8428";
+ url = "https://registry.npmjs.org/uint64be/-/uint64be-2.0.2.tgz";
+ sha512 = "34jzmdzz81fdi4s48rxr9dzs63iln7w6y9d44ckq6nvxd6v7y0wpc6x90zc2md21ddc1abfwk5h20py3s79bzhknqqphkchj6z9s2pm";
};
};
"ultron-1.0.2" = {
@@ -25693,13 +26161,22 @@ let
sha512 = "0x78hsv3jykmjl6qdqlqiz7v5nf06li8b5yvzpj6grnzwbcjch8ngyg55lm8g8mg4znvk7qbryvrr2dxacz3cvyb1nsm64qsw21g0ah";
};
};
- "umd-3.0.2" = {
+ "umd-3.0.3" = {
name = "umd";
packageName = "umd";
- version = "3.0.2";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/umd/-/umd-3.0.2.tgz";
- sha512 = "0wgy2hbi34ncj74m0vw30yjcrw0wg3m465r28y458kvvkp7lsmm3klki0f79slyspfnr4c3l0qzcmpggcybk4d6lcb05kh0aj5c2rx6";
+ url = "https://registry.npmjs.org/umd/-/umd-3.0.3.tgz";
+ sha512 = "2iz3bypw716y5lgdg89d7jwnkqnla4sid3l5hr2259ypf8h6sbkw3n0xa51ckzkkayf0c39ksaiax2j6ighj36p5ipwh5p1wx50d1z0";
+ };
+ };
+ "unbzip2-stream-1.2.5" = {
+ name = "unbzip2-stream";
+ packageName = "unbzip2-stream";
+ version = "1.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.2.5.tgz";
+ sha512 = "0xgvidx384p6cc8zh4m0qq000cn140dsckkijf95ka6iqi9j5nsrjrrf3mr3gxnybcvf2l4hxkaf0j7cqxncm3lnpq4ripw2j7zfc4b";
};
};
"unc-path-regex-0.1.2" = {
@@ -26035,6 +26512,15 @@ let
sha1 = "7f1f302055b3fea0f3e81dc78eb36766cb65e3f1";
};
};
+ "unyield-0.0.1" = {
+ name = "unyield";
+ packageName = "unyield";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unyield/-/unyield-0.0.1.tgz";
+ sha1 = "150e65da42bf7742445b958a64eb9b85d1d2b180";
+ };
+ };
"unzip-response-1.0.2" = {
name = "unzip-response";
packageName = "unzip-response";
@@ -26053,15 +26539,6 @@ let
sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97";
};
};
- "upath-1.0.2" = {
- name = "upath";
- packageName = "upath";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/upath/-/upath-1.0.2.tgz";
- sha512 = "19nv38v416yy515gbq0lvg549w1m48mg17ibl9jp6g0pzlzg6j3lzygbw3c4ia2i9vk0ij0g4fcwfvsa9snxpgdk4a7qbprnj7s4abw";
- };
- };
"upath-1.0.4" = {
name = "upath";
packageName = "upath";
@@ -26098,6 +26575,15 @@ let
sha1 = "4e8827a6bb915140ab093559d7014e3ebb837451";
};
};
+ "update-notifier-2.4.0" = {
+ name = "update-notifier";
+ packageName = "update-notifier";
+ version = "2.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.4.0.tgz";
+ sha1 = "f9b4c700fbfd4ec12c811587258777d563d8c866";
+ };
+ };
"update-section-0.3.3" = {
name = "update-section";
packageName = "update-section";
@@ -26323,22 +26809,22 @@ let
sha1 = "ae43eb7745f5fe63dcc2f277cb4164ad27087f30";
};
};
- "utp-native-1.6.2" = {
+ "utp-native-1.7.0" = {
name = "utp-native";
packageName = "utp-native";
- version = "1.6.2";
+ version = "1.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/utp-native/-/utp-native-1.6.2.tgz";
- sha512 = "2mcnn6w5as2dvz6rj4fb33174z3a1rl9bm2cfazrr4084gq7aal0bkmkwr1cjpkvy1zgni3zdk0570fx7cmnd0k0hg18wfb2hvbigfg";
+ url = "https://registry.npmjs.org/utp-native/-/utp-native-1.7.0.tgz";
+ sha512 = "1d0ccaz56506y44838shld6zkqx9rcx3cpw5qddbfbyjyjr73704gysrl3qwii6i80kx1i2ysnn8bdx6q0i4biwzjj36ksx2865i0yz";
};
};
- "uue-3.1.1" = {
+ "uue-3.1.2" = {
name = "uue";
packageName = "uue";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/uue/-/uue-3.1.1.tgz";
- sha512 = "29ykgvcsrhwbifm7aa4mf8876c6z2ksc26cnpxf3ljwhg7vfrjz2asvl7ylkjj91alnp2d7n1xvi5qphmn0a1ci091a20mdmnbzg91i";
+ url = "https://registry.npmjs.org/uue/-/uue-3.1.2.tgz";
+ sha512 = "0pcj6km8jmr85nr0xvnq9nmicnz9a2ysy8bj7s9qxin8c0hzd992bwx8bsnxlmbw02iynqyp0l7a9c7zi2ipqrsfczx5ddhb9fqn4kb";
};
};
"uuid-2.0.3" = {
@@ -26800,13 +27286,13 @@ let
sha1 = "631bdbf716dccab0e65291a8dc25c23232085a52";
};
};
- "walk-2.3.9" = {
+ "walk-2.3.13" = {
name = "walk";
packageName = "walk";
- version = "2.3.9";
+ version = "2.3.13";
src = fetchurl {
- url = "https://registry.npmjs.org/walk/-/walk-2.3.9.tgz";
- sha1 = "31b4db6678f2ae01c39ea9fb8725a9031e558a7b";
+ url = "https://registry.npmjs.org/walk/-/walk-2.3.13.tgz";
+ sha512 = "2g4ayyccqgq4fx68dhds9pwhvj2344n9p0lhb4z1hnsi882apm64s434lqz57rx4b0r1x9w1njfqrywd1la0ljqm7j4xxg8nixqri7g";
};
};
"walk-sync-0.3.2" = {
@@ -26827,15 +27313,6 @@ let
sha1 = "d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4";
};
};
- "watchpack-1.4.0" = {
- name = "watchpack";
- packageName = "watchpack";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/watchpack/-/watchpack-1.4.0.tgz";
- sha1 = "4a1472bcbb952bd0a9bb4036801f954dfb39faac";
- };
- };
"watchpack-1.5.0" = {
name = "watchpack";
packageName = "watchpack";
@@ -26872,15 +27349,6 @@ let
sha512 = "15gwgjh9anvzcissfhxy3gki7jxn1dy9vq5rma1sgwkbbra8wbxnvimwalgmy8anm33x56mfp492akzhs0gidwmbnadx0ck3fdq23v1";
};
};
- "webpack-3.10.0" = {
- name = "webpack";
- packageName = "webpack";
- version = "3.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-3.10.0.tgz";
- sha512 = "0n3rl5qq259csi0x5qh12wzyaypfds5wy0zrzky19wqsa0mjibrn19fdfgbabply2l576vlj8j69nzkb23jqfy6a36xb3cwi1g4l73z";
- };
- };
"webpack-sources-1.1.0" = {
name = "webpack-sources";
packageName = "webpack-sources";
@@ -26917,13 +27385,13 @@ let
sha512 = "1bq9cabpvsx4b0aajmbhsgkdzh816rrixhbnsmvcr0ypcndhn5zz9fggfc8i4l2s00b6jhif65phkc9l6zvika8ngb21rip9qx4pj4m";
};
};
- "whatwg-fetch-2.0.3" = {
+ "whatwg-fetch-2.0.4" = {
name = "whatwg-fetch";
packageName = "whatwg-fetch";
- version = "2.0.3";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz";
- sha1 = "9c84ec2dcf68187ff00bc64e1274b442176e1c84";
+ url = "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz";
+ sha512 = "2g4p2ymmww4wm7cf86xwpb0dndwlxk1gg3brsrj892a4z593h25hyhqv0rmv4hzz4zxv3smmaflsnhilakfpr6y8f2gf3sfd8ckbi3m";
};
};
"whatwg-url-6.3.0" = {
@@ -27043,6 +27511,15 @@ let
sha1 = "f45f10d141086c5d94ae14c03b2098440a7e71b0";
};
};
+ "win-fork-1.1.1" = {
+ name = "win-fork";
+ packageName = "win-fork";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/win-fork/-/win-fork-1.1.1.tgz";
+ sha1 = "8f58e0656fca00adc8c86a2b89e3cd2d6a2d5e5e";
+ };
+ };
"win-release-1.1.1" = {
name = "win-release";
packageName = "win-release";
@@ -27421,15 +27898,6 @@ let
sha1 = "de3ee912477be2f250b60f612f34a8c4da616efe";
};
};
- "xml-char-classes-1.0.0" = {
- name = "xml-char-classes";
- packageName = "xml-char-classes";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/xml-char-classes/-/xml-char-classes-1.0.0.tgz";
- sha1 = "64657848a20ffc5df583a42ad8a277b4512bbc4d";
- };
- };
"xml2js-0.1.14" = {
name = "xml2js";
packageName = "xml2js";
@@ -27737,6 +28205,15 @@ let
sha1 = "8452b4bb7e83c7c188d8041c1a837c773d6d8bb9";
};
};
+ "yaml-js-0.0.8" = {
+ name = "yaml-js";
+ packageName = "yaml-js";
+ version = "0.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yaml-js/-/yaml-js-0.0.8.tgz";
+ sha1 = "87cfa5a9613f48e26005420d6a8ee0da6fe8daec";
+ };
+ };
"yargs-1.3.3" = {
name = "yargs";
packageName = "yargs";
@@ -27746,15 +28223,6 @@ let
sha1 = "054de8b61f22eefdb7207059eaef9d6b83fb931a";
};
};
- "yargs-10.0.3" = {
- name = "yargs";
- packageName = "yargs";
- version = "10.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-10.0.3.tgz";
- sha512 = "1vn6jsqrhybxddyhmvkh0d43n2lk1z8081glfq80zpjfs4xgwpk0mmgdiry9zgsihmv9a2qidmp5hhyqqq8mzzkr037wla0qd1nk80f";
- };
- };
"yargs-10.1.2" = {
name = "yargs";
packageName = "yargs";
@@ -27764,6 +28232,24 @@ let
sha512 = "25gvc8vjalpbv69v0frmh10x203dsnl0jrnx8c2mww3qrxl69kms5ppzry3lp51lgaby524hc6qa80kgrz0zcdvas8flq26l33aix4a";
};
};
+ "yargs-11.0.0" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "11.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-11.0.0.tgz";
+ sha512 = "03n9lfnyx1dfj5sm811f3d96djsr6fixd5qi6cl6wj8xf0y01sgn7w3ynv5gn2vl30dwq5mz2hw5f522v8xbwc8m9h6nf8hqsa7wfj6";
+ };
+ };
+ "yargs-11.1.0" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "11.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-11.1.0.tgz";
+ sha512 = "3j5awbfcbh8ik0kz01mycydpi1bz9fg70xc66lk1r1qvrs5x41i2w8nvgj0aip7z9vypcsxks76z75sz4lr6z3ida9c04inkvsbl19p";
+ };
+ };
"yargs-3.10.0" = {
name = "yargs";
packageName = "yargs";
@@ -27881,6 +28367,15 @@ let
sha512 = "0jyff04yy5xlrgvccky4f7phgp99lk2r1n7dk67hkb0picdjpa2ap27g4jrm94cw1d31vw8sh2b5cvnvga2w838bgh6l1kwld1bmzy8";
};
};
+ "yargs-parser-9.0.2" = {
+ name = "yargs-parser";
+ packageName = "yargs-parser";
+ version = "9.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-9.0.2.tgz";
+ sha1 = "9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077";
+ };
+ };
"yauzl-2.4.1" = {
name = "yauzl";
packageName = "yauzl";
@@ -27926,22 +28421,22 @@ let
sha1 = "94ab784896a64f53a9fac452d5e9133e2750a236";
};
};
- "yeoman-environment-2.0.5" = {
+ "yeoman-environment-2.0.6" = {
name = "yeoman-environment";
packageName = "yeoman-environment";
- version = "2.0.5";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-2.0.5.tgz";
- sha512 = "3kfwj39dplgp9w79zmk9p5hm4dfw21304srx68f0hzxhak45iql4j8gzxj4l3q9p4jcmwf25ar0ak4sm57rzx46bv4z2f3q3vybpxgb";
+ url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-2.0.6.tgz";
+ sha512 = "0z4544lfc7gzyp98fihqwi42p0j2dqwgrcl99i1d0b04qkslfv3im5r0xvp8rvapiqlwjg48b63kr5p1japcz3548wg445w7i6w2ccg";
};
};
- "yosay-2.0.1" = {
+ "yosay-2.0.2" = {
name = "yosay";
packageName = "yosay";
- version = "2.0.1";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/yosay/-/yosay-2.0.1.tgz";
- sha512 = "1n6z65vkm1r31a1ms8wn32m9q61vrlz9isn43lm00qka1zvnich78zbnp29xwy72z361is2yimrpglmc55w97hbi9pas5pqlnvqbpw4";
+ url = "https://registry.npmjs.org/yosay/-/yosay-2.0.2.tgz";
+ sha512 = "1n24pfz9fc1pd1p1cc2bl3jy6nb9xxbqadmzx3grims5xmk9r64xy98ybnim6wwz4kj3z91qc391v785s4876ki6749xcly7ngzmxba";
};
};
"zen-observable-0.5.2" = {
@@ -28040,10 +28535,10 @@ in
sources."chalk-1.1.3"
sources."chmodr-1.0.2"
sources."colors-1.2.1"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."concat-map-0.0.1"
sources."convert-source-map-1.5.1"
- sources."core-js-2.5.3"
+ sources."core-js-2.5.4"
sources."deasync-0.1.12"
sources."debug-2.6.9"
sources."detect-indent-4.0.0"
@@ -28066,7 +28561,7 @@ in
sources."home-or-tmp-2.0.0"
sources."homedir-polyfill-1.0.1"
sources."ini-1.3.5"
- sources."invariant-2.2.3"
+ sources."invariant-2.2.4"
sources."is-3.2.1"
sources."is-finite-1.0.2"
sources."is-windows-1.0.2"
@@ -28090,7 +28585,7 @@ in
sources."mkdirp-0.5.1"
sources."moment-2.20.1"
sources."ms-2.0.0"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
sources."node.extend-2.0.0"
sources."nomnom-1.8.1"
sources."number-is-nan-1.0.1"
@@ -28103,7 +28598,7 @@ in
sources."private-0.1.8"
sources."regenerator-runtime-0.11.1"
sources."repeating-2.0.1"
- sources."resolve-1.5.0"
+ sources."resolve-1.6.0"
sources."sax-0.5.8"
sources."slash-1.0.0"
sources."source-map-0.6.1"
@@ -28156,7 +28651,7 @@ in
sources."chromium-pickle-js-0.2.0"
sources."co-4.6.0"
sources."combined-stream-1.0.6"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."concat-map-0.0.1"
sources."core-util-is-1.0.2"
(sources."cryptiles-3.1.2" // {
@@ -28222,7 +28717,7 @@ in
sources."rimraf-2.6.2"
sources."safe-buffer-5.1.1"
sources."sntp-2.1.0"
- sources."sshpk-1.13.1"
+ sources."sshpk-1.14.1"
sources."string_decoder-0.10.31"
sources."stringstream-0.0.5"
sources."tmp-0.0.28"
@@ -28251,15 +28746,15 @@ in
azure-cli = nodeEnv.buildNodePackage {
name = "azure-cli";
packageName = "azure-cli";
- version = "0.10.17";
+ version = "0.10.18";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-cli/-/azure-cli-0.10.17.tgz";
- sha1 = "e991dfa17dc5d7d91731180851fd9cbfbadf73c3";
+ url = "https://registry.npmjs.org/azure-cli/-/azure-cli-0.10.18.tgz";
+ sha512 = "05k876g0s9ac53vrqqcn5h2l6s9ccawihr29gxvj8fib49qg2mhf1v52277r2wgcjxibj7vq2b3zp2jkp0vwd6d1pkv8alwf84ri6wc";
};
dependencies = [
sources."@types/caseless-0.12.1"
sources."@types/form-data-2.2.1"
- sources."@types/node-8.9.5"
+ sources."@types/node-8.10.1"
sources."@types/request-2.47.0"
sources."@types/tough-cookie-2.3.2"
sources."@types/uuid-3.4.3"
@@ -28326,7 +28821,7 @@ in
sources."azure-arm-hdinsight-jobs-0.1.0"
sources."azure-arm-insights-0.11.3"
sources."azure-arm-iothub-1.0.1-preview"
- sources."azure-arm-network-4.0.1"
+ sources."azure-arm-network-5.1.0"
(sources."azure-arm-powerbiembedded-0.1.0" // {
dependencies = [
sources."async-0.2.7"
@@ -28433,16 +28928,17 @@ in
sources."brace-expansion-1.1.11"
sources."browserify-mime-1.2.9"
sources."buffer-equal-constant-time-1.0.1"
+ sources."buffer-from-1.0.0"
sources."caller-id-0.1.0"
sources."caseless-0.12.0"
sources."chalk-0.4.0"
- sources."clone-1.0.3"
+ sources."clone-1.0.4"
sources."co-4.6.0"
sources."colors-1.1.2"
sources."combined-stream-1.0.6"
sources."commander-1.0.4"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.1"
+ sources."concat-stream-1.6.2"
sources."core-util-is-1.0.2"
(sources."cryptiles-3.1.2" // {
dependencies = [
@@ -28523,7 +29019,7 @@ in
sources."jws-3.1.4"
sources."jwt-decode-2.2.0"
sources."keypress-0.1.0"
- (sources."kuduscript-1.0.15" // {
+ (sources."kuduscript-1.0.16" // {
dependencies = [
sources."commander-1.1.1"
sources."streamline-0.4.11"
@@ -28537,7 +29033,7 @@ in
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
- sources."moment-2.21.0"
+ sources."moment-2.22.0"
(sources."ms-rest-2.3.2" // {
dependencies = [
sources."extend-3.0.1"
@@ -28546,12 +29042,12 @@ in
sources."tunnel-0.0.5"
];
})
- (sources."ms-rest-azure-2.5.4" // {
+ (sources."ms-rest-azure-2.5.5" // {
dependencies = [
- sources."@types/node-9.4.7"
+ sources."@types/node-9.6.1"
(sources."adal-node-0.1.28" // {
dependencies = [
- sources."@types/node-8.9.5"
+ sources."@types/node-8.10.1"
];
})
sources."async-2.6.0"
@@ -28606,7 +29102,7 @@ in
sources."boom-2.10.1"
sources."caseless-0.11.0"
sources."chalk-1.1.3"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."cryptiles-2.0.5"
sources."extend-3.0.1"
sources."form-data-1.0.1"
@@ -28633,7 +29129,7 @@ in
sources."asn1-0.1.11"
];
})
- sources."sshpk-1.13.1"
+ sources."sshpk-1.14.1"
sources."stack-trace-0.0.10"
sources."stream-combiner-0.0.4"
sources."streamline-0.10.17"
@@ -28692,10 +29188,10 @@ in
bower = nodeEnv.buildNodePackage {
name = "bower";
packageName = "bower";
- version = "1.8.2";
+ version = "1.8.4";
src = fetchurl {
- url = "https://registry.npmjs.org/bower/-/bower-1.8.2.tgz";
- sha1 = "adf53529c8d4af02ef24fb8d5341c1419d33e2f7";
+ url = "https://registry.npmjs.org/bower/-/bower-1.8.4.tgz";
+ sha1 = "e7876a076deb8137f7d06525dc5e8c66db82f28a";
};
buildInputs = globalBuildInputs;
meta = {
@@ -28718,7 +29214,7 @@ in
sources."argparse-1.0.4"
sources."array-find-index-1.0.2"
sources."balanced-match-1.0.0"
- sources."bower-1.8.2"
+ sources."bower-1.8.4"
sources."bower-endpoint-parser-0.2.1"
sources."bower-json-0.6.0"
sources."bower-logger-0.2.1"
@@ -28772,7 +29268,7 @@ in
sources."minimist-1.2.0"
sources."mkdirp-0.5.1"
sources."ms-2.0.0"
- sources."natives-1.1.1"
+ sources."natives-1.1.2"
sources."normalize-package-data-2.4.0"
sources."number-is-nan-1.0.1"
sources."object-assign-4.1.1"
@@ -28848,7 +29344,7 @@ in
sources."bn.js-4.11.8"
sources."brace-expansion-1.1.11"
sources."brorand-1.1.0"
- sources."browser-pack-6.0.4"
+ sources."browser-pack-6.1.0"
(sources."browser-resolve-1.11.2" // {
dependencies = [
sources."resolve-1.1.7"
@@ -28861,13 +29357,14 @@ in
sources."browserify-sign-4.0.4"
sources."browserify-zlib-0.2.0"
sources."buffer-5.1.0"
+ sources."buffer-from-1.0.0"
sources."buffer-xor-1.0.3"
sources."builtin-status-codes-3.0.0"
sources."cached-path-relative-1.0.1"
sources."cipher-base-1.0.4"
sources."combine-source-map-0.8.0"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.1"
+ sources."concat-stream-1.6.2"
sources."console-browserify-1.1.0"
sources."constants-browserify-1.0.0"
sources."convert-source-map-1.1.3"
@@ -28900,29 +29397,18 @@ in
sources."hmac-drbg-1.0.1"
sources."htmlescape-1.1.1"
sources."https-browserify-1.0.0"
- sources."ieee754-1.1.8"
+ sources."ieee754-1.1.11"
sources."indexof-0.0.1"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."inline-source-map-0.6.2"
- (sources."insert-module-globals-7.0.2" // {
- dependencies = [
- sources."combine-source-map-0.7.2"
- sources."concat-stream-1.5.2"
- sources."readable-stream-2.0.6"
- sources."string_decoder-0.10.31"
- ];
- })
+ sources."insert-module-globals-7.0.5"
sources."is-buffer-1.1.6"
- sources."isarray-1.0.0"
+ sources."isarray-2.0.4"
sources."json-stable-stringify-0.0.1"
sources."jsonify-0.0.0"
sources."jsonparse-1.3.1"
- (sources."labeled-stream-splicer-2.0.0" // {
- dependencies = [
- sources."isarray-0.0.1"
- ];
- })
+ sources."labeled-stream-splicer-2.0.1"
sources."lexical-scope-1.2.0"
sources."lodash.memoize-3.0.4"
sources."md5.js-1.3.4"
@@ -28932,7 +29418,7 @@ in
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
- (sources."module-deps-6.0.0" // {
+ (sources."module-deps-6.0.2" // {
dependencies = [
sources."acorn-5.5.3"
sources."minimist-1.2.0"
@@ -28949,7 +29435,7 @@ in
sources."path-platform-0.11.15"
sources."pbkdf2-3.0.14"
sources."process-0.11.10"
- sources."process-nextick-args-1.0.7"
+ sources."process-nextick-args-2.0.0"
sources."public-encrypt-4.0.0"
sources."punycode-1.4.1"
sources."querystring-0.2.0"
@@ -28959,19 +29445,19 @@ in
sources."read-only-stream-2.0.0"
(sources."readable-stream-2.3.5" // {
dependencies = [
- sources."process-nextick-args-2.0.0"
+ sources."isarray-1.0.0"
];
})
- sources."resolve-1.5.0"
+ sources."resolve-1.6.0"
sources."ripemd160-2.0.1"
sources."safe-buffer-5.1.1"
- sources."sha.js-2.4.10"
+ sources."sha.js-2.4.11"
sources."shasum-1.0.2"
sources."shell-quote-1.6.1"
sources."source-map-0.5.7"
sources."stream-browserify-2.0.1"
sources."stream-combiner2-1.1.1"
- sources."stream-http-2.8.0"
+ sources."stream-http-2.8.1"
sources."stream-splicer-2.0.0"
sources."string_decoder-1.0.3"
(sources."subarg-1.0.0" // {
@@ -28986,7 +29472,7 @@ in
sources."to-arraybuffer-1.0.1"
sources."tty-browserify-0.0.1"
sources."typedarray-0.0.6"
- sources."umd-3.0.2"
+ sources."umd-3.0.3"
(sources."url-0.11.0" // {
dependencies = [
sources."punycode-1.3.2"
@@ -29033,7 +29519,7 @@ in
sources."async-0.2.10"
sources."aws-sign-0.2.0"
sources."balanced-match-1.0.0"
- sources."base64-js-1.2.0"
+ sources."base64-js-1.2.3"
sources."bencode-2.0.0"
sources."bitfield-0.1.0"
sources."bittorrent-dht-6.4.2"
@@ -29043,9 +29529,12 @@ in
sources."bncode-0.5.3"
sources."boom-0.3.8"
sources."brace-expansion-1.1.11"
+ sources."buffer-alloc-1.1.0"
sources."buffer-alloc-unsafe-1.0.0"
sources."buffer-equal-0.0.1"
sources."buffer-equals-1.0.4"
+ sources."buffer-fill-0.1.1"
+ sources."buffer-from-1.0.0"
sources."bufferview-1.0.1"
sources."builtin-modules-1.1.1"
sources."bytebuffer-3.5.5"
@@ -29062,10 +29551,10 @@ in
sources."codepage-1.4.0"
sources."colour-0.7.1"
sources."combined-stream-0.0.7"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."compact2string-1.4.0"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.1"
+ sources."concat-stream-1.6.2"
sources."cookie-jar-0.2.0"
sources."core-util-is-1.0.2"
sources."cryptiles-0.1.3"
@@ -29179,8 +29668,8 @@ in
sources."path-exists-2.1.0"
sources."path-is-absolute-1.0.1"
sources."path-type-1.1.0"
- sources."peer-wire-protocol-0.7.0"
- (sources."peer-wire-swarm-0.12.1" // {
+ sources."peer-wire-protocol-0.7.1"
+ (sources."peer-wire-swarm-0.12.2" // {
dependencies = [
sources."bncode-0.2.3"
];
@@ -29188,6 +29677,7 @@ in
(sources."peerflix-0.34.0" // {
dependencies = [
sources."bencode-0.7.0"
+ sources."buffer-alloc-unsafe-0.1.1"
sources."debug-3.1.0"
sources."end-of-stream-0.1.5"
sources."get-stdin-5.0.1"
@@ -29218,7 +29708,7 @@ in
sources."supports-color-0.2.0"
];
})
- sources."plist-2.1.0"
+ sources."plist-3.0.1"
sources."process-nextick-args-2.0.0"
sources."promiscuous-0.6.0"
sources."protobufjs-3.8.2"
@@ -29255,8 +29745,8 @@ in
sources."request-2.16.6"
sources."rimraf-2.6.2"
sources."router-0.6.2"
- sources."run-parallel-1.1.7"
- sources."run-series-1.1.4"
+ sources."run-parallel-1.1.8"
+ sources."run-series-1.1.6"
sources."rusha-0.8.13"
sources."rx-2.5.3"
sources."safe-buffer-5.1.1"
@@ -29304,7 +29794,7 @@ in
];
})
sources."torrent-piece-1.1.1"
- (sources."torrent-stream-1.0.3" // {
+ (sources."torrent-stream-1.0.4" // {
dependencies = [
sources."bencode-0.8.0"
sources."debug-2.6.9"
@@ -29330,12 +29820,8 @@ in
sources."wrap-fn-0.1.5"
sources."wrappy-1.0.2"
sources."ws-1.1.5"
- (sources."xml2js-0.4.19" // {
- dependencies = [
- sources."xmlbuilder-9.0.7"
- ];
- })
- sources."xmlbuilder-8.2.2"
+ sources."xml2js-0.4.19"
+ sources."xmlbuilder-9.0.7"
sources."xmldom-0.1.27"
sources."xspfr-0.3.1"
sources."xtend-4.0.1"
@@ -29400,13 +29886,13 @@ in
sources."axios-0.17.1"
sources."chalk-2.3.2"
sources."cli-cursor-2.1.0"
- sources."cli-spinners-1.1.0"
+ sources."cli-spinners-1.3.0"
sources."cli-table2-0.2.0"
sources."code-point-at-1.1.0"
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
sources."colors-1.2.1"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."debug-3.1.0"
sources."escape-string-regexp-1.0.5"
sources."follow-redirects-1.4.1"
@@ -29505,7 +29991,7 @@ in
sources."balanced-match-1.0.0"
sources."base64-js-0.0.8"
sources."bcrypt-pbkdf-1.0.1"
- sources."big-integer-1.6.26"
+ sources."big-integer-1.6.27"
sources."block-stream-0.0.9"
sources."bn.js-4.11.8"
(sources."body-parser-1.18.2" // {
@@ -29518,7 +30004,7 @@ in
sources."bplist-parser-0.1.1"
sources."brace-expansion-1.1.11"
sources."brorand-1.1.0"
- sources."browser-pack-6.0.4"
+ sources."browser-pack-6.1.0"
(sources."browser-resolve-1.11.2" // {
dependencies = [
sources."resolve-1.1.7"
@@ -29537,6 +30023,7 @@ in
sources."browserify-transform-tools-1.7.0"
sources."browserify-zlib-0.1.4"
sources."buffer-5.1.0"
+ sources."buffer-from-1.0.0"
sources."buffer-xor-1.0.3"
sources."builtin-modules-1.1.1"
sources."builtin-status-codes-3.0.0"
@@ -29551,7 +30038,7 @@ in
sources."code-point-at-1.1.0"
sources."combine-source-map-0.8.0"
sources."combined-stream-1.0.6"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."compressible-2.0.13"
sources."compression-1.7.2"
sources."concat-map-0.0.1"
@@ -29581,14 +30068,13 @@ in
(sources."cordova-js-4.2.2" // {
dependencies = [
sources."acorn-5.5.3"
- sources."isarray-0.0.1"
+ sources."isarray-2.0.4"
];
})
(sources."cordova-lib-8.0.0" // {
dependencies = [
sources."acorn-4.0.13"
sources."base64-js-1.2.3"
- sources."combine-source-map-0.7.2"
sources."glob-7.1.1"
sources."hash-base-2.0.2"
sources."isarray-1.0.0"
@@ -29689,15 +30175,11 @@ in
sources."hoek-2.16.3"
sources."hosted-git-info-2.6.0"
sources."htmlescape-1.1.1"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- ];
- })
+ sources."http-errors-1.6.3"
sources."http-signature-1.1.1"
sources."https-browserify-1.0.0"
sources."iconv-lite-0.4.19"
- sources."ieee754-1.1.8"
+ sources."ieee754-1.1.11"
sources."imurmurhash-0.1.4"
sources."indexof-0.0.1"
sources."infinity-agent-2.0.3"
@@ -29707,7 +30189,11 @@ in
sources."init-package-json-1.10.3"
sources."inline-source-map-0.6.2"
sources."inquirer-0.10.1"
- sources."insert-module-globals-7.0.2"
+ (sources."insert-module-globals-7.0.5" // {
+ dependencies = [
+ sources."concat-stream-1.6.2"
+ ];
+ })
(sources."insight-0.8.4" // {
dependencies = [
(sources."configstore-1.4.0" // {
@@ -29734,11 +30220,11 @@ in
sources."is-redirect-1.0.0"
sources."is-stream-1.1.0"
sources."is-typedarray-1.0.0"
- sources."is-url-1.2.2"
+ sources."is-url-1.2.4"
sources."isarray-0.0.1"
sources."isstream-0.1.2"
sources."jsbn-0.1.1"
- sources."json-parse-better-errors-1.0.1"
+ sources."json-parse-better-errors-1.0.2"
sources."json-schema-0.2.3"
sources."json-stable-stringify-0.0.1"
sources."json-stringify-safe-5.0.1"
@@ -29750,14 +30236,14 @@ in
sources."assert-plus-1.0.0"
];
})
- sources."labeled-stream-splicer-2.0.0"
+ sources."labeled-stream-splicer-2.0.1"
sources."latest-version-1.0.1"
sources."lexical-scope-1.2.0"
sources."lodash-3.10.1"
sources."lodash._getnative-3.9.1"
sources."lodash.debounce-3.1.1"
sources."lodash.memoize-3.0.4"
- sources."lowercase-keys-1.0.0"
+ sources."lowercase-keys-1.0.1"
sources."md5.js-1.3.4"
sources."media-typer-0.3.0"
sources."merge-descriptors-1.0.1"
@@ -29825,8 +30311,13 @@ in
sources."randombytes-2.0.6"
sources."randomfill-1.0.4"
sources."range-parser-1.2.0"
- sources."raw-body-2.3.2"
- sources."rc-1.2.5"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ ];
+ })
+ sources."rc-1.2.6"
sources."read-1.0.7"
sources."read-all-stream-3.1.0"
sources."read-only-stream-2.0.0"
@@ -29837,7 +30328,7 @@ in
sources."registry-url-3.1.0"
sources."repeating-1.1.3"
sources."request-2.79.0"
- sources."resolve-1.5.0"
+ sources."resolve-1.6.0"
sources."restore-cursor-1.0.1"
sources."rimraf-2.6.2"
sources."ripemd160-2.0.1"
@@ -29850,7 +30341,7 @@ in
sources."send-0.16.2"
sources."serve-static-1.13.2"
sources."setprototypeof-1.1.0"
- sources."sha.js-2.4.10"
+ sources."sha.js-2.4.11"
sources."shasum-1.0.2"
sources."shell-quote-1.6.1"
sources."shelljs-0.5.3"
@@ -29863,7 +30354,7 @@ in
sources."spdx-exceptions-2.1.0"
sources."spdx-expression-parse-3.0.0"
sources."spdx-license-ids-3.0.0"
- (sources."sshpk-1.13.1" // {
+ (sources."sshpk-1.14.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -29872,11 +30363,11 @@ in
sources."stream-browserify-2.0.1"
sources."stream-buffers-2.2.0"
sources."stream-combiner2-1.1.1"
- sources."stream-http-2.8.0"
+ sources."stream-http-2.8.1"
sources."stream-shift-1.0.0"
sources."stream-splicer-2.0.0"
sources."string-length-1.0.1"
- sources."string.prototype.codepointat-0.2.0"
+ sources."string.prototype.codepointat-0.2.1"
sources."string_decoder-1.0.3"
sources."stringstream-0.0.5"
sources."strip-ansi-3.0.1"
@@ -29896,7 +30387,7 @@ in
sources."tweetnacl-0.14.5"
sources."type-is-1.6.16"
sources."typedarray-0.0.6"
- sources."umd-3.0.2"
+ sources."umd-3.0.3"
sources."underscore-1.8.3"
sources."unorm-1.4.1"
sources."unpipe-1.0.0"
@@ -29957,7 +30448,7 @@ in
sha1 = "19cc3eda322160fd3f7232af1cb2a360e898a2e9";
};
dependencies = [
- sources."clone-2.1.1"
+ sources."clone-2.1.2"
sources."parserlib-1.1.1"
];
buildInputs = globalBuildInputs;
@@ -29980,7 +30471,7 @@ in
dependencies = [
sources."abstract-random-access-1.1.2"
sources."ajv-5.5.2"
- sources."ansi-diff-stream-1.2.0"
+ sources."ansi-diff-stream-1.2.1"
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
sources."anymatch-1.3.2"
@@ -30016,13 +30507,18 @@ in
sources."kind-of-4.0.0"
];
})
+ sources."buffer-alloc-1.1.0"
+ sources."buffer-alloc-unsafe-1.0.0"
sources."buffer-equals-1.0.4"
+ sources."buffer-fill-0.1.1"
+ sources."buffer-from-1.0.0"
sources."buffer-indexof-1.1.1"
- sources."bulk-write-stream-1.1.3"
+ sources."bulk-write-stream-1.1.4"
sources."bytes-3.0.0"
sources."call-me-maybe-1.0.1"
sources."caseless-0.12.0"
sources."chalk-2.3.2"
+ sources."circular-append-file-1.0.1"
sources."cli-truncate-1.1.0"
sources."cliclopts-1.1.1"
sources."co-4.6.0"
@@ -30032,7 +30528,7 @@ in
sources."colors-1.2.1"
sources."combined-stream-1.0.6"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.1"
+ sources."concat-stream-1.6.2"
sources."connections-1.4.2"
sources."content-types-0.1.0"
sources."core-util-is-1.0.2"
@@ -30048,13 +30544,16 @@ in
(sources."dat-doctor-1.3.1" // {
dependencies = [
sources."debug-2.6.9"
+ sources."dns-packet-1.3.1"
+ sources."dns-socket-1.6.3"
sources."lru-2.0.1"
+ sources."multicast-dns-6.2.3"
sources."pump-1.0.3"
];
})
sources."dat-encoding-5.0.1"
- sources."dat-ignore-2.0.0"
- (sources."dat-json-1.0.1" // {
+ sources."dat-ignore-2.1.1"
+ (sources."dat-json-1.0.2" // {
dependencies = [
sources."dat-encoding-4.0.2"
sources."debug-2.6.9"
@@ -30072,6 +30571,7 @@ in
})
(sources."dat-node-3.5.8" // {
dependencies = [
+ sources."buffer-alloc-unsafe-0.1.1"
sources."minimist-0.0.8"
sources."process-nextick-args-1.0.7"
sources."pump-1.0.3"
@@ -30088,15 +30588,24 @@ in
sources."deep-equal-0.2.2"
sources."delayed-stream-1.0.0"
sources."directory-index-html-2.1.0"
- sources."discovery-channel-5.4.7"
+ (sources."discovery-channel-5.5.1" // {
+ dependencies = [
+ sources."pump-3.0.0"
+ ];
+ })
(sources."discovery-swarm-4.4.2" // {
dependencies = [
+ (sources."dns-discovery-6.1.0" // {
+ dependencies = [
+ sources."thunky-1.0.2"
+ ];
+ })
sources."thunky-0.1.0"
];
})
sources."dns-discovery-5.6.1"
- sources."dns-packet-1.3.1"
- sources."dns-socket-1.6.3"
+ sources."dns-packet-4.1.1"
+ sources."dns-socket-3.0.0"
sources."dns-txt-2.0.2"
sources."dom-walk-0.1.1"
sources."duplexify-3.5.4"
@@ -30134,12 +30643,12 @@ in
sources."hoek-4.2.1"
sources."http-methods-0.1.0"
sources."http-signature-1.2.0"
- (sources."hypercore-6.12.3" // {
+ (sources."hypercore-6.12.7" // {
dependencies = [
sources."varint-5.0.0"
];
})
- sources."hypercore-protocol-6.6.0"
+ sources."hypercore-protocol-6.6.4"
(sources."hyperdrive-9.12.3" // {
dependencies = [
sources."varint-4.0.1"
@@ -30201,11 +30710,12 @@ in
sources."mkdirp-0.5.1"
sources."ms-2.0.0"
sources."multi-random-access-2.1.1"
- sources."multicast-dns-6.2.3"
+ sources."multicast-dns-7.0.0"
sources."multicb-1.2.2"
+ sources."multistream-2.1.0"
sources."mute-stream-0.0.7"
sources."mutexify-1.2.0"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
sources."nanoassert-1.1.0"
sources."nanobus-3.3.0"
sources."nanotiming-1.0.1"
@@ -30259,7 +30769,7 @@ in
sources."range-parser-1.2.0"
sources."read-1.0.7"
sources."readable-stream-2.3.5"
- sources."recursive-watch-1.1.3"
+ sources."recursive-watch-1.1.4"
sources."regex-cache-0.4.4"
sources."remove-trailing-separator-1.1.0"
sources."repeat-element-1.1.2"
@@ -30274,14 +30784,14 @@ in
sources."siphash24-1.1.0"
sources."slice-ansi-1.0.0"
sources."sntp-2.1.0"
- sources."sodium-javascript-0.5.4"
- sources."sodium-native-2.1.4"
+ sources."sodium-javascript-0.5.5"
+ sources."sodium-native-2.1.5"
sources."sodium-universal-2.0.0"
sources."sorted-array-functions-1.1.0"
sources."sorted-indexof-1.0.0"
sources."sparse-bitfield-3.0.3"
sources."speedometer-1.0.0"
- sources."sshpk-1.13.1"
+ sources."sshpk-1.14.1"
sources."stack-trace-0.0.10"
sources."status-logger-3.1.1"
sources."stream-collector-1.0.1"
@@ -30314,14 +30824,14 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."typedarray-0.0.6"
- sources."uint64be-2.0.1"
+ sources."uint64be-2.0.2"
sources."unixify-1.0.0"
sources."unordered-array-remove-1.0.2"
sources."unordered-set-1.1.0"
sources."untildify-3.0.2"
sources."util-deprecate-1.0.2"
sources."utile-0.3.0"
- sources."utp-native-1.6.2"
+ sources."utp-native-1.7.0"
sources."uuid-3.2.1"
sources."varint-3.0.1"
sources."verror-1.10.0"
@@ -30349,10 +30859,10 @@ in
dhcp = nodeEnv.buildNodePackage {
name = "dhcp";
packageName = "dhcp";
- version = "0.2.10";
+ version = "0.2.11";
src = fetchurl {
- url = "https://registry.npmjs.org/dhcp/-/dhcp-0.2.10.tgz";
- sha512 = "04a373cxgb6b43gzymh1z71aas9c7nx9ap9q11bsc5jgrhx9q6b9204w08qrlrmgn72kj1csiadl8zlm5031097a8paczgzi9653k3m";
+ url = "https://registry.npmjs.org/dhcp/-/dhcp-0.2.11.tgz";
+ sha512 = "287rcz01q13rn3b83ds5kh05l176wag4p9vxxzrx3q63nhjmy6pvkxf1c1d7k0bd8r8nhqdldn5f1p50r4a1y1ybgy9zz0gqfbwb0d7";
};
dependencies = [
sources."minimist-1.2.0"
@@ -30445,7 +30955,7 @@ in
sources."mime-types-2.1.18"
sources."minimist-0.0.10"
sources."ms-0.7.0"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
(sources."native-dns-git+https://github.com/okTurtles/node-dns.git#08433ec98f517eed3c6d5e47bdf62603539cd402" // {
dependencies = [
sources."native-dns-packet-git+https://github.com/okTurtles/native-dns-packet.git#8bf2714c318cfe7d31bca2006385882ccbf503e4"
@@ -30607,7 +31117,7 @@ in
sources."pull-level-2.0.4"
sources."pull-live-1.0.1"
sources."pull-pushable-2.2.0"
- sources."pull-stream-3.6.2"
+ sources."pull-stream-3.6.7"
sources."pull-window-2.1.4"
sources."pump-1.0.3"
(sources."pumpify-1.4.0" // {
@@ -30628,7 +31138,7 @@ in
sources."string_decoder-0.10.31"
(sources."tar-stream-1.5.5" // {
dependencies = [
- sources."bl-1.2.1"
+ sources."bl-1.2.2"
sources."isarray-1.0.0"
sources."readable-stream-2.3.5"
sources."string_decoder-1.0.3"
@@ -30673,7 +31183,7 @@ in
sources."assert-plus-1.0.0"
sources."async-2.6.0"
sources."asynckit-0.4.0"
- sources."aws-sdk-2.208.0"
+ sources."aws-sdk-2.218.1"
sources."aws-sign2-0.7.0"
sources."aws4-1.6.0"
sources."base64-js-1.2.3"
@@ -30735,7 +31245,7 @@ in
sources."safe-buffer-5.1.1"
sources."sax-1.2.1"
sources."sntp-2.1.0"
- sources."sshpk-1.13.1"
+ sources."sshpk-1.14.1"
sources."stringstream-0.0.5"
sources."through-2.3.8"
sources."tough-cookie-2.3.4"
@@ -30806,7 +31316,7 @@ in
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
sources."combined-stream-1.0.6"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."concat-map-0.0.1"
sources."core-util-is-1.0.2"
sources."cross-spawn-4.0.0"
@@ -30887,7 +31397,7 @@ in
sources."minimist-1.2.0"
sources."mkdirp-0.5.1"
sources."murmur-hash-js-1.0.0"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
(sources."node-elm-compiler-4.3.3" // {
dependencies = [
sources."firstline-1.2.0"
@@ -30930,7 +31440,7 @@ in
sources."set-immediate-shim-1.0.1"
sources."sntp-1.0.9"
sources."split-1.0.1"
- (sources."sshpk-1.13.1" // {
+ (sources."sshpk-1.14.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -30972,7 +31482,7 @@ in
sha512 = "06w3hpcnxg63wg262ldhw4s2shyr1f1bvilqshy88i4svamgxk0qzdhhma2rwcwq7qpjwjlr8m1z2qbmqw9faff5f8hl45yj3jxrs3z";
};
dependencies = [
- sources."ansi-escapes-3.0.0"
+ sources."ansi-escapes-3.1.0"
sources."ansi-regex-3.0.0"
sources."ansi-styles-2.2.1"
sources."arch-2.1.0"
@@ -31013,7 +31523,7 @@ in
sources."concat-map-0.0.1"
sources."conf-1.4.0"
sources."convert-source-map-1.5.1"
- sources."core-js-2.5.3"
+ sources."core-js-2.5.4"
sources."cross-spawn-5.1.0"
sources."currently-unhandled-0.4.1"
sources."debug-2.6.9"
@@ -31060,7 +31570,7 @@ in
];
})
sources."ink-text-input-1.1.1"
- sources."invariant-2.2.3"
+ sources."invariant-2.2.4"
sources."is-arrayish-0.2.1"
sources."is-builtin-module-1.0.0"
sources."is-finite-1.0.2"
@@ -31086,7 +31596,7 @@ in
sources."log-update-2.3.0"
sources."loose-envify-1.3.1"
sources."loud-rejection-1.6.0"
- sources."lowercase-keys-1.0.0"
+ sources."lowercase-keys-1.0.1"
sources."lru-cache-4.1.2"
sources."make-dir-1.2.0"
sources."map-obj-1.0.1"
@@ -31171,7 +31681,7 @@ in
sources."url-parse-lax-1.0.0"
sources."url-to-options-1.0.1"
sources."validate-npm-package-license-3.0.3"
- sources."whatwg-fetch-2.0.3"
+ sources."whatwg-fetch-2.0.4"
sources."which-1.3.0"
sources."wrap-ansi-3.0.1"
sources."write-file-atomic-2.3.0"
@@ -31189,10 +31699,10 @@ in
eslint = nodeEnv.buildNodePackage {
name = "eslint";
packageName = "eslint";
- version = "4.18.2";
+ version = "4.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-4.18.2.tgz";
- sha512 = "0mqvxkfl52068bfkpxjn14dgwfv4vv8w0a8pq2rw54bkbshfa2y6rpx122ssk3si3dy9298g68079ns1n7m0jrzgwca7a430ggj4bmb";
+ url = "https://registry.npmjs.org/eslint/-/eslint-4.19.1.tgz";
+ sha512 = "0hw70vjlg6z0y9kf6vjr7g0w9hbm426fwvyzr88l62c5hd9mxrbw5v34b6zb31vbbyda3mkvcwgfnxgqaxvpn0wlrxr0va43pbzygbd";
};
dependencies = [
sources."acorn-5.5.3"
@@ -31203,7 +31713,7 @@ in
})
sources."ajv-5.5.2"
sources."ajv-keywords-2.1.1"
- sources."ansi-escapes-3.0.0"
+ sources."ansi-escapes-3.1.0"
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
sources."argparse-1.0.10"
@@ -31218,6 +31728,7 @@ in
})
sources."balanced-match-1.0.0"
sources."brace-expansion-1.1.11"
+ sources."buffer-from-1.0.0"
sources."caller-path-0.1.0"
sources."callsites-0.2.0"
(sources."chalk-2.3.2" // {
@@ -31234,7 +31745,7 @@ in
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.1"
+ sources."concat-stream-1.6.2"
sources."core-util-is-1.0.2"
sources."cross-spawn-5.1.0"
sources."debug-3.1.0"
@@ -31246,11 +31757,11 @@ in
sources."eslint-visitor-keys-1.0.0"
sources."espree-3.5.4"
sources."esprima-4.0.0"
- sources."esquery-1.0.0"
+ sources."esquery-1.0.1"
sources."esrecurse-4.2.1"
sources."estraverse-4.2.0"
sources."esutils-2.0.2"
- sources."external-editor-2.1.0"
+ sources."external-editor-2.2.0"
sources."fast-deep-equal-1.1.0"
sources."fast-json-stable-stringify-2.0.0"
sources."fast-levenshtein-2.0.6"
@@ -31260,7 +31771,7 @@ in
sources."fs.realpath-1.0.0"
sources."functional-red-black-tree-1.0.1"
sources."glob-7.1.2"
- sources."globals-11.3.0"
+ sources."globals-11.4.0"
sources."globby-5.0.0"
sources."graceful-fs-4.1.11"
sources."has-ansi-2.0.0"
@@ -31273,7 +31784,7 @@ in
sources."inquirer-3.3.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-path-cwd-1.0.0"
- sources."is-path-in-cwd-1.0.0"
+ sources."is-path-in-cwd-1.0.1"
sources."is-path-inside-1.0.1"
sources."is-promise-2.1.0"
sources."is-resolvable-1.1.0"
@@ -31309,6 +31820,7 @@ in
sources."progress-2.0.0"
sources."pseudomap-1.0.2"
sources."readable-stream-2.3.5"
+ sources."regexpp-1.1.0"
sources."require-uncached-1.0.3"
sources."resolve-from-1.0.1"
sources."restore-cursor-2.0.0"
@@ -31371,7 +31883,7 @@ in
})
sources."ajv-5.5.2"
sources."ajv-keywords-2.1.1"
- sources."ansi-escapes-3.0.0"
+ sources."ansi-escapes-3.1.0"
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
sources."argparse-1.0.10"
@@ -31386,6 +31898,7 @@ in
})
sources."balanced-match-1.0.0"
sources."brace-expansion-1.1.11"
+ sources."buffer-from-1.0.0"
sources."caller-path-0.1.0"
sources."callsites-0.2.0"
(sources."chalk-1.1.3" // {
@@ -31401,7 +31914,7 @@ in
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.1"
+ sources."concat-stream-1.6.2"
sources."core-util-is-1.0.2"
sources."cross-spawn-5.1.0"
sources."debug-3.1.0"
@@ -31409,7 +31922,7 @@ in
sources."del-2.2.2"
sources."doctrine-2.1.0"
sources."escape-string-regexp-1.0.5"
- (sources."eslint-4.18.2" // {
+ (sources."eslint-4.19.1" // {
dependencies = [
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
@@ -31426,11 +31939,11 @@ in
sources."eslint-visitor-keys-1.0.0"
sources."espree-3.5.4"
sources."esprima-4.0.0"
- sources."esquery-1.0.0"
+ sources."esquery-1.0.1"
sources."esrecurse-4.2.1"
sources."estraverse-4.2.0"
sources."esutils-2.0.2"
- sources."external-editor-2.1.0"
+ sources."external-editor-2.2.0"
sources."fast-deep-equal-1.1.0"
sources."fast-json-stable-stringify-2.0.0"
sources."fast-levenshtein-2.0.6"
@@ -31440,7 +31953,7 @@ in
sources."fs.realpath-1.0.0"
sources."functional-red-black-tree-1.0.1"
sources."glob-7.1.2"
- sources."globals-11.3.0"
+ sources."globals-11.4.0"
sources."globby-5.0.0"
sources."graceful-fs-4.1.11"
sources."has-ansi-2.0.0"
@@ -31453,7 +31966,7 @@ in
sources."inquirer-3.3.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-path-cwd-1.0.0"
- sources."is-path-in-cwd-1.0.0"
+ sources."is-path-in-cwd-1.0.1"
sources."is-path-inside-1.0.1"
sources."is-promise-2.1.0"
sources."is-resolvable-1.1.0"
@@ -31490,8 +32003,9 @@ in
sources."progress-2.0.0"
sources."pseudomap-1.0.2"
sources."readable-stream-2.3.5"
+ sources."regexpp-1.1.0"
sources."require-uncached-1.0.3"
- sources."resolve-1.5.0"
+ sources."resolve-1.6.0"
sources."resolve-from-1.0.1"
sources."restore-cursor-2.0.0"
sources."rimraf-2.6.2"
@@ -31579,7 +32093,7 @@ in
sources."caseless-0.12.0"
sources."chalk-1.1.3"
sources."cli-cursor-1.0.2"
- sources."cli-spinners-1.1.0"
+ sources."cli-spinners-1.3.0"
sources."co-4.6.0"
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
@@ -31706,7 +32220,7 @@ in
sources."spdx-exceptions-2.1.0"
sources."spdx-expression-parse-3.0.0"
sources."spdx-license-ids-3.0.0"
- sources."sshpk-1.13.1"
+ sources."sshpk-1.14.1"
sources."string_decoder-1.0.3"
sources."stringstream-0.0.5"
sources."strip-ansi-3.0.1"
@@ -31746,7 +32260,7 @@ in
sha1 = "c027feb75a512001d1287bbfb3ffaafba67eb92f";
};
dependencies = [
- sources."bower-1.8.2"
+ sources."bower-1.8.4"
sources."bower-endpoint-parser-0.2.1"
sources."bower-logger-0.2.1"
sources."glob-3.2.11"
@@ -31794,7 +32308,7 @@ in
sources."colors-1.0.3"
];
})
- sources."clone-1.0.3"
+ sources."clone-1.0.4"
sources."colors-0.6.2"
sources."concat-map-0.0.1"
sources."core-util-is-1.0.2"
@@ -31855,7 +32369,7 @@ in
sources."minimist-0.0.10"
sources."mkdirp-0.5.1"
sources."mute-stream-0.0.7"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
(sources."nconf-0.6.9" // {
dependencies = [
sources."async-0.2.9"
@@ -32062,7 +32576,7 @@ in
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
sources."msgpack-1.0.2"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
sources."optimist-0.3.7"
sources."pop-iterate-1.0.1"
sources."promise-6.1.0"
@@ -32126,7 +32640,7 @@ in
sources."array-uniq-1.0.3"
sources."array-unique-0.3.2"
sources."assign-symbols-1.0.0"
- sources."atob-2.0.3"
+ sources."atob-2.1.0"
sources."balanced-match-1.0.0"
(sources."base-0.11.2" // {
dependencies = [
@@ -32153,7 +32667,7 @@ in
sources."define-property-0.2.5"
];
})
- sources."clone-1.0.3"
+ sources."clone-1.0.4"
sources."clone-stats-0.0.1"
sources."collection-visit-1.0.0"
sources."color-support-1.1.3"
@@ -32304,7 +32818,7 @@ in
sources."make-iterator-1.0.0"
sources."map-cache-0.2.2"
sources."map-visit-1.0.0"
- (sources."micromatch-3.1.9" // {
+ (sources."micromatch-3.1.10" // {
dependencies = [
(sources."is-accessor-descriptor-0.1.6" // {
dependencies = [
@@ -32327,7 +32841,7 @@ in
sources."ms-2.0.0"
sources."multipipe-0.1.2"
sources."nanomatch-1.2.9"
- sources."natives-1.1.1"
+ sources."natives-1.1.2"
sources."object-assign-3.0.0"
sources."object-copy-0.1.0"
sources."object-visit-1.0.1"
@@ -32353,7 +32867,7 @@ in
sources."repeat-element-1.1.2"
sources."repeat-string-1.6.1"
sources."replace-ext-0.0.1"
- sources."resolve-1.5.0"
+ sources."resolve-1.6.0"
sources."resolve-dir-1.0.1"
sources."resolve-url-0.2.1"
sources."ret-0.1.15"
@@ -32562,29 +33076,27 @@ in
html-minifier = nodeEnv.buildNodePackage {
name = "html-minifier";
packageName = "html-minifier";
- version = "3.5.10";
+ version = "3.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.10.tgz";
- sha512 = "1kbzriri14n8z4mjn3a8azsvspj4lzdhzp3nsagkja15py5q35k4cf2py19x37bg0irifbi1k4jyn6nn952fqqm2sp0h6484w1j5kz5";
+ url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.13.tgz";
+ sha512 = "2785fjg53p0bj5zx963ckq2pg7x3vcscag5y2znzmfr1v08qls2l60nvska8nm5v3wjp9kd9lp3nw8136q8cwn9jqwz8b7lwzvgvcq7";
};
dependencies = [
sources."camel-case-3.0.0"
sources."clean-css-4.1.11"
- sources."commander-2.14.1"
+ sources."commander-2.15.1"
sources."he-1.1.1"
sources."lower-case-1.1.4"
- sources."ncname-1.0.0"
sources."no-case-2.3.2"
sources."param-case-2.1.1"
sources."relateurl-0.2.7"
sources."source-map-0.5.7"
- (sources."uglify-js-3.3.14" // {
+ (sources."uglify-js-3.3.18" // {
dependencies = [
sources."source-map-0.6.1"
];
})
sources."upper-case-1.1.3"
- sources."xml-char-classes-1.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -32598,14 +33110,14 @@ in
ionic = nodeEnv.buildNodePackage {
name = "ionic";
packageName = "ionic";
- version = "3.19.1";
+ version = "3.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ionic/-/ionic-3.19.1.tgz";
- sha512 = "11hpd51qzi8fms87q1xqwc347dp9mxhvzci2jlw94ayvs1v2n3iaqwdic1g1213k91xwzp52z6y17a08via45l936bgda3pi6zfbmsk";
+ url = "https://registry.npmjs.org/ionic/-/ionic-3.20.0.tgz";
+ sha512 = "2a051r5s0p9ihcahqysmbjklhivms8rlv5zxxi7bqrxa3x8sqqpyhbjpl7z5k4263vmfkqj3qmzciz6kbyivgk3arz22jqfqsxczqn9";
};
dependencies = [
- sources."@ionic/cli-framework-0.1.2"
- (sources."@ionic/cli-utils-1.19.1" // {
+ sources."@ionic/cli-framework-0.1.3"
+ (sources."@ionic/cli-utils-1.19.2" // {
dependencies = [
sources."bytes-1.0.0"
sources."debug-2.6.9"
@@ -32613,14 +33125,15 @@ in
sources."is-glob-3.1.0"
sources."mime-1.4.1"
sources."raw-body-1.1.7"
- sources."setprototypeof-1.1.0"
+ sources."setprototypeof-1.0.3"
+ sources."statuses-1.4.0"
sources."string_decoder-0.10.31"
sources."yallist-3.0.2"
];
})
sources."@ionic/discover-0.4.0"
sources."accepts-1.3.5"
- sources."ansi-escapes-3.0.0"
+ sources."ansi-escapes-3.1.0"
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
sources."anymatch-1.3.2"
@@ -32637,7 +33150,7 @@ in
sources."balanced-match-1.0.0"
sources."basic-auth-1.1.0"
sources."binary-extensions-1.11.0"
- sources."bl-1.2.1"
+ sources."bl-1.2.2"
sources."body-5.1.0"
sources."body-parser-1.18.2"
sources."brace-expansion-1.1.11"
@@ -32688,9 +33201,13 @@ in
sources."eventemitter3-1.2.0"
sources."expand-brackets-0.1.5"
sources."expand-range-1.8.2"
- sources."express-4.16.3"
+ (sources."express-4.16.3" // {
+ dependencies = [
+ sources."setprototypeof-1.1.0"
+ ];
+ })
sources."extend-3.0.1"
- sources."external-editor-2.1.0"
+ sources."external-editor-2.2.0"
sources."extglob-0.3.2"
sources."faye-websocket-0.10.0"
sources."figures-2.0.0"
@@ -32700,7 +33217,7 @@ in
sources."for-in-1.0.2"
sources."for-own-0.1.5"
sources."form-data-2.3.2"
- sources."formidable-1.2.0"
+ sources."formidable-1.2.1"
sources."forwarded-0.1.2"
sources."fresh-0.5.2"
sources."fs-minipass-1.2.5"
@@ -32711,11 +33228,7 @@ in
sources."glob-parent-2.0.0"
sources."graceful-fs-4.1.11"
sources."has-flag-3.0.0"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- ];
- })
+ sources."http-errors-1.6.3"
sources."http-parser-js-0.4.11"
sources."http-proxy-1.16.2"
sources."http-proxy-middleware-0.17.4"
@@ -32768,12 +33281,12 @@ in
sources."mimic-fn-1.2.0"
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
- sources."minipass-2.2.1"
+ sources."minipass-2.2.4"
sources."minizlib-1.1.0"
sources."mkdirp-0.5.1"
sources."ms-2.0.0"
sources."mute-stream-0.0.7"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
sources."ncp-2.0.0"
sources."negotiator-0.6.1"
sources."netmask-1.0.6"
@@ -32783,7 +33296,7 @@ in
sources."on-finished-2.3.0"
sources."once-1.4.0"
sources."onetime-2.0.1"
- sources."opn-5.2.0"
+ sources."opn-5.3.0"
sources."os-name-2.0.1"
sources."os-tmpdir-1.0.2"
sources."parse-glob-3.0.4"
@@ -32805,7 +33318,12 @@ in
];
})
sources."range-parser-1.2.0"
- sources."raw-body-2.3.2"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ ];
+ })
sources."readable-stream-2.3.5"
sources."readdirp-2.1.0"
sources."regex-cache-0.4.4"
@@ -32826,20 +33344,20 @@ in
sources."send-0.16.2"
sources."serve-static-1.13.2"
sources."set-immediate-shim-1.0.1"
- sources."setprototypeof-1.0.3"
+ sources."setprototypeof-1.1.0"
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."signal-exit-3.0.2"
sources."slice-ansi-1.0.0"
sources."ssh-config-1.1.3"
- sources."statuses-1.4.0"
+ sources."statuses-1.5.0"
sources."string-template-0.2.1"
sources."string-width-2.1.1"
sources."string_decoder-1.0.3"
sources."strip-ansi-4.0.0"
sources."superagent-3.8.2"
sources."supports-color-5.3.0"
- (sources."tar-4.4.0" // {
+ (sources."tar-4.4.1" // {
dependencies = [
sources."minimist-0.0.8"
];
@@ -33010,7 +33528,7 @@ in
sources."check-error-1.0.2"
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."concat-map-0.0.1"
sources."deep-eql-3.0.1"
sources."deep-equal-1.0.1"
@@ -33035,12 +33553,12 @@ in
sources."mz-2.7.0"
sources."node-int64-0.4.0"
sources."object-assign-4.1.1"
- sources."object-hash-1.2.0"
+ sources."object-hash-1.3.0"
sources."once-1.4.0"
- sources."opentracing-0.14.1"
+ sources."opentracing-0.14.2"
sources."path-is-absolute-1.0.1"
sources."pathval-1.1.0"
- sources."rxjs-5.5.6"
+ sources."rxjs-5.5.8"
sources."semaphore-async-await-1.5.1"
sources."string-similarity-1.2.0"
sources."string-template-0.2.1"
@@ -33114,7 +33632,7 @@ in
sources."graceful-fs-4.1.11"
sources."js2xmlparser-3.0.0"
sources."klaw-2.0.0"
- sources."marked-0.3.17"
+ sources."marked-0.3.19"
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
(sources."requizzle-0.2.1" // {
@@ -33219,7 +33737,7 @@ in
dependencies = [
sources."abbrev-1.1.1"
sources."bluebird-3.5.1"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."config-chain-1.1.11"
sources."editorconfig-0.13.3"
sources."ini-1.3.5"
@@ -33327,7 +33845,7 @@ in
sources."esprima-4.0.0"
sources."extend-3.0.1"
sources."form-data-2.3.2"
- sources."formidable-1.2.0"
+ sources."formidable-1.2.1"
sources."graphlib-2.1.5"
sources."inherits-2.0.3"
sources."isarray-1.0.0"
@@ -33383,7 +33901,11 @@ in
sources."aws4-1.6.0"
sources."basic-auth-2.0.0"
sources."bcrypt-pbkdf-1.0.1"
- sources."body-parser-1.18.2"
+ (sources."body-parser-1.18.2" // {
+ dependencies = [
+ sources."setprototypeof-1.0.3"
+ ];
+ })
sources."boom-4.3.1"
sources."boxen-1.3.0"
sources."bytes-3.0.0"
@@ -33391,6 +33913,7 @@ in
sources."capture-stack-trace-1.0.0"
sources."caseless-0.12.0"
sources."chalk-2.3.2"
+ sources."ci-info-1.1.3"
sources."cli-boxes-1.0.0"
sources."cliui-4.0.0"
sources."co-4.6.0"
@@ -33400,7 +33923,7 @@ in
sources."combined-stream-1.0.6"
sources."compressible-2.0.13"
sources."compression-1.7.2"
- sources."configstore-3.1.1"
+ sources."configstore-3.1.2"
sources."connect-pause-0.1.1"
sources."content-disposition-0.5.2"
sources."content-type-1.0.4"
@@ -33435,7 +33958,7 @@ in
sources."execa-0.7.0"
(sources."express-4.16.3" // {
dependencies = [
- sources."setprototypeof-1.1.0"
+ sources."statuses-1.4.0"
];
})
(sources."express-urlrewrite-1.2.0" // {
@@ -33464,11 +33987,7 @@ in
sources."has-flag-3.0.0"
sources."hawk-6.0.2"
sources."hoek-4.2.1"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- ];
- })
+ sources."http-errors-1.6.3"
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.19"
sources."import-lazy-2.1.0"
@@ -33477,6 +33996,7 @@ in
sources."ini-1.3.5"
sources."invert-kv-1.0.0"
sources."ipaddr.js-1.6.0"
+ sources."is-ci-1.1.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-installed-globally-0.1.0"
sources."is-npm-1.0.0"
@@ -33503,7 +34023,7 @@ in
sources."lodash-4.17.5"
sources."lodash-id-0.14.0"
sources."lowdb-0.15.5"
- sources."lowercase-keys-1.0.0"
+ sources."lowercase-keys-1.0.1"
sources."lru-cache-4.1.2"
sources."make-dir-1.2.0"
sources."media-typer-0.3.0"
@@ -33547,8 +34067,13 @@ in
sources."punycode-1.4.1"
sources."qs-6.5.1"
sources."range-parser-1.2.0"
- sources."raw-body-2.3.2"
- sources."rc-1.2.5"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ ];
+ })
+ sources."rc-1.2.6"
sources."registry-auth-token-3.3.2"
sources."registry-url-3.1.0"
sources."request-2.85.0"
@@ -33561,13 +34086,13 @@ in
sources."serve-static-1.13.2"
sources."server-destroy-1.0.1"
sources."set-blocking-2.0.0"
- sources."setprototypeof-1.0.3"
+ sources."setprototypeof-1.1.0"
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."signal-exit-3.0.2"
sources."sntp-2.1.0"
- sources."sshpk-1.13.1"
- sources."statuses-1.4.0"
+ sources."sshpk-1.14.1"
+ sources."statuses-1.5.0"
sources."steno-0.4.4"
sources."string-width-2.1.1"
sources."stringstream-0.0.5"
@@ -33584,7 +34109,7 @@ in
sources."unique-string-1.0.0"
sources."unpipe-1.0.0"
sources."unzip-response-2.0.1"
- sources."update-notifier-2.3.0"
+ sources."update-notifier-2.4.0"
sources."url-parse-lax-1.0.0"
sources."utils-merge-1.0.1"
sources."uuid-3.2.1"
@@ -33706,7 +34231,11 @@ in
sources."blob-0.0.4"
sources."bluebird-3.5.1"
sources."bn.js-4.11.8"
- sources."body-parser-1.18.2"
+ (sources."body-parser-1.18.2" // {
+ dependencies = [
+ sources."setprototypeof-1.0.3"
+ ];
+ })
sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
(sources."braces-1.8.5" // {
@@ -33715,7 +34244,7 @@ in
];
})
sources."brorand-1.1.0"
- sources."browser-pack-6.0.4"
+ sources."browser-pack-6.1.0"
(sources."browser-resolve-1.11.2" // {
dependencies = [
sources."resolve-1.1.7"
@@ -33724,9 +34253,8 @@ in
(sources."browserify-14.5.0" // {
dependencies = [
sources."acorn-5.5.3"
- sources."combine-source-map-0.7.2"
sources."hash-base-2.0.2"
- sources."isarray-0.0.1"
+ sources."isarray-2.0.4"
sources."process-nextick-args-2.0.0"
sources."source-map-0.5.7"
];
@@ -33738,6 +34266,7 @@ in
sources."browserify-sign-4.0.4"
sources."browserify-zlib-0.2.0"
sources."buffer-5.1.0"
+ sources."buffer-from-1.0.0"
sources."buffer-more-ints-0.0.2"
sources."buffer-xor-1.0.3"
sources."buildmail-4.0.1"
@@ -33755,7 +34284,7 @@ in
sources."combine-lists-1.0.1"
sources."combine-source-map-0.8.0"
sources."combined-stream-1.0.6"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."component-bind-1.0.0"
sources."component-emitter-1.2.1"
sources."component-inherit-0.0.3"
@@ -33776,7 +34305,7 @@ in
sources."content-type-1.0.4"
sources."convert-source-map-1.1.3"
sources."cookie-0.3.1"
- sources."core-js-2.5.3"
+ sources."core-js-2.5.4"
sources."core-util-is-1.0.2"
sources."create-ecdh-4.0.0"
sources."create-hash-1.1.3"
@@ -33886,11 +34415,7 @@ in
sources."hmac-drbg-1.0.1"
sources."hoek-4.2.1"
sources."htmlescape-1.1.1"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- ];
- })
+ sources."http-errors-1.6.3"
sources."http-proxy-1.16.2"
sources."http-proxy-agent-1.0.0"
sources."http-signature-1.2.0"
@@ -33899,13 +34424,17 @@ in
sources."https-browserify-1.0.0"
sources."https-proxy-agent-1.0.0"
sources."iconv-lite-0.4.19"
- sources."ieee754-1.1.8"
+ sources."ieee754-1.1.11"
sources."indexof-0.0.1"
sources."inflection-1.10.0"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."inline-source-map-0.6.2"
- sources."insert-module-globals-7.0.2"
+ (sources."insert-module-globals-7.0.5" // {
+ dependencies = [
+ sources."concat-stream-1.6.2"
+ ];
+ })
sources."ip-1.0.1"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
@@ -33936,7 +34465,7 @@ in
sources."jsonpointer-4.0.1"
sources."jsprim-1.4.1"
sources."kind-of-3.2.2"
- sources."labeled-stream-splicer-2.0.0"
+ sources."labeled-stream-splicer-2.0.1"
sources."levn-0.3.0"
sources."lexical-scope-1.2.0"
sources."libbase64-0.1.0"
@@ -33996,7 +34525,7 @@ in
sources."mkdirp-0.5.1"
sources."module-deps-4.1.1"
sources."ms-2.0.0"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
sources."negotiator-0.6.1"
sources."netmask-1.0.6"
sources."node-uuid-1.4.8"
@@ -34069,7 +34598,12 @@ in
sources."randombytes-2.0.6"
sources."randomfill-1.0.4"
sources."range-parser-1.2.0"
- sources."raw-body-2.3.2"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ ];
+ })
sources."read-only-stream-2.0.0"
(sources."readable-stream-2.3.5" // {
dependencies = [
@@ -34087,14 +34621,14 @@ in
sources."request-2.85.0"
sources."requestretry-1.13.0"
sources."requires-port-1.0.0"
- sources."resolve-1.5.0"
+ sources."resolve-1.6.0"
sources."rimraf-2.6.2"
sources."ripemd160-2.0.1"
sources."safe-buffer-5.1.1"
sources."semver-5.5.0"
sources."set-immediate-shim-1.0.1"
- sources."setprototypeof-1.0.3"
- sources."sha.js-2.4.10"
+ sources."setprototypeof-1.1.0"
+ sources."sha.js-2.4.11"
sources."shasum-1.0.2"
sources."shell-quote-1.6.1"
sources."slack-node-0.2.0"
@@ -34116,11 +34650,11 @@ in
sources."socks-1.1.10"
sources."socks-proxy-agent-2.1.1"
sources."source-map-0.6.1"
- sources."sshpk-1.13.1"
- sources."statuses-1.4.0"
+ sources."sshpk-1.14.1"
+ sources."statuses-1.5.0"
sources."stream-browserify-2.0.1"
sources."stream-combiner2-1.1.1"
- sources."stream-http-2.8.0"
+ sources."stream-http-2.8.1"
sources."stream-splicer-2.0.0"
sources."streamroller-0.7.0"
sources."string_decoder-1.0.3"
@@ -34146,7 +34680,7 @@ in
sources."type-is-1.6.16"
sources."typedarray-0.0.6"
sources."ultron-1.1.1"
- sources."umd-3.0.2"
+ sources."umd-3.0.3"
sources."underscore-1.7.0"
sources."unpipe-1.0.0"
(sources."url-0.11.0" // {
@@ -34329,7 +34863,7 @@ in
sources."ms-0.7.1"
];
})
- sources."statuses-1.4.0"
+ sources."statuses-1.5.0"
sources."stream-counter-0.2.0"
sources."string_decoder-0.10.31"
sources."tsscmp-1.0.5"
@@ -34354,17 +34888,17 @@ in
lerna = nodeEnv.buildNodePackage {
name = "lerna";
packageName = "lerna";
- version = "2.9.0";
+ version = "2.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lerna/-/lerna-2.9.0.tgz";
- sha512 = "18aayy3dsb36bz3rrvbmg1pfvc4zsxqmiax923v738dlp7nw68y5gndi268db91cyzjxwpdimppqfb84z9ywi79mhlak4i73flxgazh";
+ url = "https://registry.npmjs.org/lerna/-/lerna-2.9.1.tgz";
+ sha512 = "24gcfland5nc7mjhv7qibij72qw9069ppwj262qxc5sd136xsrr6rvc934fj4lpzblvh1w7vcgqvwjx9nrhk6waw8cgxik397vdf1wg";
};
dependencies = [
sources."JSONStream-1.3.2"
sources."add-stream-1.0.0"
sources."align-text-0.1.4"
sources."amdefine-1.0.1"
- sources."ansi-escapes-3.0.0"
+ sources."ansi-escapes-3.1.0"
sources."ansi-regex-2.1.1"
sources."ansi-styles-3.2.1"
sources."aproba-1.2.0"
@@ -34377,6 +34911,7 @@ in
sources."async-1.5.2"
sources."balanced-match-1.0.0"
sources."brace-expansion-1.1.11"
+ sources."buffer-from-1.0.0"
sources."builtin-modules-1.1.1"
sources."byline-5.0.0"
sources."camelcase-1.2.1"
@@ -34389,7 +34924,7 @@ in
sources."cli-cursor-2.1.0"
sources."cli-width-2.2.0"
sources."cliui-2.1.0"
- sources."clone-1.0.3"
+ sources."clone-1.0.4"
sources."cmd-shim-2.0.2"
sources."code-point-at-1.1.0"
sources."color-convert-1.9.1"
@@ -34398,9 +34933,9 @@ in
sources."command-join-2.0.0"
sources."compare-func-1.3.2"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.1"
+ sources."concat-stream-1.6.2"
sources."console-control-strings-1.1.0"
- (sources."conventional-changelog-1.1.18" // {
+ (sources."conventional-changelog-1.1.23" // {
dependencies = [
sources."camelcase-4.1.0"
sources."map-obj-1.0.1"
@@ -34408,8 +34943,8 @@ in
];
})
sources."conventional-changelog-angular-1.6.6"
- sources."conventional-changelog-atom-0.2.4"
- (sources."conventional-changelog-cli-1.3.16" // {
+ sources."conventional-changelog-atom-0.2.8"
+ (sources."conventional-changelog-cli-1.3.21" // {
dependencies = [
sources."camelcase-2.1.1"
sources."camelcase-keys-4.2.0"
@@ -34432,22 +34967,22 @@ in
sources."yargs-3.10.0"
];
})
- sources."conventional-changelog-codemirror-0.3.4"
- (sources."conventional-changelog-core-2.0.5" // {
+ sources."conventional-changelog-codemirror-0.3.8"
+ (sources."conventional-changelog-core-2.0.10" // {
dependencies = [
sources."meow-4.0.0"
];
})
- sources."conventional-changelog-ember-0.3.6"
- sources."conventional-changelog-eslint-1.0.5"
- sources."conventional-changelog-express-0.3.4"
+ sources."conventional-changelog-ember-0.3.11"
+ sources."conventional-changelog-eslint-1.0.9"
+ sources."conventional-changelog-express-0.3.6"
sources."conventional-changelog-jquery-0.1.0"
sources."conventional-changelog-jscs-0.1.0"
- sources."conventional-changelog-jshint-0.3.4"
- sources."conventional-changelog-preset-loader-1.1.6"
- sources."conventional-changelog-writer-3.0.4"
- sources."conventional-commits-filter-1.1.5"
- sources."conventional-commits-parser-2.1.5"
+ sources."conventional-changelog-jshint-0.3.8"
+ sources."conventional-changelog-preset-loader-1.1.8"
+ sources."conventional-changelog-writer-3.0.9"
+ sources."conventional-commits-filter-1.1.6"
+ sources."conventional-commits-parser-2.1.7"
(sources."conventional-recommended-bump-1.2.1" // {
dependencies = [
sources."meow-3.7.0"
@@ -34473,7 +35008,7 @@ in
sources."error-ex-1.3.1"
sources."escape-string-regexp-1.0.5"
sources."execa-0.8.0"
- sources."external-editor-2.1.0"
+ sources."external-editor-2.2.0"
sources."figures-2.0.0"
sources."find-up-2.1.0"
sources."fs-extra-4.0.3"
@@ -34484,14 +35019,14 @@ in
sources."get-port-3.2.0"
sources."get-stdin-4.0.1"
sources."get-stream-3.0.0"
- (sources."git-raw-commits-1.3.4" // {
+ (sources."git-raw-commits-1.3.6" // {
dependencies = [
sources."read-pkg-3.0.0"
sources."read-pkg-up-3.0.0"
];
})
sources."git-remote-origin-url-2.0.0"
- sources."git-semver-tags-1.3.4"
+ sources."git-semver-tags-1.3.6"
sources."gitconfiglocal-1.0.0"
sources."glob-7.1.2"
sources."glob-parent-3.1.0"
@@ -34538,7 +35073,7 @@ in
sources."is-utf8-0.2.1"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
- sources."json-parse-better-errors-1.0.1"
+ sources."json-parse-better-errors-1.0.2"
sources."json-stringify-safe-5.0.1"
sources."jsonfile-4.0.0"
sources."jsonparse-1.3.1"
@@ -34558,7 +35093,7 @@ in
sources."lodash.templatesettings-4.1.0"
sources."longest-1.0.1"
sources."loud-rejection-1.6.0"
- sources."lowercase-keys-1.0.0"
+ sources."lowercase-keys-1.0.1"
sources."lru-cache-4.1.2"
sources."make-dir-1.2.0"
sources."map-obj-1.0.1"
@@ -34578,8 +35113,8 @@ in
sources."minimist-0.0.8"
sources."minimist-options-3.0.2"
sources."mkdirp-0.5.1"
- sources."modify-values-1.0.0"
- sources."moment-2.21.0"
+ sources."modify-values-1.0.1"
+ sources."moment-2.22.0"
sources."mute-stream-0.0.7"
sources."normalize-package-data-2.4.0"
sources."npm-run-path-2.0.2"
@@ -34620,7 +35155,7 @@ in
sources."pseudomap-1.0.2"
sources."q-1.5.1"
sources."quick-lru-1.1.0"
- sources."rc-1.2.5"
+ sources."rc-1.2.6"
sources."read-cmd-shim-1.0.1"
sources."read-pkg-3.0.0"
sources."read-pkg-up-1.0.1"
@@ -34802,7 +35337,7 @@ in
sources."safe-buffer-5.1.1"
sources."sntp-1.0.9"
sources."source-map-0.5.7"
- (sources."sshpk-1.13.1" // {
+ (sources."sshpk-1.14.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -34865,10 +35400,10 @@ in
sources."kind-of-4.0.0"
];
})
- sources."clone-2.1.1"
+ sources."clone-2.1.2"
sources."clone-buffer-1.0.0"
sources."clone-stats-1.0.0"
- sources."cloneable-readable-1.1.1"
+ sources."cloneable-readable-1.1.2"
sources."concat-map-0.0.1"
sources."convert-source-map-1.5.1"
sources."core-util-is-1.0.2"
@@ -34964,7 +35499,7 @@ in
sources."vinyl-2.1.0"
(sources."vinyl-fs-2.4.4" // {
dependencies = [
- sources."clone-1.0.3"
+ sources."clone-1.0.4"
sources."clone-stats-0.0.1"
sources."is-extglob-1.0.0"
sources."is-glob-2.0.1"
@@ -35020,7 +35555,11 @@ in
sources."better-assert-1.0.2"
sources."binary-extensions-1.11.0"
sources."blob-0.0.4"
- sources."body-parser-1.18.2"
+ (sources."body-parser-1.18.2" // {
+ dependencies = [
+ sources."setprototypeof-1.0.3"
+ ];
+ })
sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
(sources."braces-1.8.5" // {
@@ -35057,16 +35596,8 @@ in
sources."ee-first-1.1.1"
sources."emoji-regex-6.1.1"
sources."encodeurl-1.0.2"
- (sources."engine.io-3.1.5" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- (sources."engine.io-client-3.1.6" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
+ sources."engine.io-3.2.0"
+ sources."engine.io-client-3.2.1"
sources."engine.io-parser-2.1.2"
sources."entities-1.1.1"
sources."escape-html-1.0.3"
@@ -35075,7 +35606,7 @@ in
sources."expand-range-1.8.2"
(sources."express-4.16.3" // {
dependencies = [
- sources."setprototypeof-1.1.0"
+ sources."statuses-1.4.0"
];
})
sources."extend-3.0.1"
@@ -35105,11 +35636,7 @@ in
sources."hawk-6.0.2"
sources."hoek-4.2.1"
sources."html-entities-1.2.1"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- ];
- })
+ sources."http-errors-1.6.3"
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.19"
sources."indexof-0.0.1"
@@ -35153,14 +35680,14 @@ in
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
sources."ms-2.0.0"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
sources."negotiator-0.6.1"
sources."normalize-path-2.1.1"
sources."oauth-sign-0.8.2"
sources."object-component-0.0.3"
sources."object.omit-2.0.1"
sources."on-finished-2.3.0"
- sources."opn-5.2.0"
+ sources."opn-5.3.0"
sources."parse-glob-3.0.4"
sources."parseqs-0.0.5"
sources."parseuri-0.0.5"
@@ -35183,7 +35710,12 @@ in
];
})
sources."range-parser-1.2.0"
- sources."raw-body-2.3.2"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ ];
+ })
sources."readable-stream-2.3.5"
sources."readdirp-2.1.0"
sources."regex-cache-0.4.4"
@@ -35195,23 +35727,20 @@ in
sources."send-0.16.2"
sources."serve-static-1.13.2"
sources."set-immediate-shim-1.0.1"
- sources."setprototypeof-1.0.3"
+ sources."setprototypeof-1.1.0"
sources."sntp-2.1.0"
- (sources."socket.io-2.0.4" // {
+ (sources."socket.io-2.1.0" // {
dependencies = [
+ sources."debug-3.1.0"
sources."isarray-2.0.1"
];
})
sources."socket.io-adapter-1.1.1"
- sources."socket.io-client-2.0.4"
- (sources."socket.io-parser-3.1.3" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
+ sources."socket.io-client-2.1.0"
+ sources."socket.io-parser-3.2.0"
sources."sprintf-js-1.0.3"
- sources."sshpk-1.13.1"
- sources."statuses-1.4.0"
+ sources."sshpk-1.14.1"
+ sources."statuses-1.5.0"
sources."string_decoder-1.0.3"
sources."stringstream-0.0.5"
sources."to-array-0.1.4"
@@ -35225,7 +35754,6 @@ in
sources."util-deprecate-1.0.2"
sources."utils-merge-1.0.1"
sources."uuid-3.2.1"
- sources."uws-9.14.0"
sources."vary-1.1.2"
sources."verror-1.10.0"
sources."ws-3.3.3"
@@ -35300,11 +35828,7 @@ in
sources."glob-parent-2.0.0"
sources."graceful-fs-4.1.11"
sources."http-auth-3.1.3"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- ];
- })
+ sources."http-errors-1.6.3"
sources."http-parser-js-0.4.11"
sources."inherits-2.0.3"
sources."is-binary-path-1.0.1"
@@ -35334,14 +35858,14 @@ in
];
})
sources."ms-0.7.1"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
sources."negotiator-0.6.1"
sources."normalize-path-2.1.1"
sources."object-assign-4.1.1"
sources."object.omit-2.0.1"
sources."on-finished-2.3.0"
sources."on-headers-1.0.1"
- sources."opn-5.2.0"
+ sources."opn-5.3.0"
sources."parse-glob-3.0.4"
sources."parseurl-1.3.2"
sources."path-is-absolute-1.0.1"
@@ -35380,7 +35904,7 @@ in
];
})
sources."set-immediate-shim-1.0.1"
- sources."setprototypeof-1.0.3"
+ sources."setprototypeof-1.1.0"
sources."split-0.3.3"
sources."statuses-1.3.1"
sources."stream-combiner-0.0.4"
@@ -35443,10 +35967,10 @@ in
mocha = nodeEnv.buildNodePackage {
name = "mocha";
packageName = "mocha";
- version = "5.0.4";
+ version = "5.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-5.0.4.tgz";
- sha512 = "1agv3n6vr1rhjv18n6nfra7wlz7jmf38aym85299fdidy0qq6wsl9zcnvsn4867dcwjgrmrfgnymvg5f7c8sxccw10lvcb8y40akhww";
+ url = "https://registry.npmjs.org/mocha/-/mocha-5.0.5.tgz";
+ sha512 = "20cyp9x4b3gfrd50w8dcfkm0dv2mc6z0ikvfpkc8dzca6hppslgn0yiw2qdzc4ggf234kzcdvs0hw7lnv7ywilaml4w39vr6r93ghyw";
};
dependencies = [
sources."balanced-match-1.0.0"
@@ -35494,7 +36018,7 @@ in
sources."argparse-1.0.10"
sources."asynckit-0.4.0"
sources."combined-stream-1.0.6"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."component-emitter-1.2.1"
sources."cookiejar-2.1.1"
sources."core-util-is-1.0.2"
@@ -35503,7 +36027,7 @@ in
sources."esprima-4.0.0"
sources."extend-3.0.1"
sources."form-data-2.3.2"
- sources."formidable-1.2.0"
+ sources."formidable-1.2.1"
sources."graphlib-2.1.5"
sources."inherits-2.0.3"
sources."isarray-1.0.0"
@@ -35580,13 +36104,14 @@ in
sources."base64-js-1.2.3"
sources."bcrypt-pbkdf-1.0.1"
sources."boom-4.3.1"
+ sources."buffer-from-1.0.0"
sources."builtin-modules-1.1.1"
sources."builtins-1.0.3"
sources."caseless-0.12.0"
sources."co-4.6.0"
sources."code-point-at-1.1.0"
sources."combined-stream-1.0.6"
- sources."concat-stream-1.6.1"
+ sources."concat-stream-1.6.2"
sources."config-chain-1.1.11"
sources."console-control-strings-1.1.0"
sources."core-util-is-1.0.2"
@@ -35639,7 +36164,7 @@ in
sources."mime-db-1.33.0"
sources."mime-types-2.1.18"
sources."minimist-0.0.8"
- sources."minipass-2.2.1"
+ sources."minipass-2.2.4"
sources."minizlib-1.1.0"
sources."mkdirp-0.5.1"
sources."ncp-0.4.2"
@@ -35683,8 +36208,8 @@ in
sources."spdx-exceptions-2.1.0"
sources."spdx-expression-parse-3.0.0"
sources."spdx-license-ids-3.0.0"
- sources."sshpk-1.13.1"
- sources."ssri-5.2.4"
+ sources."sshpk-1.14.1"
+ sources."ssri-5.3.0"
sources."string-width-1.0.2"
sources."string_decoder-1.0.3"
sources."stringstream-0.0.5"
@@ -35701,7 +36226,7 @@ in
sources."validate-npm-package-license-3.0.3"
sources."validate-npm-package-name-3.0.0"
sources."verror-1.10.0"
- sources."walk-2.3.9"
+ sources."walk-2.3.13"
sources."wide-align-1.1.2"
sources."wrappy-1.0.2"
sources."yallist-3.0.2"
@@ -35812,7 +36337,7 @@ in
sources."set-blocking-2.0.0"
sources."signal-exit-3.0.2"
sources."sntp-2.1.0"
- sources."sshpk-1.13.1"
+ sources."sshpk-1.14.1"
sources."string-width-1.0.2"
sources."string_decoder-1.0.3"
sources."stringstream-0.0.5"
@@ -35886,7 +36411,7 @@ in
sources."yargs-1.3.3"
];
})
- sources."big-integer-1.6.26"
+ sources."big-integer-1.6.27"
sources."block-stream-0.0.9"
(sources."body-parser-1.18.2" // {
dependencies = [
@@ -35959,11 +36484,7 @@ in
sources."headless-0.1.7"
sources."hoek-2.16.3"
sources."hosted-git-info-2.6.0"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- ];
- })
+ sources."http-errors-1.6.3"
sources."http-signature-1.1.1"
sources."iconv-lite-0.4.19"
sources."indent-string-2.1.0"
@@ -36007,7 +36528,7 @@ in
sources."minimist-1.2.0"
sources."mkdirp-0.5.1"
sources."ms-2.0.0"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
sources."negotiator-0.6.1"
sources."node-pre-gyp-0.6.39"
sources."nopt-4.0.1"
@@ -36043,8 +36564,13 @@ in
sources."punycode-1.4.1"
sources."qs-6.5.1"
sources."range-parser-1.2.0"
- sources."raw-body-2.3.2"
- sources."rc-1.2.5"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ ];
+ })
+ sources."rc-1.2.6"
sources."read-pkg-1.1.0"
sources."read-pkg-up-1.0.1"
sources."readable-stream-2.3.5"
@@ -36055,7 +36581,11 @@ in
sources."safe-buffer-5.1.1"
sources."semver-4.3.6"
sources."send-0.16.2"
- sources."serve-favicon-2.4.5"
+ (sources."serve-favicon-2.5.0" // {
+ dependencies = [
+ sources."ms-2.1.1"
+ ];
+ })
sources."serve-static-1.13.2"
sources."set-blocking-2.0.0"
sources."setprototypeof-1.1.0"
@@ -36065,7 +36595,7 @@ in
sources."spdx-exceptions-2.1.0"
sources."spdx-expression-parse-3.0.0"
sources."spdx-license-ids-3.0.0"
- (sources."sshpk-1.13.1" // {
+ (sources."sshpk-1.14.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -36132,124 +36662,76 @@ in
node-pre-gyp = nodeEnv.buildNodePackage {
name = "node-pre-gyp";
packageName = "node-pre-gyp";
- version = "0.8.0";
+ version = "0.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.8.0.tgz";
- sha512 = "3z3mz92ya4hx3mg902sb6kwlkfz8dkc12hxcnp4sygbiahbiknzh585jrf9zf3bqd9xgsh9109dz5mqwjh268zl0nmn2n30fl7cqa49";
+ url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.9.0.tgz";
+ sha1 = "bdd4c3afac9b1b1ebff0a9ff3362859eb6781bb8";
};
dependencies = [
sources."abbrev-1.1.1"
- sources."ajv-5.5.2"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
sources."are-we-there-yet-1.1.4"
- sources."asn1-0.2.3"
- sources."assert-plus-1.0.0"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.6.0"
sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.1"
- sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
- sources."caseless-0.12.0"
sources."chownr-1.0.1"
- sources."co-4.6.0"
sources."code-point-at-1.1.0"
- sources."combined-stream-1.0.6"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
sources."core-util-is-1.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
sources."deep-extend-0.4.2"
- sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
sources."detect-libc-1.0.3"
- sources."ecc-jsbn-0.1.1"
- sources."extend-3.0.1"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
sources."fs-minipass-1.2.5"
sources."fs.realpath-1.0.0"
sources."gauge-2.7.4"
- sources."getpass-0.1.7"
sources."glob-7.1.2"
- sources."har-schema-2.0.0"
- sources."har-validator-5.0.3"
sources."has-unicode-2.0.1"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
- sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.19"
sources."ignore-walk-3.0.1"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."ini-1.3.5"
sources."is-fullwidth-code-point-1.0.0"
- sources."is-typedarray-1.0.0"
sources."isarray-1.0.0"
- sources."isstream-0.1.2"
- sources."jsbn-0.1.1"
- sources."json-schema-0.2.3"
- sources."json-schema-traverse-0.3.1"
- sources."json-stringify-safe-5.0.1"
- sources."jsprim-1.4.1"
- sources."mime-db-1.33.0"
- sources."mime-types-2.1.18"
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
- sources."minipass-2.2.1"
+ sources."minipass-2.2.4"
sources."minizlib-1.1.0"
sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."needle-2.2.0"
sources."nopt-4.0.1"
sources."npm-bundled-1.0.3"
sources."npm-packlist-1.1.10"
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
- sources."oauth-sign-0.8.2"
sources."object-assign-4.1.1"
sources."once-1.4.0"
sources."os-homedir-1.0.2"
sources."os-tmpdir-1.0.2"
sources."osenv-0.1.5"
sources."path-is-absolute-1.0.1"
- sources."performance-now-2.1.0"
sources."process-nextick-args-2.0.0"
- sources."punycode-1.4.1"
- sources."qs-6.5.1"
- (sources."rc-1.2.5" // {
+ (sources."rc-1.2.6" // {
dependencies = [
sources."minimist-1.2.0"
];
})
sources."readable-stream-2.3.5"
- sources."request-2.83.0"
sources."rimraf-2.6.2"
sources."safe-buffer-5.1.1"
+ sources."sax-1.2.4"
sources."semver-5.5.0"
sources."set-blocking-2.0.0"
sources."signal-exit-3.0.2"
- sources."sntp-2.1.0"
- sources."sshpk-1.13.1"
sources."string-width-1.0.2"
sources."string_decoder-1.0.3"
- sources."stringstream-0.0.5"
sources."strip-ansi-3.0.1"
sources."strip-json-comments-2.0.1"
- sources."tar-4.4.0"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
+ sources."tar-4.4.1"
sources."util-deprecate-1.0.2"
- sources."uuid-3.2.1"
- sources."verror-1.10.0"
sources."wide-align-1.1.2"
sources."wrappy-1.0.2"
sources."yallist-3.0.2"
@@ -36266,10 +36748,10 @@ in
nodemon = nodeEnv.buildNodePackage {
name = "nodemon";
packageName = "nodemon";
- version = "1.17.1";
+ version = "1.17.3";
src = fetchurl {
- url = "https://registry.npmjs.org/nodemon/-/nodemon-1.17.1.tgz";
- sha512 = "2dnscknr22xf5r06zcrjz0ljaa2agbrnczh4faf42qsmqfpcng6znv6138nwyyr16fpqk28wgfab1bw3snrsyfz8pirmjl9ywdqibx7";
+ url = "https://registry.npmjs.org/nodemon/-/nodemon-1.17.3.tgz";
+ sha512 = "1i6m13ad9c1p8xilw0vjcgmj0nnk1y9b3lncx6kwljxw89hmk5z9vv8m452wfd5qg9bqf9r0b236d9vxbc3i2sx2flamfrr03xm42zh";
};
dependencies = [
sources."abbrev-1.1.1"
@@ -36290,7 +36772,7 @@ in
sources."array-unique-0.3.2"
sources."assign-symbols-1.0.0"
sources."async-each-1.0.1"
- sources."atob-2.0.3"
+ sources."atob-2.1.0"
sources."balanced-match-1.0.0"
(sources."base-0.11.2" // {
dependencies = [
@@ -36316,7 +36798,7 @@ in
sources."camelcase-4.1.0"
sources."capture-stack-trace-1.0.0"
sources."chalk-2.3.2"
- (sources."chokidar-2.0.2" // {
+ (sources."chokidar-2.0.3" // {
dependencies = [
sources."debug-2.6.9"
sources."define-property-1.0.0"
@@ -36341,6 +36823,7 @@ in
})
];
})
+ sources."ci-info-1.1.3"
(sources."class-utils-0.3.6" // {
dependencies = [
sources."define-property-0.2.5"
@@ -36352,7 +36835,7 @@ in
sources."color-name-1.1.3"
sources."component-emitter-1.2.1"
sources."concat-map-0.0.1"
- sources."configstore-3.1.1"
+ sources."configstore-3.1.2"
sources."copy-descriptor-0.1.1"
sources."core-util-is-1.0.2"
sources."create-error-class-3.0.2"
@@ -36407,6 +36890,7 @@ in
sources."is-accessor-descriptor-1.0.0"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
+ sources."is-ci-1.1.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-extendable-1.0.1"
@@ -36429,13 +36913,13 @@ in
sources."isobject-3.0.1"
sources."kind-of-6.0.2"
sources."latest-version-3.1.0"
- sources."lowercase-keys-1.0.0"
+ sources."lowercase-keys-1.0.1"
sources."lru-cache-4.1.2"
sources."make-dir-1.2.0"
sources."map-cache-0.2.2"
sources."map-stream-0.1.0"
sources."map-visit-1.0.0"
- (sources."micromatch-3.1.9" // {
+ (sources."micromatch-3.1.10" // {
dependencies = [
(sources."is-accessor-descriptor-0.1.6" // {
dependencies = [
@@ -36455,7 +36939,7 @@ in
sources."minimist-1.2.0"
sources."mixin-deep-1.3.1"
sources."ms-2.0.0"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
sources."nanomatch-1.2.9"
sources."nopt-1.0.10"
sources."normalize-path-2.1.1"
@@ -36478,7 +36962,7 @@ in
sources."ps-tree-1.1.0"
sources."pseudomap-1.0.2"
sources."pstree.remy-1.1.0"
- sources."rc-1.2.5"
+ sources."rc-1.2.6"
sources."readable-stream-2.3.5"
sources."readdirp-2.1.0"
sources."regex-not-1.0.2"
@@ -36562,7 +37046,7 @@ in
})
sources."unzip-response-2.0.1"
sources."upath-1.0.4"
- sources."update-notifier-2.3.0"
+ sources."update-notifier-2.4.0"
sources."urix-0.1.0"
sources."url-parse-lax-1.0.0"
(sources."use-3.1.0" // {
@@ -36618,12 +37102,13 @@ in
sources."bcrypt-1.0.3"
sources."bcrypt-pbkdf-1.0.1"
sources."bcryptjs-2.4.3"
- sources."bl-1.2.1"
+ sources."bl-1.2.2"
sources."block-stream-0.0.9"
sources."body-parser-1.18.2"
sources."boolbase-1.0.0"
sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
+ sources."buffer-from-1.0.0"
sources."buildmail-2.0.0"
sources."busboy-0.2.14"
sources."bytes-3.0.0"
@@ -36641,7 +37126,7 @@ in
sources."commander-2.13.0"
sources."commist-1.0.0"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.1"
+ sources."concat-stream-1.6.2"
sources."console-control-strings-1.1.0"
sources."content-disposition-0.5.2"
sources."content-type-1.0.4"
@@ -36685,7 +37170,6 @@ in
sources."etag-1.8.1"
(sources."express-4.16.2" // {
dependencies = [
- sources."setprototypeof-1.1.0"
sources."statuses-1.3.1"
];
})
@@ -36728,11 +37212,7 @@ in
sources."domelementtype-1.3.0"
];
})
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- ];
- })
+ sources."http-errors-1.6.3"
sources."http-signature-1.2.0"
sources."i18next-1.10.6"
sources."i18next-client-1.10.3"
@@ -36808,7 +37288,7 @@ in
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
sources."mkdirp-0.5.1"
- sources."moment-2.21.0"
+ sources."moment-2.22.0"
sources."moment-timezone-0.5.14"
(sources."mqtt-2.15.1" // {
dependencies = [
@@ -36832,10 +37312,10 @@ in
sources."needle-0.11.0"
sources."negotiator-0.6.1"
sources."node-pre-gyp-0.6.36"
- (sources."node-red-node-email-0.1.24" // {
+ (sources."node-red-node-email-0.1.27" // {
dependencies = [
sources."addressparser-1.0.1"
- sources."clone-1.0.3"
+ sources."clone-1.0.4"
sources."isarray-0.0.1"
sources."minimist-0.0.10"
sources."readable-stream-1.1.14"
@@ -36843,13 +37323,13 @@ in
sources."string_decoder-0.10.31"
];
})
- (sources."node-red-node-feedparser-0.1.10" // {
+ (sources."node-red-node-feedparser-0.1.12" // {
dependencies = [
sources."addressparser-1.0.1"
];
})
- sources."node-red-node-rbe-0.2.1"
- sources."node-red-node-twitter-0.1.12"
+ sources."node-red-node-rbe-0.2.3"
+ sources."node-red-node-twitter-0.1.13"
sources."nodemailer-1.11.0"
sources."nodemailer-direct-transport-1.1.0"
sources."nodemailer-smtp-transport-1.1.0"
@@ -36891,8 +37371,14 @@ in
sources."qs-6.5.1"
sources."random-bytes-1.0.0"
sources."range-parser-1.2.0"
- sources."raw-body-2.3.2"
- sources."rc-1.2.5"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ sources."rc-1.2.6"
sources."readable-stream-2.3.5"
sources."reinterval-1.1.0"
sources."remove-trailing-separator-1.1.0"
@@ -36906,15 +37392,15 @@ in
sources."sentiment-2.1.0"
sources."serve-static-1.13.1"
sources."set-blocking-2.0.0"
- sources."setprototypeof-1.0.3"
+ sources."setprototypeof-1.1.0"
sources."signal-exit-3.0.2"
sources."smtp-connection-1.3.8"
sources."sntp-2.1.0"
sources."source-map-0.6.1"
sources."split2-2.2.0"
sources."sprintf-js-1.0.3"
- sources."sshpk-1.13.1"
- sources."statuses-1.4.0"
+ sources."sshpk-1.14.1"
+ sources."statuses-1.5.0"
sources."stream-shift-1.0.0"
sources."streamsearch-0.1.2"
sources."string-width-1.0.2"
@@ -36945,7 +37431,7 @@ in
sources."utf7-1.0.2"
sources."util-deprecate-1.0.2"
sources."utils-merge-1.0.1"
- sources."uue-3.1.1"
+ sources."uue-3.1.2"
sources."uuid-3.2.1"
sources."vary-1.1.2"
sources."verror-1.10.0"
@@ -37049,7 +37535,7 @@ in
sources."ms-0.1.0"
sources."muri-0.3.1"
sources."nan-1.0.0"
- sources."natives-1.1.1"
+ sources."natives-1.1.2"
(sources."net-ping-1.1.7" // {
dependencies = [
sources."nan-2.3.5"
@@ -37103,10 +37589,10 @@ in
npm = nodeEnv.buildNodePackage {
name = "npm";
packageName = "npm";
- version = "5.7.1";
+ version = "5.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-5.7.1.tgz";
- sha512 = "147xlh1d389j8yilssidlk7w8qgp1354y5p2bhv30a0m74vmfbl48859yfidij4ixbf0dhdmzkg6zz6viik2cskkrz4nw56zsz2nn5g";
+ url = "https://registry.npmjs.org/npm/-/npm-5.8.0.tgz";
+ sha512 = "32zs775qksijpj23rwly4h8gs435lbsgaxzw6dmyjjg3i8qd40bmmadv3ac9mdxd0cd2x0m3ncsqa0j5vkmkvh8dknn0j9d1k6ig30f";
};
buildInputs = globalBuildInputs;
meta = {
@@ -37219,7 +37705,7 @@ in
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
sources."mkdirp-0.3.5"
- sources."natives-1.1.1"
+ sources."natives-1.1.2"
sources."ncp-0.4.2"
sources."nopt-2.2.1"
(sources."npm-registry-client-0.2.27" // {
@@ -37256,7 +37742,7 @@ in
sources."signal-exit-3.0.2"
sources."slide-1.1.6"
sources."sntp-2.1.0"
- sources."sshpk-1.13.1"
+ sources."sshpk-1.14.1"
sources."string-width-1.0.2"
sources."string_decoder-1.0.3"
sources."stringstream-0.0.5"
@@ -37282,7 +37768,7 @@ in
sources."util-deprecate-1.0.2"
sources."uuid-3.2.1"
sources."verror-1.10.0"
- sources."walk-2.3.9"
+ sources."walk-2.3.13"
sources."wide-align-1.1.2"
sources."wrappy-1.0.2"
];
@@ -37325,6 +37811,7 @@ in
sources."capture-stack-trace-1.0.0"
sources."center-align-0.1.3"
sources."chalk-1.1.3"
+ sources."ci-info-1.1.3"
sources."cint-8.2.1"
sources."cli-boxes-1.0.0"
sources."cli-cursor-1.0.2"
@@ -37337,7 +37824,7 @@ in
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
sources."colors-1.0.3"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."concat-map-0.0.1"
(sources."configstore-1.4.0" // {
dependencies = [
@@ -37391,6 +37878,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
sources."is-builtin-module-1.0.0"
+ sources."is-ci-1.1.0"
sources."is-extendable-0.1.1"
sources."is-finite-1.0.2"
sources."is-fullwidth-code-point-1.0.0"
@@ -37423,7 +37911,7 @@ in
sources."lodash.defaultsdeep-4.6.0"
sources."lodash.mergewith-4.6.1"
sources."longest-1.0.1"
- sources."lowercase-keys-1.0.0"
+ sources."lowercase-keys-1.0.1"
sources."lru-cache-4.1.2"
sources."make-dir-1.2.0"
sources."minimatch-3.0.4"
@@ -37479,7 +37967,7 @@ in
sources."pseudomap-1.0.2"
sources."punycode-1.3.2"
sources."querystring-0.2.0"
- sources."rc-1.2.5"
+ sources."rc-1.2.6"
sources."rc-config-loader-2.0.1"
sources."read-all-stream-3.1.0"
sources."read-pkg-1.1.0"
@@ -37501,7 +37989,7 @@ in
sources."sax-1.2.4"
sources."semver-5.5.0"
sources."semver-diff-2.1.0"
- sources."semver-utils-1.1.1"
+ sources."semver-utils-1.1.2"
sources."set-blocking-2.0.0"
(sources."shallow-clone-0.1.2" // {
dependencies = [
@@ -37512,7 +38000,7 @@ in
sources."shebang-regex-1.0.0"
sources."signal-exit-3.0.2"
sources."slide-1.1.6"
- (sources."snyk-1.70.0" // {
+ (sources."snyk-1.70.3" // {
dependencies = [
sources."async-0.9.2"
sources."camelcase-3.0.0"
@@ -37556,7 +38044,7 @@ in
sources."debug-2.6.9"
];
})
- sources."snyk-python-plugin-1.5.6"
+ sources."snyk-python-plugin-1.5.7"
(sources."snyk-resolve-1.0.0" // {
dependencies = [
sources."debug-2.6.9"
@@ -37610,14 +38098,14 @@ in
sources."undefsafe-0.0.3"
sources."unique-string-1.0.0"
sources."unzip-response-1.0.2"
- (sources."update-notifier-2.3.0" // {
+ (sources."update-notifier-2.4.0" // {
dependencies = [
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
sources."boxen-1.3.0"
sources."camelcase-4.1.0"
sources."chalk-2.3.2"
- sources."configstore-3.1.1"
+ sources."configstore-3.1.2"
sources."dot-prop-4.2.0"
sources."got-6.7.1"
sources."is-fullwidth-code-point-2.0.0"
@@ -37676,7 +38164,7 @@ in
};
dependencies = [
sources."agent-base-4.2.0"
- sources."ansi-escapes-3.0.0"
+ sources."ansi-escapes-3.1.0"
sources."ansi-regex-2.1.1"
sources."ansi-styles-3.2.1"
sources."boom-5.2.0"
@@ -37705,7 +38193,7 @@ in
sources."es6-promisify-5.0.0"
sources."escape-string-regexp-1.0.5"
sources."execa-0.7.0"
- sources."external-editor-2.1.0"
+ sources."external-editor-2.2.0"
sources."figures-2.0.0"
sources."find-up-2.1.0"
sources."get-caller-file-1.0.2"
@@ -37714,7 +38202,7 @@ in
sources."has-flag-3.0.0"
sources."hoek-4.2.1"
sources."hosted-git-info-2.6.0"
- sources."https-proxy-agent-2.2.0"
+ sources."https-proxy-agent-2.2.1"
sources."iconv-lite-0.4.19"
(sources."inquirer-3.3.0" // {
dependencies = [
@@ -37811,10 +38299,10 @@ in
ocaml-language-server = nodeEnv.buildNodePackage {
name = "ocaml-language-server";
packageName = "ocaml-language-server";
- version = "1.0.28";
+ version = "1.0.32";
src = fetchurl {
- url = "https://registry.npmjs.org/ocaml-language-server/-/ocaml-language-server-1.0.28.tgz";
- sha512 = "2brmnb1vvd9aw553ngmvfsf5m9wl3i4ykjlms5khiplp02hvsj7g8ag9vn6dznp1r1jg6v5w8sg77z5d23n354jfnfwpxpwl571d307";
+ url = "https://registry.npmjs.org/ocaml-language-server/-/ocaml-language-server-1.0.32.tgz";
+ sha512 = "2hdrvr25l7lv0plz31dqgnrr0qli6332z69ywwns4mxmmyk3mc1s7rjdsgf201rw11nqhwbhj2w7n0zijqldbwi5chdnma667lihcyc";
};
dependencies = [
sources."async-2.6.0"
@@ -37849,13 +38337,14 @@ in
production = true;
bypassCache = false;
};
- parsoid = nodeEnv.buildNodePackage {
+ "parsoid-git://github.com/abbradar/parsoid#stable" = nodeEnv.buildNodePackage {
name = "parsoid";
packageName = "parsoid";
version = "0.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/parsoid/-/parsoid-0.8.0.tgz";
- sha1 = "fbedac4c5c0b721f4c241287b81bdc3e4c7987c9";
+ src = fetchgit {
+ url = "git://github.com/abbradar/parsoid";
+ rev = "89958e4f9e5583e0fdc5447103392e3d749d500b";
+ sha256 = "1af850ced5bd8db64e20ad30bf59d99c14624efba3127759ca1c34088a0aadd7";
};
dependencies = [
sources."accepts-1.3.5"
@@ -37875,11 +38364,12 @@ in
sources."babybird-0.0.1"
sources."balanced-match-1.0.0"
sources."bcrypt-pbkdf-1.0.1"
- sources."bl-1.2.1"
+ sources."bl-1.2.2"
sources."bluebird-3.5.1"
(sources."body-parser-1.18.2" // {
dependencies = [
sources."content-type-1.0.4"
+ sources."setprototypeof-1.0.3"
];
})
sources."boom-4.3.1"
@@ -37903,10 +38393,10 @@ in
sources."concat-map-0.0.1"
sources."connect-busboy-0.0.2"
sources."content-disposition-0.5.2"
- sources."content-type-git+https://github.com/wikimedia/content-type.git#master"
+ sources."content-type-git+https://github.com/wikimedia/content-type#master"
sources."cookie-0.3.1"
sources."cookie-signature-1.0.6"
- sources."core-js-2.5.3"
+ sources."core-js-2.5.4"
sources."core-util-is-1.0.2"
(sources."cryptiles-3.1.2" // {
dependencies = [
@@ -37923,7 +38413,7 @@ in
sources."dicer-0.2.5"
sources."diff-1.4.0"
sources."dnscache-1.0.1"
- sources."dom-storage-2.0.2"
+ sources."dom-storage-2.1.0"
sources."domino-1.0.30"
sources."dtrace-provider-0.8.6"
sources."ecc-jsbn-0.1.1"
@@ -37937,7 +38427,7 @@ in
(sources."express-4.16.3" // {
dependencies = [
sources."content-type-1.0.4"
- sources."setprototypeof-1.1.0"
+ sources."statuses-1.4.0"
];
})
(sources."express-handlebars-3.0.0" // {
@@ -37951,7 +38441,11 @@ in
sources."extsprintf-1.3.0"
sources."fast-deep-equal-1.1.0"
sources."fast-json-stable-stringify-2.0.0"
- sources."finalhandler-1.1.1"
+ (sources."finalhandler-1.1.1" // {
+ dependencies = [
+ sources."statuses-1.4.0"
+ ];
+ })
sources."find-up-1.1.2"
sources."foreach-2.0.5"
sources."forever-agent-0.6.1"
@@ -37974,11 +38468,7 @@ in
sources."hoek-4.2.1"
sources."hosted-git-info-2.6.0"
sources."hot-shots-4.8.0"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- ];
- })
+ sources."http-errors-1.6.3"
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.19"
sources."inflight-1.0.6"
@@ -38024,13 +38514,13 @@ in
sources."minimatch-3.0.4"
sources."minimist-0.0.10"
sources."mkdirp-0.5.1"
- sources."moment-2.21.0"
+ sources."moment-2.22.0"
sources."ms-2.0.0"
sources."msgpack5-3.6.0"
sources."mv-2.1.1"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
sources."ncp-2.0.0"
- sources."negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access"
+ sources."negotiator-git+https://github.com/arlolra/negotiator#full-parse-access"
sources."normalize-package-data-2.4.0"
sources."number-is-nan-1.0.1"
sources."oauth-sign-0.8.2"
@@ -38047,7 +38537,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-to-regexp-0.1.7"
sources."path-type-1.1.0"
- sources."pegjs-git+https://github.com/tstarling/pegjs.git#fork"
+ sources."pegjs-git+https://github.com/tstarling/pegjs#fork"
sources."performance-now-2.1.0"
sources."pify-2.3.0"
sources."pinkie-2.0.4"
@@ -38059,7 +38549,12 @@ in
sources."punycode-1.4.1"
sources."qs-6.5.1"
sources."range-parser-1.2.0"
- sources."raw-body-2.3.2"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ ];
+ })
sources."read-pkg-1.1.0"
sources."read-pkg-up-1.0.1"
sources."readable-stream-1.1.14"
@@ -38073,9 +38568,13 @@ in
sources."safe-json-stringify-1.1.0"
sources."semver-5.5.0"
sources."send-0.16.2"
- sources."serve-favicon-2.4.5"
+ (sources."serve-favicon-2.5.0" // {
+ dependencies = [
+ sources."ms-2.1.1"
+ ];
+ })
sources."serve-static-1.13.2"
- (sources."service-runner-2.5.2" // {
+ (sources."service-runner-2.3.0" // {
dependencies = [
sources."isarray-1.0.0"
sources."minimist-0.0.8"
@@ -38085,7 +38584,7 @@ in
];
})
sources."set-blocking-2.0.0"
- sources."setprototypeof-1.0.3"
+ sources."setprototypeof-1.1.0"
sources."simplediff-0.1.1"
sources."sntp-2.1.0"
sources."source-map-0.4.4"
@@ -38094,8 +38593,8 @@ in
sources."spdx-expression-parse-3.0.0"
sources."spdx-license-ids-3.0.0"
sources."sprintf-js-1.0.3"
- sources."sshpk-1.13.1"
- sources."statuses-1.4.0"
+ sources."sshpk-1.14.1"
+ sources."statuses-1.5.0"
sources."streamsearch-0.1.2"
sources."string-width-1.0.2"
sources."string_decoder-0.10.31"
@@ -38136,7 +38635,6 @@ in
buildInputs = globalBuildInputs;
meta = {
description = "Mediawiki parser for the VisualEditor.";
- homepage = "https://github.com/wikimedia/parsoid#readme";
license = "GPL-2.0+";
};
production = true;
@@ -38163,7 +38661,7 @@ in
sources."balanced-match-1.0.0"
sources."base64-js-0.0.8"
sources."bencode-2.0.0"
- sources."big-integer-1.6.26"
+ sources."big-integer-1.6.27"
sources."bitfield-0.1.0"
sources."bittorrent-dht-6.4.2"
sources."bittorrent-tracker-7.7.0"
@@ -38174,9 +38672,12 @@ in
sources."bplist-creator-0.0.6"
sources."bplist-parser-0.1.1"
sources."brace-expansion-1.1.11"
+ sources."buffer-alloc-1.1.0"
sources."buffer-alloc-unsafe-1.0.0"
sources."buffer-equal-0.0.1"
sources."buffer-equals-1.0.4"
+ sources."buffer-fill-0.1.1"
+ sources."buffer-from-1.0.0"
sources."buffer-indexof-1.1.1"
sources."builtin-modules-1.1.1"
sources."camelcase-2.1.1"
@@ -38188,7 +38689,7 @@ in
sources."code-point-at-1.1.0"
sources."compact2string-1.4.0"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.1"
+ sources."concat-stream-1.6.2"
sources."consume-http-header-1.0.0"
sources."consume-until-1.0.0"
sources."core-util-is-1.0.2"
@@ -38299,8 +38800,8 @@ in
sources."path-exists-2.1.0"
sources."path-is-absolute-1.0.1"
sources."path-type-1.1.0"
- sources."peer-wire-protocol-0.7.0"
- (sources."peer-wire-swarm-0.12.1" // {
+ sources."peer-wire-protocol-0.7.1"
+ (sources."peer-wire-swarm-0.12.2" // {
dependencies = [
sources."bncode-0.2.3"
];
@@ -38315,7 +38816,7 @@ in
sources."random-iterate-1.0.1"
sources."randombytes-2.0.6"
sources."range-parser-1.2.0"
- sources."rc-1.2.5"
+ sources."rc-1.2.6"
sources."re-emitter-1.1.3"
sources."read-pkg-1.1.0"
sources."read-pkg-up-1.0.1"
@@ -38326,8 +38827,8 @@ in
sources."reverse-http-1.3.0"
sources."rimraf-2.6.2"
sources."run-async-2.3.0"
- sources."run-parallel-1.1.7"
- sources."run-series-1.1.4"
+ sources."run-parallel-1.1.8"
+ sources."run-series-1.1.6"
sources."rusha-0.8.13"
sources."rx-4.1.0"
sources."safe-buffer-5.1.1"
@@ -38373,9 +38874,10 @@ in
];
})
sources."torrent-piece-1.1.1"
- (sources."torrent-stream-1.0.3" // {
+ (sources."torrent-stream-1.0.4" // {
dependencies = [
sources."bencode-0.7.0"
+ sources."buffer-alloc-unsafe-0.1.1"
sources."end-of-stream-0.1.5"
sources."isarray-0.0.1"
sources."magnet-uri-4.2.3"
@@ -38448,9 +38950,12 @@ in
sources."body-parser-1.13.3"
sources."boom-0.3.8"
sources."brace-expansion-1.1.11"
+ sources."buffer-alloc-1.1.0"
sources."buffer-alloc-unsafe-1.0.0"
sources."buffer-equal-0.0.1"
sources."buffer-equals-1.0.4"
+ sources."buffer-fill-0.1.1"
+ sources."buffer-from-1.0.0"
sources."bytes-2.1.0"
sources."callsite-1.0.0"
sources."combined-stream-0.0.7"
@@ -38606,8 +39111,8 @@ in
sources."parseurl-1.3.2"
sources."path-is-absolute-1.0.1"
sources."pause-0.1.0"
- sources."peer-wire-protocol-0.7.0"
- (sources."peer-wire-swarm-0.12.1" // {
+ sources."peer-wire-protocol-0.7.1"
+ (sources."peer-wire-swarm-0.12.2" // {
dependencies = [
sources."bncode-0.2.3"
];
@@ -38644,8 +39149,8 @@ in
})
sources."rimraf-2.6.2"
sources."rndm-1.2.0"
- sources."run-parallel-1.1.7"
- sources."run-series-1.1.4"
+ sources."run-parallel-1.1.8"
+ sources."run-series-1.1.6"
sources."rusha-0.8.13"
sources."safe-buffer-5.1.1"
(sources."send-0.13.0" // {
@@ -38690,7 +39195,7 @@ in
];
})
sources."speedometer-0.1.4"
- sources."statuses-1.4.0"
+ sources."statuses-1.5.0"
sources."stream-counter-0.2.0"
sources."string2compact-1.2.2"
sources."string_decoder-0.10.31"
@@ -38699,9 +39204,10 @@ in
sources."to-array-0.1.4"
sources."torrent-discovery-5.4.0"
sources."torrent-piece-1.1.1"
- (sources."torrent-stream-1.0.3" // {
+ (sources."torrent-stream-1.0.4" // {
dependencies = [
sources."bencode-0.8.0"
+ sources."buffer-alloc-unsafe-0.1.1"
sources."debug-2.6.9"
sources."end-of-stream-0.1.5"
sources."isarray-1.0.0"
@@ -38767,7 +39273,7 @@ in
sources."caseless-0.11.0"
sources."chalk-1.1.3"
sources."combined-stream-1.0.6"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."concat-map-0.0.1"
sources."concat-stream-1.5.0"
sources."core-util-is-1.0.2"
@@ -38839,7 +39345,7 @@ in
sources."request-progress-2.0.1"
sources."rimraf-2.6.2"
sources."sntp-1.0.9"
- (sources."sshpk-1.13.1" // {
+ (sources."sshpk-1.14.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -38927,7 +39433,7 @@ in
sources."astw-2.2.0"
sources."async-1.5.2"
sources."async-each-1.0.1"
- sources."atob-2.0.3"
+ sources."atob-2.1.0"
sources."balanced-match-1.0.0"
(sources."base-0.11.2" // {
dependencies = [
@@ -38949,7 +39455,7 @@ in
];
})
sources."brorand-1.1.0"
- sources."browser-pack-6.0.4"
+ sources."browser-pack-6.1.0"
(sources."browser-resolve-1.11.2" // {
dependencies = [
sources."resolve-1.1.7"
@@ -38958,14 +39464,13 @@ in
(sources."browserify-13.3.0" // {
dependencies = [
sources."acorn-5.5.3"
- sources."combine-source-map-0.7.2"
(sources."concat-stream-1.5.2" // {
dependencies = [
sources."readable-stream-2.0.6"
];
})
sources."hash-base-2.0.2"
- sources."isarray-0.0.1"
+ sources."isarray-2.0.4"
sources."process-nextick-args-2.0.0"
];
})
@@ -38983,11 +39488,12 @@ in
sources."browserify-sign-4.0.4"
sources."browserify-zlib-0.1.4"
sources."buffer-4.9.1"
+ sources."buffer-from-1.0.0"
sources."buffer-xor-1.0.3"
sources."builtin-status-codes-3.0.0"
sources."cache-base-1.0.1"
sources."cached-path-relative-1.0.1"
- (sources."chokidar-2.0.2" // {
+ (sources."chokidar-2.0.3" // {
dependencies = [
sources."is-accessor-descriptor-1.0.0"
sources."is-data-descriptor-1.0.0"
@@ -39006,7 +39512,7 @@ in
sources."combine-source-map-0.8.0"
sources."component-emitter-1.2.1"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.1"
+ sources."concat-stream-1.6.2"
sources."console-browserify-1.1.0"
sources."constants-browserify-1.0.0"
sources."convert-source-map-1.1.3"
@@ -39065,12 +39571,16 @@ in
sources."hmac-drbg-1.0.1"
sources."htmlescape-1.1.1"
sources."https-browserify-0.0.1"
- sources."ieee754-1.1.8"
+ sources."ieee754-1.1.11"
sources."indexof-0.0.1"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."inline-source-map-0.6.2"
- sources."insert-module-globals-7.0.2"
+ (sources."insert-module-globals-7.0.5" // {
+ dependencies = [
+ sources."concat-stream-1.6.2"
+ ];
+ })
sources."is-accessor-descriptor-1.0.0"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
@@ -39090,13 +39600,13 @@ in
sources."jsonify-0.0.0"
sources."jsonparse-1.3.1"
sources."kind-of-6.0.2"
- sources."labeled-stream-splicer-2.0.0"
+ sources."labeled-stream-splicer-2.0.1"
sources."lexical-scope-1.2.0"
sources."lodash.memoize-3.0.4"
sources."map-cache-0.2.2"
sources."map-visit-1.0.0"
sources."md5.js-1.3.4"
- sources."micromatch-3.1.9"
+ sources."micromatch-3.1.10"
sources."miller-rabin-4.0.1"
sources."mime-1.6.0"
sources."minimalistic-assert-1.0.0"
@@ -39107,7 +39617,7 @@ in
sources."module-deps-4.1.1"
sources."ms-2.0.0"
sources."mute-stream-0.0.7"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
sources."nanomatch-1.2.9"
sources."neo-async-2.5.0"
(sources."node-static-0.7.10" // {
@@ -39156,7 +39666,7 @@ in
sources."remove-trailing-separator-1.1.0"
sources."repeat-element-1.1.2"
sources."repeat-string-1.6.1"
- sources."resolve-1.5.0"
+ sources."resolve-1.6.0"
sources."resolve-url-0.2.1"
sources."ret-0.1.15"
sources."rimraf-2.2.8"
@@ -39165,7 +39675,7 @@ in
sources."safe-regex-1.1.0"
sources."set-immediate-shim-1.0.1"
sources."set-value-2.0.0"
- sources."sha.js-2.4.10"
+ sources."sha.js-2.4.11"
sources."shasum-1.0.2"
sources."shell-quote-1.6.1"
(sources."snapdragon-0.8.2" // {
@@ -39197,7 +39707,7 @@ in
sources."static-extend-0.1.2"
sources."stream-browserify-2.0.1"
sources."stream-combiner2-1.1.1"
- sources."stream-http-2.8.0"
+ sources."stream-http-2.8.1"
sources."stream-splicer-2.0.0"
sources."string-stream-0.0.7"
sources."string_decoder-0.10.31"
@@ -39214,7 +39724,7 @@ in
sources."tree-kill-1.2.0"
sources."tty-browserify-0.0.1"
sources."typedarray-0.0.6"
- sources."umd-3.0.2"
+ sources."umd-3.0.3"
(sources."union-value-1.0.0" // {
dependencies = [
sources."set-value-0.4.3"
@@ -39306,7 +39816,6 @@ in
})
sources."ajv-4.11.8"
sources."align-text-0.1.4"
- sources."amdefine-1.0.1"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
sources."are-we-there-yet-1.1.4"
@@ -39323,8 +39832,12 @@ in
sources."basic-auth-2.0.0"
sources."bcrypt-pbkdf-1.0.1"
sources."bindings-1.2.1"
- sources."bl-1.2.1"
- sources."body-parser-1.18.2"
+ sources."bl-1.2.2"
+ (sources."body-parser-1.18.2" // {
+ dependencies = [
+ sources."setprototypeof-1.0.3"
+ ];
+ })
sources."boom-2.10.1"
sources."bufferutil-2.0.1"
sources."bytes-3.0.0"
@@ -39333,12 +39846,12 @@ in
sources."center-align-0.1.3"
sources."character-parser-2.2.0"
sources."chownr-1.0.1"
- sources."clean-css-3.4.28"
+ sources."clean-css-4.1.11"
sources."cliui-2.1.0"
sources."co-4.6.0"
sources."code-point-at-1.1.0"
sources."combined-stream-1.0.6"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."console-control-strings-1.1.0"
sources."constantinople-3.1.2"
sources."content-disposition-0.5.2"
@@ -39346,7 +39859,7 @@ in
sources."cookie-0.3.1"
sources."cookie-parser-1.4.3"
sources."cookie-signature-1.0.6"
- sources."core-js-2.5.3"
+ sources."core-js-2.5.4"
sources."core-util-is-1.0.2"
sources."cryptiles-2.0.5"
sources."dashdash-1.14.1"
@@ -39370,7 +39883,7 @@ in
sources."expand-template-1.1.0"
(sources."express-4.16.3" // {
dependencies = [
- sources."setprototypeof-1.1.0"
+ sources."statuses-1.4.0"
];
})
sources."extend-3.0.1"
@@ -39385,18 +39898,13 @@ in
sources."getpass-0.1.7"
sources."github-from-package-0.0.0"
sources."graceful-fs-4.1.11"
- sources."graceful-readlink-1.0.1"
sources."har-schema-1.0.5"
sources."har-validator-4.2.1"
sources."has-1.0.1"
sources."has-unicode-2.0.1"
sources."hawk-3.1.3"
sources."hoek-2.16.3"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- ];
- })
+ sources."http-errors-1.6.3"
sources."http-signature-1.1.1"
sources."httpolyglot-0.1.2"
sources."iconv-lite-0.4.19"
@@ -39476,21 +39984,15 @@ in
sources."promise-7.3.1"
sources."proxy-addr-2.0.3"
sources."prr-1.0.1"
- (sources."pug-2.0.1" // {
+ (sources."pug-2.0.3" // {
dependencies = [
sources."acorn-4.0.13"
- sources."commander-2.8.1"
- sources."source-map-0.4.4"
];
})
sources."pug-attrs-2.0.3"
sources."pug-code-gen-2.0.1"
sources."pug-error-1.3.2"
- (sources."pug-filters-3.0.1" // {
- dependencies = [
- sources."source-map-0.5.7"
- ];
- })
+ sources."pug-filters-3.1.0"
sources."pug-lexer-4.0.0"
sources."pug-linker-3.0.5"
sources."pug-load-2.0.11"
@@ -39503,13 +40005,18 @@ in
sources."qs-6.5.1"
sources."qtdatastream-0.7.1"
sources."range-parser-1.2.0"
- sources."raw-body-2.3.2"
- sources."rc-1.2.5"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ ];
+ })
+ sources."rc-1.2.6"
sources."readable-stream-2.3.5"
sources."regenerator-runtime-0.11.1"
sources."repeat-string-1.6.1"
sources."request-2.81.0"
- sources."resolve-1.5.0"
+ sources."resolve-1.6.0"
sources."right-align-0.1.3"
sources."safe-buffer-5.1.1"
sources."semver-5.5.0"
@@ -39523,17 +40030,17 @@ in
})
sources."serve-static-1.13.2"
sources."set-blocking-2.0.0"
- sources."setprototypeof-1.0.3"
+ sources."setprototypeof-1.1.0"
sources."signal-exit-3.0.2"
sources."simple-get-1.4.3"
sources."sntp-1.0.9"
sources."source-map-0.5.7"
- (sources."sshpk-1.13.1" // {
+ (sources."sshpk-1.14.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
})
- sources."statuses-1.4.0"
+ sources."statuses-1.5.0"
sources."string-width-1.0.2"
sources."string_decoder-1.0.3"
sources."stringstream-0.0.5"
@@ -39591,7 +40098,7 @@ in
sources."balanced-match-1.0.0"
sources."base62-0.1.1"
sources."brace-expansion-1.1.11"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."commoner-0.10.8"
sources."concat-map-0.0.1"
sources."defined-1.0.0"
@@ -39811,7 +40318,7 @@ in
sources."sax-1.2.4"
sources."send-0.1.4"
sources."sntp-2.1.0"
- sources."sshpk-1.13.1"
+ sources."sshpk-1.14.1"
sources."stream-counter-0.2.0"
sources."string-1.6.1"
sources."string_decoder-0.10.31"
@@ -39901,7 +40408,7 @@ in
sources."color-name-1.1.3"
sources."compressible-2.0.13"
sources."compression-1.7.2"
- sources."configstore-3.1.1"
+ sources."configstore-3.1.2"
sources."content-type-1.0.4"
sources."create-error-class-3.0.2"
sources."cross-spawn-5.1.0"
@@ -39964,7 +40471,7 @@ in
sources."lazy-cache-1.0.4"
sources."lodash-4.17.5"
sources."longest-1.0.1"
- sources."lowercase-keys-1.0.0"
+ sources."lowercase-keys-1.0.1"
sources."lru-cache-4.1.2"
sources."make-dir-1.2.0"
sources."micro-9.1.0"
@@ -39994,7 +40501,7 @@ in
sources."pseudomap-1.0.2"
sources."range-parser-1.2.0"
sources."raw-body-2.3.2"
- sources."rc-1.2.5"
+ sources."rc-1.2.6"
sources."registry-auth-token-3.3.2"
sources."registry-url-3.1.0"
sources."repeat-string-1.6.1"
@@ -40006,6 +40513,7 @@ in
dependencies = [
sources."depd-1.1.2"
sources."ms-2.0.0"
+ sources."statuses-1.4.0"
];
})
sources."setprototypeof-1.0.3"
@@ -40013,7 +40521,7 @@ in
sources."shebang-regex-1.0.0"
sources."signal-exit-3.0.2"
sources."source-map-0.4.4"
- sources."statuses-1.4.0"
+ sources."statuses-1.5.0"
sources."string-similarity-1.2.0"
sources."string-width-2.1.1"
sources."strip-ansi-4.0.0"
@@ -40097,7 +40605,7 @@ in
})
sources."co-4.6.0"
sources."combined-stream-1.0.6"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."component-bind-1.0.0"
sources."component-emitter-1.1.2"
sources."component-inherit-0.0.3"
@@ -40160,11 +40668,7 @@ in
sources."entities-1.0.0"
];
})
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- ];
- })
+ sources."http-errors-1.6.3"
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.19"
sources."indexof-0.0.1"
@@ -40211,7 +40715,12 @@ in
sources."punycode-1.4.1"
sources."qs-6.5.1"
sources."range-parser-1.2.0"
- sources."raw-body-2.3.2"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ ];
+ })
sources."read-1.0.7"
sources."readable-stream-1.1.14"
sources."request-2.85.0"
@@ -40241,7 +40750,7 @@ in
sources."socket.io-client-1.0.6"
sources."socket.io-parser-2.2.0"
sources."split-0.3.3"
- sources."sshpk-1.13.1"
+ sources."sshpk-1.14.1"
sources."statuses-1.4.0"
sources."stream-combiner-0.0.4"
sources."string_decoder-0.10.31"
@@ -40301,7 +40810,12 @@ in
sources."bytes-3.0.0"
sources."iconv-lite-0.4.19"
sources."qs-6.5.1"
- sources."raw-body-2.3.2"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ ];
+ })
];
})
sources."boom-4.3.1"
@@ -40318,7 +40832,7 @@ in
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
sources."combined-stream-1.0.6"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."compressible-2.0.13"
(sources."compression-1.7.2" // {
dependencies = [
@@ -40387,9 +40901,10 @@ in
sources."highlight.js-8.9.1"
sources."hoek-4.2.1"
sources."htmlparser2-3.9.2"
- (sources."http-errors-1.6.2" // {
+ (sources."http-errors-1.6.3" // {
dependencies = [
- sources."depd-1.1.1"
+ sources."setprototypeof-1.1.0"
+ sources."statuses-1.5.0"
];
})
sources."http-signature-1.2.0"
@@ -40428,10 +40943,10 @@ in
sources."minimatch-1.0.0"
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
- sources."moment-2.21.0"
+ sources."moment-2.22.0"
sources."ms-2.0.0"
sources."mv-2.1.1"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
sources."ncp-2.0.0"
sources."negotiator-0.6.1"
sources."number-is-nan-1.0.1"
@@ -40444,7 +40959,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-to-regexp-0.1.7"
sources."performance-now-2.1.0"
- sources."postcss-6.0.19"
+ sources."postcss-6.0.21"
sources."process-nextick-args-2.0.0"
sources."proxy-addr-1.1.5"
sources."punycode-1.4.1"
@@ -40488,7 +41003,7 @@ in
sources."source-map-0.1.43"
sources."sprintf-js-1.0.3"
sources."srcset-1.0.0"
- sources."sshpk-1.13.1"
+ sources."sshpk-1.14.1"
sources."statuses-1.3.1"
sources."string_decoder-1.0.3"
sources."stringstream-0.0.5"
@@ -40592,7 +41107,7 @@ in
sources."ecc-jsbn-0.1.1"
sources."escape-regexp-component-1.0.2"
sources."extsprintf-1.2.0"
- sources."formidable-1.2.0"
+ sources."formidable-1.2.1"
sources."glob-6.0.4"
sources."http-signature-0.11.0"
sources."inflight-1.0.6"
@@ -40609,7 +41124,7 @@ in
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
sources."mv-2.1.1"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
sources."ncp-2.0.0"
sources."negotiator-0.5.3"
sources."node-uuid-1.4.8"
@@ -40701,10 +41216,10 @@ in
"socket.io" = nodeEnv.buildNodePackage {
name = "socket.io";
packageName = "socket.io";
- version = "2.0.4";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-2.0.4.tgz";
- sha1 = "c1a4590ceff87ecf13c72652f046f716b29e6014";
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-2.1.0.tgz";
+ sha512 = "2wkm6yqxvn8wk51rbakza3zxg3rknzfgmwqrbzvnlacf1yylplsr61i67m01sg8x7589ymj6x3z266ngvqd6qyyakdx4dlnsl4bfbr9";
};
dependencies = [
sources."accepts-1.3.5"
@@ -40721,17 +41236,9 @@ in
sources."component-emitter-1.2.1"
sources."component-inherit-0.0.3"
sources."cookie-0.3.1"
- sources."debug-2.6.9"
- (sources."engine.io-3.1.5" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- (sources."engine.io-client-3.1.6" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
+ sources."debug-3.1.0"
+ sources."engine.io-3.2.0"
+ sources."engine.io-client-3.2.1"
sources."engine.io-parser-2.1.2"
sources."has-binary2-1.0.2"
sources."has-cors-1.1.0"
@@ -40746,15 +41253,10 @@ in
sources."parseuri-0.0.5"
sources."safe-buffer-5.1.1"
sources."socket.io-adapter-1.1.1"
- sources."socket.io-client-2.0.4"
- (sources."socket.io-parser-3.1.3" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
+ sources."socket.io-client-2.1.0"
+ sources."socket.io-parser-3.2.0"
sources."to-array-0.1.4"
sources."ultron-1.1.1"
- sources."uws-9.14.0"
sources."ws-3.3.3"
sources."xmlhttprequest-ssl-1.5.5"
sources."yeast-0.1.2"
@@ -40800,7 +41302,7 @@ in
sources."hashring-3.2.0"
sources."keypress-0.1.0"
sources."modern-syslog-1.1.2"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
sources."sequence-2.2.1"
sources."simple-lru-cache-0.0.2"
sources."winser-0.1.6"
@@ -40921,7 +41423,7 @@ in
sources."domelementtype-1.3.0"
sources."domutils-1.5.1"
sources."entities-1.1.1"
- sources."es-abstract-1.10.0"
+ sources."es-abstract-1.11.0"
sources."es-to-primitive-1.1.1"
sources."esprima-4.0.0"
sources."foreach-2.0.5"
@@ -41033,7 +41535,7 @@ in
sources."co-4.6.0"
sources."colors-1.1.2"
sources."combined-stream-1.0.6"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."core-util-is-1.0.2"
sources."cryptiles-2.0.5"
sources."cycle-1.0.3"
@@ -41128,7 +41630,7 @@ in
sources."source-map-0.1.32"
sources."source-map-support-0.3.2"
sources."sprintf-0.1.5"
- (sources."sshpk-1.13.1" // {
+ (sources."sshpk-1.14.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -41169,10 +41671,10 @@ in
typescript = nodeEnv.buildNodePackage {
name = "typescript";
packageName = "typescript";
- version = "2.7.2";
+ version = "2.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-2.7.2.tgz";
- sha512 = "2gjv6xyp9rqfdfqadayc4b36b79sjdiwsxa38z43v01cdn3xbc06ax90mjv36hxj9j96nfbwr6w1wn7n0zq8f3y3fw4jfy0j1hw5557";
+ url = "https://registry.npmjs.org/typescript/-/typescript-2.8.1.tgz";
+ sha512 = "1v0ac83sjf21wg11fpllicxz8irx9yg341zmng7vz15524gbfphc9ch70n4x9r70gm0r4ak79xyaxw9zh6b2cwcs7mg447qvzlxz3q2";
};
buildInputs = globalBuildInputs;
meta = {
@@ -41206,9 +41708,11 @@ in
sources."bluebird-3.5.1"
sources."boxen-1.3.0"
sources."brace-expansion-1.1.11"
+ sources."buffer-from-1.0.0"
sources."camelcase-4.1.0"
sources."capture-stack-trace-1.0.0"
sources."chalk-1.1.3"
+ sources."ci-info-1.1.3"
sources."cli-boxes-1.0.0"
sources."cli-cursor-1.0.2"
(sources."cli-truncate-1.1.0" // {
@@ -41217,14 +41721,14 @@ in
sources."strip-ansi-4.0.0"
];
})
- sources."clone-1.0.3"
+ sources."clone-1.0.4"
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
sources."columnify-1.5.4"
sources."combined-stream-1.0.6"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.1"
- sources."configstore-3.1.1"
+ sources."concat-stream-1.6.2"
+ sources."configstore-3.1.2"
sources."core-util-is-1.0.2"
sources."create-error-class-3.0.2"
sources."cross-spawn-5.1.0"
@@ -41261,9 +41765,10 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."ini-1.3.5"
- sources."invariant-2.2.3"
+ sources."invariant-2.2.4"
sources."is-absolute-0.2.6"
sources."is-arrayish-0.2.1"
+ sources."is-ci-1.1.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-installed-globally-0.1.0"
sources."is-npm-1.0.0"
@@ -41286,7 +41791,7 @@ in
sources."lockfile-1.0.3"
sources."log-update-1.0.2"
sources."loose-envify-1.3.1"
- sources."lowercase-keys-1.0.0"
+ sources."lowercase-keys-1.0.1"
sources."lru-cache-4.1.2"
sources."make-dir-1.2.0"
sources."make-error-1.3.4"
@@ -41319,7 +41824,7 @@ in
sources."promise-finally-3.0.0"
sources."pseudomap-1.0.2"
sources."punycode-1.4.1"
- (sources."rc-1.2.5" // {
+ (sources."rc-1.2.6" // {
dependencies = [
sources."minimist-1.2.0"
];
@@ -41352,7 +41857,7 @@ in
sources."touch-1.0.0"
sources."tough-cookie-2.3.4"
sources."typedarray-0.0.6"
- sources."typescript-2.7.2"
+ sources."typescript-2.8.1"
(sources."typings-core-2.3.3" // {
dependencies = [
sources."minimist-0.0.8"
@@ -41361,7 +41866,7 @@ in
sources."unc-path-regex-0.1.2"
sources."unique-string-1.0.0"
sources."unzip-response-2.0.1"
- (sources."update-notifier-2.3.0" // {
+ (sources."update-notifier-2.4.0" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.3.2"
@@ -41394,19 +41899,19 @@ in
uglify-js = nodeEnv.buildNodePackage {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.3.14";
+ version = "3.3.18";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.14.tgz";
- sha512 = "0b7d9nvyrhc5ij0xaxvgha7h97d5h36zhnwmbbbj5abk64bvn38sf4d5jwy64n8algm2q36a08n0z4k4khhnnq4h4ysvrin0lyib3rr";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.18.tgz";
+ sha512 = "3vg4gpamx95s8md0lsnx3njijc8x5z8nifn2c204w261w09h7d65zjkm9mxy4v3scrab7nhd6qypdq5jgf8nkbvzvqp8akpzwbch62n";
};
dependencies = [
- sources."commander-2.14.1"
+ sources."commander-2.15.1"
sources."source-map-0.6.1"
];
buildInputs = globalBuildInputs;
meta = {
description = "JavaScript parser, mangler/compressor and beautifier toolkit";
- homepage = http://lisperator.net/uglifyjs;
+ homepage = "https://github.com/mishoo/UglifyJS2#readme";
license = "BSD-2-Clause";
};
production = true;
@@ -41415,10 +41920,10 @@ in
ungit = nodeEnv.buildNodePackage {
name = "ungit";
packageName = "ungit";
- version = "1.4.12";
+ version = "1.4.17";
src = fetchurl {
- url = "https://registry.npmjs.org/ungit/-/ungit-1.4.12.tgz";
- sha512 = "2g1lac2bgp7zgrl4jvmapyqy51rvzmphx3nlvy1hmy6ld2k5dycmhbv6qqq740ypdi57wd7vch5nlrf2w833mbk54rglhq80ly7vwk6";
+ url = "https://registry.npmjs.org/ungit/-/ungit-1.4.17.tgz";
+ sha512 = "1qy7j5zv8kvk5c9y4pjh0x8m243yhc1prv9s3kqbbpsxkgapdk8ap6dwa3nhh93cj5v1mb29jnfqqy20lypwvy8j8z3436vdckhc480";
};
dependencies = [
sources."abbrev-1.1.1"
@@ -41446,24 +41951,30 @@ in
sources."blob-0.0.4"
sources."bluebird-3.5.1"
sources."blueimp-md5-2.10.0"
- sources."body-parser-1.18.2"
+ (sources."body-parser-1.18.2" // {
+ dependencies = [
+ sources."setprototypeof-1.0.3"
+ ];
+ })
sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
+ sources."buffer-from-1.0.0"
sources."builtin-modules-1.1.1"
sources."builtins-1.0.3"
sources."bytes-3.0.0"
sources."callsite-1.0.0"
sources."camelcase-4.1.0"
sources."caseless-0.12.0"
+ sources."charenc-0.0.2"
(sources."cliui-4.0.0" // {
dependencies = [
sources."ansi-regex-2.1.1"
];
})
- sources."clone-2.1.1"
+ sources."clone-2.1.2"
sources."co-4.6.0"
sources."code-point-at-1.1.0"
- sources."color-2.0.1"
+ sources."color-3.0.0"
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
sources."color-string-1.5.2"
@@ -41473,7 +41984,7 @@ in
sources."component-emitter-1.1.2"
sources."component-inherit-0.0.3"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.1"
+ sources."concat-stream-1.6.2"
sources."console-control-strings-1.1.0"
sources."content-disposition-0.5.2"
sources."content-type-1.0.4"
@@ -41485,6 +41996,7 @@ in
sources."crc-3.4.4"
sources."cross-spawn-5.1.0"
sources."crossroads-0.12.2"
+ sources."crypt-0.0.2"
(sources."cryptiles-3.1.2" // {
dependencies = [
sources."boom-5.2.0"
@@ -41527,7 +42039,7 @@ in
sources."execa-0.7.0"
(sources."express-4.16.3" // {
dependencies = [
- sources."setprototypeof-1.1.0"
+ sources."statuses-1.4.0"
];
})
sources."express-session-1.15.6"
@@ -41548,7 +42060,7 @@ in
sources."gauge-2.7.4"
sources."get-caller-file-1.0.2"
sources."get-stream-3.0.0"
- sources."getmac-1.2.1"
+ sources."getmac-1.4.1"
sources."getpass-0.1.7"
sources."glob-7.1.2"
sources."graceful-fs-4.1.11"
@@ -41562,11 +42074,7 @@ in
sources."hoek-4.2.1"
sources."hogan.js-3.0.2"
sources."hosted-git-info-2.6.0"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- ];
- })
+ sources."http-errors-1.6.3"
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.19"
sources."ignore-3.3.7"
@@ -41577,6 +42085,7 @@ in
sources."invert-kv-1.0.0"
sources."ipaddr.js-1.6.0"
sources."is-arrayish-0.3.1"
+ sources."is-buffer-1.1.6"
sources."is-builtin-module-1.0.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-stream-1.1.0"
@@ -41604,7 +42113,7 @@ in
sources."locate-path-2.0.0"
sources."lodash-4.17.5"
sources."lru-cache-4.1.2"
- sources."lsmod-1.0.0"
+ sources."md5-2.2.1"
sources."media-typer-0.3.0"
sources."mem-1.1.0"
(sources."memorystore-1.6.0" // {
@@ -41621,13 +42130,13 @@ in
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
- sources."moment-2.20.1"
+ sources."moment-2.21.0"
sources."ms-2.0.0"
sources."negotiator-0.6.1"
sources."node-cache-4.1.1"
sources."nopt-1.0.10"
sources."normalize-package-data-2.4.0"
- sources."npm-5.6.0"
+ sources."npm-5.7.1"
sources."npm-package-arg-6.0.0"
(sources."npm-registry-client-8.5.1" // {
dependencies = [
@@ -41679,13 +42188,18 @@ in
sources."qs-6.5.1"
sources."random-bytes-1.0.0"
sources."range-parser-1.2.0"
- (sources."raven-2.3.0" // {
+ (sources."raven-2.4.2" // {
dependencies = [
sources."uuid-3.0.0"
];
})
- sources."raw-body-2.3.2"
- (sources."rc-1.2.5" // {
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ ];
+ })
+ (sources."rc-1.2.6" // {
dependencies = [
sources."minimist-1.2.0"
];
@@ -41698,11 +42212,11 @@ in
sources."retry-0.10.1"
sources."rimraf-2.6.2"
sources."safe-buffer-5.1.1"
- sources."semver-5.4.1"
+ sources."semver-5.5.0"
sources."send-0.16.2"
sources."serve-static-1.13.2"
sources."set-blocking-2.0.0"
- sources."setprototypeof-1.0.3"
+ sources."setprototypeof-1.1.0"
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."signal-exit-3.0.2"
@@ -41728,10 +42242,10 @@ in
sources."spdx-exceptions-2.1.0"
sources."spdx-expression-parse-3.0.0"
sources."spdx-license-ids-3.0.0"
- sources."sshpk-1.13.1"
- sources."ssri-5.2.4"
+ sources."sshpk-1.14.1"
+ sources."ssri-5.3.0"
sources."stack-trace-0.0.9"
- sources."statuses-1.4.0"
+ sources."statuses-1.5.0"
sources."string-width-1.0.2"
sources."string_decoder-0.10.31"
sources."stringstream-0.0.5"
@@ -41747,7 +42261,7 @@ in
sources."delayed-stream-1.0.0"
sources."extend-3.0.1"
sources."form-data-2.3.2"
- sources."formidable-1.2.0"
+ sources."formidable-1.2.1"
sources."isarray-1.0.0"
sources."readable-stream-2.3.5"
sources."string_decoder-1.0.3"
@@ -41778,7 +42292,7 @@ in
sources."validate-npm-package-name-3.0.0"
sources."vary-1.1.2"
sources."verror-1.10.0"
- sources."whatwg-fetch-2.0.3"
+ sources."whatwg-fetch-2.0.4"
sources."which-1.3.0"
sources."which-module-2.0.0"
sources."wide-align-1.1.2"
@@ -41798,7 +42312,7 @@ in
sources."xmlhttprequest-ssl-1.5.5"
sources."y18n-3.2.1"
sources."yallist-2.1.2"
- (sources."yargs-10.1.2" // {
+ (sources."yargs-11.1.0" // {
dependencies = [
sources."ansi-regex-3.0.0"
sources."is-fullwidth-code-point-2.0.0"
@@ -41806,7 +42320,7 @@ in
sources."strip-ansi-4.0.0"
];
})
- sources."yargs-parser-8.1.0"
+ sources."yargs-parser-9.0.2"
sources."yeast-0.1.2"
];
buildInputs = globalBuildInputs;
@@ -41818,6 +42332,307 @@ in
production = true;
bypassCache = false;
};
+ vue-cli = nodeEnv.buildNodePackage {
+ name = "vue-cli";
+ packageName = "vue-cli";
+ version = "2.9.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vue-cli/-/vue-cli-2.9.3.tgz";
+ sha512 = "1wljsr8srayqg7crbbczi00v31q3dxm3vz4fjcdqasdgsm1ajc9gham6sinsxlraniwg4dn5b1kmpw0nln63cy3v02vib07shyvq2ki";
+ };
+ dependencies = [
+ sources."absolute-0.0.1"
+ sources."ajv-5.5.2"
+ sources."align-text-0.1.4"
+ sources."amdefine-1.0.1"
+ sources."ansi-escapes-3.1.0"
+ sources."ansi-red-0.1.1"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.1"
+ sources."ansi-wrap-0.1.0"
+ sources."argparse-1.0.10"
+ sources."array-differ-1.0.0"
+ sources."array-union-1.0.2"
+ sources."array-uniq-1.0.3"
+ sources."arrify-1.0.1"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."async-2.6.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-0.0.8"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."bl-1.2.2"
+ sources."bluebird-3.5.1"
+ sources."boom-4.3.1"
+ sources."brace-expansion-1.1.11"
+ sources."buffer-3.6.0"
+ sources."buffer-crc32-0.2.13"
+ sources."builtins-1.0.3"
+ sources."camelcase-1.2.1"
+ sources."capture-stack-trace-1.0.0"
+ sources."caseless-0.12.0"
+ (sources."caw-2.0.1" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
+ sources."center-align-0.1.3"
+ sources."chalk-2.3.2"
+ sources."chardet-0.4.2"
+ sources."cli-cursor-2.1.0"
+ sources."cli-spinners-1.3.0"
+ sources."cli-width-2.2.0"
+ sources."cliui-2.1.0"
+ sources."clone-1.0.4"
+ sources."co-3.1.0"
+ sources."co-from-stream-0.0.0"
+ sources."co-fs-extra-1.2.1"
+ sources."co-read-0.0.1"
+ sources."coffee-script-1.12.7"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.15.1"
+ sources."concat-map-0.0.1"
+ sources."config-chain-1.1.11"
+ sources."consolidate-0.14.5"
+ sources."core-util-is-1.0.2"
+ sources."create-error-class-3.0.2"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."dashdash-1.14.1"
+ sources."decamelize-1.2.0"
+ (sources."decompress-4.2.0" // {
+ dependencies = [
+ sources."file-type-3.9.0"
+ sources."get-stream-2.3.1"
+ ];
+ })
+ sources."decompress-tar-4.1.1"
+ sources."decompress-tarbz2-4.1.1"
+ sources."decompress-targz-4.1.1"
+ sources."decompress-unzip-4.0.1"
+ sources."delayed-stream-1.0.0"
+ (sources."download-5.0.3" // {
+ dependencies = [
+ sources."file-type-5.2.0"
+ ];
+ })
+ (sources."download-git-repo-1.0.2" // {
+ dependencies = [
+ sources."commander-2.8.1"
+ sources."file-type-6.2.0"
+ ];
+ })
+ sources."duplexer3-0.1.4"
+ sources."ecc-jsbn-0.1.1"
+ sources."enable-1.3.2"
+ sources."end-of-stream-1.4.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."esprima-4.0.0"
+ sources."extend-3.0.1"
+ sources."extend-shallow-2.0.1"
+ sources."external-editor-2.2.0"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fd-slicer-1.0.1"
+ sources."figures-2.0.0"
+ sources."file-type-5.2.0"
+ sources."filename-reserved-regex-2.0.0"
+ sources."filenamify-2.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."fs-extra-0.26.7"
+ sources."fs.realpath-1.0.0"
+ sources."get-proxy-2.1.0"
+ sources."get-stream-3.0.0"
+ sources."getpass-0.1.7"
+ sources."git-clone-0.1.0"
+ sources."glob-7.1.2"
+ sources."got-6.7.1"
+ sources."graceful-fs-4.1.11"
+ sources."graceful-readlink-1.0.1"
+ sources."gray-matter-2.1.1"
+ (sources."handlebars-4.0.11" // {
+ dependencies = [
+ sources."async-1.5.2"
+ sources."wordwrap-0.0.2"
+ ];
+ })
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-3.0.0"
+ sources."has-generators-1.0.1"
+ sources."has-symbol-support-x-1.4.2"
+ sources."has-to-string-tag-x-1.4.1"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.1"
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.19"
+ sources."ieee754-1.1.11"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."inquirer-3.3.0"
+ sources."is-3.2.1"
+ sources."is-buffer-1.1.6"
+ sources."is-extendable-0.1.1"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-natural-number-4.0.1"
+ sources."is-object-1.0.1"
+ sources."is-promise-2.1.0"
+ sources."is-redirect-1.0.0"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-stream-1.1.0"
+ sources."is-typedarray-1.0.0"
+ sources."is-utf8-0.2.1"
+ sources."isarray-1.0.0"
+ sources."isstream-0.1.2"
+ sources."isurl-1.0.0"
+ sources."js-yaml-3.11.0"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonfile-2.4.0"
+ sources."jsprim-1.4.1"
+ sources."kind-of-3.2.2"
+ sources."klaw-1.3.1"
+ sources."lazy-cache-1.0.4"
+ sources."lodash-4.17.5"
+ sources."log-symbols-2.2.0"
+ sources."longest-1.0.1"
+ sources."lowercase-keys-1.0.1"
+ (sources."make-dir-1.2.0" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
+ (sources."metalsmith-2.3.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."chalk-1.1.3"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ ];
+ })
+ sources."mime-db-1.33.0"
+ sources."mime-types-2.1.18"
+ sources."mimic-fn-1.2.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."multimatch-2.1.0"
+ sources."mute-stream-0.0.7"
+ sources."npm-conf-1.1.3"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."optimist-0.6.1"
+ sources."ora-1.4.0"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."path-is-absolute-1.0.1"
+ sources."pend-1.2.0"
+ sources."performance-now-2.1.0"
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."prepend-http-1.0.4"
+ sources."process-nextick-args-2.0.0"
+ sources."proto-list-1.2.4"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."read-metadata-1.0.0"
+ sources."readable-stream-2.3.5"
+ sources."recursive-readdir-2.2.2"
+ sources."repeat-string-1.6.1"
+ (sources."request-2.85.0" // {
+ dependencies = [
+ sources."co-4.6.0"
+ ];
+ })
+ sources."restore-cursor-2.0.0"
+ sources."right-align-0.1.3"
+ sources."rimraf-2.6.2"
+ sources."run-async-2.3.0"
+ sources."rx-lite-4.0.8"
+ sources."rx-lite-aggregates-4.0.8"
+ sources."safe-buffer-5.1.1"
+ sources."seek-bzip-1.0.5"
+ sources."semver-5.5.0"
+ sources."signal-exit-3.0.2"
+ sources."sntp-2.1.0"
+ sources."source-map-0.4.4"
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.14.1"
+ sources."stat-mode-0.2.2"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-4.0.0"
+ sources."strip-dirs-2.1.0"
+ sources."strip-outer-1.0.1"
+ sources."supports-color-5.3.0"
+ sources."tar-stream-1.5.5"
+ sources."through-2.3.8"
+ sources."thunkify-2.1.2"
+ sources."thunkify-wrap-1.0.4"
+ sources."tildify-1.2.0"
+ sources."timed-out-4.0.1"
+ sources."tmp-0.0.33"
+ sources."toml-2.3.3"
+ sources."tough-cookie-2.3.4"
+ sources."trim-repeated-1.0.0"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ (sources."uglify-js-2.8.29" // {
+ dependencies = [
+ sources."source-map-0.5.7"
+ ];
+ })
+ sources."uglify-to-browserify-1.0.2"
+ sources."uid-0.0.2"
+ sources."unbzip2-stream-1.2.5"
+ sources."unyield-0.0.1"
+ sources."unzip-response-2.0.1"
+ sources."url-parse-lax-1.0.0"
+ sources."url-to-options-1.0.1"
+ sources."user-home-2.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.2.1"
+ sources."validate-npm-package-name-3.0.0"
+ sources."verror-1.10.0"
+ sources."ware-1.3.0"
+ sources."win-fork-1.1.1"
+ sources."window-size-0.1.0"
+ sources."wordwrap-0.0.3"
+ sources."wrap-fn-0.1.5"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
+ sources."yaml-js-0.0.8"
+ sources."yargs-3.10.0"
+ sources."yauzl-2.9.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A simple CLI for scaffolding Vue.js projects.";
+ homepage = "https://github.com/vuejs/vue-cli#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = false;
+ };
webdrvr = nodeEnv.buildNodePackage {
name = "webdrvr";
packageName = "webdrvr";
@@ -41843,7 +42658,7 @@ in
sources."caseless-0.11.0"
sources."chalk-1.1.3"
sources."combined-stream-1.0.6"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."concat-map-0.0.1"
sources."concat-stream-1.5.0"
(sources."config-chain-1.1.11" // {
@@ -41934,7 +42749,7 @@ in
sources."rimraf-2.6.2"
sources."semver-2.3.2"
sources."sntp-1.0.9"
- (sources."sshpk-1.13.1" // {
+ (sources."sshpk-1.14.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -41969,15 +42784,15 @@ in
webpack = nodeEnv.buildNodePackage {
name = "webpack";
packageName = "webpack";
- version = "4.1.1";
+ version = "4.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-4.1.1.tgz";
- sha512 = "2gs8dnr0n1p7npwjb37f3mh08gfrab0xcfp6cwm4zyxvx5lkx2hvqr81sd8mcyys9062f2pvx7njbr6zzwbr68lr37kcbkjrlgll31z";
+ url = "https://registry.npmjs.org/webpack/-/webpack-4.4.1.tgz";
+ sha512 = "2zmid39lsiz55wvivhnza1i1w8561z3fn30bs3jii5n10q5462p7yqrk5y5bf7j612g2mflygsy1lyvxc0dhxxhb75a7380q5r0kdc8";
};
dependencies = [
sources."acorn-5.5.3"
sources."acorn-dynamic-import-3.0.0"
- sources."ajv-6.2.1"
+ sources."ajv-6.4.0"
sources."ajv-keywords-3.1.0"
sources."anymatch-2.0.0"
sources."aproba-1.2.0"
@@ -41989,7 +42804,7 @@ in
sources."assert-1.4.1"
sources."assign-symbols-1.0.0"
sources."async-each-1.0.1"
- sources."atob-2.0.3"
+ sources."atob-2.1.0"
sources."balanced-match-1.0.0"
(sources."base-0.11.2" // {
dependencies = [
@@ -42022,11 +42837,12 @@ in
sources."browserify-sign-4.0.4"
sources."browserify-zlib-0.2.0"
sources."buffer-4.9.1"
+ sources."buffer-from-1.0.0"
sources."buffer-xor-1.0.3"
sources."builtin-status-codes-3.0.0"
sources."cacache-10.0.4"
sources."cache-base-1.0.1"
- sources."chokidar-2.0.2"
+ sources."chokidar-2.0.3"
sources."chownr-1.0.1"
sources."chrome-trace-event-0.1.2"
sources."cipher-base-1.0.4"
@@ -42040,7 +42856,7 @@ in
sources."commondir-1.0.1"
sources."component-emitter-1.2.1"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.1"
+ sources."concat-stream-1.6.2"
sources."console-browserify-1.1.0"
sources."constants-browserify-1.0.0"
sources."copy-concurrently-1.0.5"
@@ -42092,7 +42908,7 @@ in
})
sources."find-cache-dir-1.0.0"
sources."find-up-2.1.0"
- sources."flush-write-stream-1.0.2"
+ sources."flush-write-stream-1.0.3"
sources."for-in-1.0.2"
sources."fragment-cache-0.2.1"
sources."from2-2.3.0"
@@ -42113,7 +42929,7 @@ in
sources."hash.js-1.1.3"
sources."hmac-drbg-1.0.1"
sources."https-browserify-1.0.0"
- sources."ieee754-1.1.8"
+ sources."ieee754-1.1.11"
sources."iferr-0.1.5"
sources."imurmurhash-0.1.4"
sources."indexof-0.0.1"
@@ -42145,7 +42961,7 @@ in
sources."map-visit-1.0.0"
sources."md5.js-1.3.4"
sources."memory-fs-0.4.1"
- (sources."micromatch-3.1.9" // {
+ (sources."micromatch-3.1.10" // {
dependencies = [
sources."has-values-0.1.4"
(sources."is-accessor-descriptor-0.1.6" // {
@@ -42173,13 +42989,14 @@ in
sources."mkdirp-0.5.1"
sources."move-concurrently-1.0.1"
sources."ms-2.0.0"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
sources."nanomatch-1.2.9"
sources."neo-async-2.5.0"
(sources."node-libs-browser-2.1.0" // {
dependencies = [
sources."hash-base-2.0.2"
sources."inherits-2.0.1"
+ sources."punycode-1.4.1"
];
})
sources."normalize-path-2.1.1"
@@ -42211,7 +43028,7 @@ in
sources."public-encrypt-4.0.0"
sources."pump-2.0.1"
sources."pumpify-1.4.0"
- sources."punycode-1.4.1"
+ sources."punycode-2.1.0"
sources."querystring-0.2.0"
sources."querystring-es3-0.2.1"
sources."randombytes-2.0.6"
@@ -42234,7 +43051,7 @@ in
sources."set-immediate-shim-1.0.1"
sources."set-value-2.0.0"
sources."setimmediate-1.0.5"
- sources."sha.js-2.4.10"
+ sources."sha.js-2.4.11"
(sources."snapdragon-0.8.2" // {
dependencies = [
(sources."define-property-0.2.5" // {
@@ -42281,11 +43098,11 @@ in
sources."extend-shallow-3.0.2"
];
})
- sources."ssri-5.2.4"
+ sources."ssri-5.3.0"
sources."static-extend-0.1.2"
sources."stream-browserify-2.0.1"
sources."stream-each-1.2.2"
- sources."stream-http-2.8.0"
+ sources."stream-http-2.8.1"
sources."stream-shift-1.0.0"
sources."string_decoder-1.0.3"
sources."tapable-1.0.0"
@@ -42298,7 +43115,7 @@ in
sources."tty-browserify-0.0.0"
sources."typedarray-0.0.6"
sources."uglify-es-3.3.10"
- (sources."uglifyjs-webpack-plugin-1.2.3" // {
+ (sources."uglifyjs-webpack-plugin-1.2.4" // {
dependencies = [
sources."source-map-0.6.1"
];
@@ -42320,6 +43137,7 @@ in
];
})
sources."upath-1.0.4"
+ sources."uri-js-3.0.2"
sources."urix-0.1.0"
(sources."url-0.11.0" // {
dependencies = [
@@ -42358,20 +43176,18 @@ in
web-ext = nodeEnv.buildNodePackage {
name = "web-ext";
packageName = "web-ext";
- version = "2.4.0";
+ version = "2.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/web-ext/-/web-ext-2.4.0.tgz";
- sha1 = "4103e737196eb2a9fe83087752357d1dfe618294";
+ url = "https://registry.npmjs.org/web-ext/-/web-ext-2.6.0.tgz";
+ sha1 = "52c074123e6376a4fb673e565c33dd027714e9b0";
};
dependencies = [
- sources."@types/node-9.4.7"
+ sources."@cliqz-oss/firefox-client-0.3.1"
+ sources."@cliqz-oss/node-firefox-connect-1.2.1"
+ sources."@types/node-9.6.1"
sources."JSONSelect-0.2.1"
+ sources."abbrev-1.1.1"
sources."acorn-5.5.3"
- (sources."acorn-dynamic-import-2.0.2" // {
- dependencies = [
- sources."acorn-4.0.13"
- ];
- })
(sources."acorn-jsx-3.0.1" // {
dependencies = [
sources."acorn-3.3.0"
@@ -42380,7 +43196,7 @@ in
sources."adbkit-2.11.0"
sources."adbkit-logcat-1.1.0"
sources."adbkit-monkey-1.0.1"
- (sources."addons-linter-0.35.0" // {
+ (sources."addons-linter-0.41.0" // {
dependencies = [
sources."ajv-keywords-1.5.1"
sources."ansi-escapes-1.4.0"
@@ -42389,80 +43205,110 @@ in
sources."async-2.6.0"
sources."camelcase-1.2.1"
sources."cli-cursor-1.0.2"
- (sources."cliui-3.2.0" // {
- dependencies = [
- sources."string-width-1.0.2"
- ];
- })
+ sources."cliui-3.2.0"
sources."debug-3.1.0"
sources."decamelize-1.2.0"
sources."domelementtype-1.1.3"
+ sources."es6-promise-3.3.1"
sources."figures-1.7.0"
- sources."globals-11.3.0"
- sources."hash-base-2.0.2"
- sources."inherits-2.0.1"
+ sources."find-up-2.1.0"
+ sources."for-in-0.1.8"
+ sources."globals-11.4.0"
+ sources."got-3.3.1"
sources."inquirer-0.12.0"
sources."is-fullwidth-code-point-1.0.0"
+ sources."latest-version-1.0.1"
+ sources."lazy-cache-0.2.7"
sources."mute-stream-0.0.5"
+ sources."object-assign-3.0.0"
sources."onetime-1.1.0"
+ sources."package-json-1.2.0"
sources."parse-json-2.2.0"
+ sources."path-exists-3.0.0"
sources."pluralize-1.2.1"
sources."progress-1.1.8"
- sources."punycode-2.1.0"
+ sources."punycode-1.3.2"
+ sources."repeating-1.1.3"
sources."restore-cursor-1.0.1"
sources."run-async-0.1.0"
sources."rx-lite-3.1.2"
sources."slice-ansi-0.0.4"
sources."source-map-0.6.1"
- sources."source-map-support-0.5.1"
+ sources."source-map-support-0.5.4"
sources."string-width-1.0.2"
sources."strip-ansi-4.0.0"
- sources."supports-color-4.5.0"
+ sources."strip-bom-2.0.0"
+ sources."supports-color-5.3.0"
sources."table-3.8.3"
+ sources."timed-out-2.0.0"
+ sources."traverse-0.6.6"
sources."underscore-1.6.0"
+ sources."update-notifier-0.5.0"
+ sources."which-module-2.0.0"
+ sources."window-size-0.2.0"
sources."wordwrap-0.0.2"
- (sources."yargs-10.0.3" // {
+ (sources."yargs-11.0.0" // {
dependencies = [
sources."camelcase-4.1.0"
+ sources."cliui-4.0.0"
sources."is-fullwidth-code-point-2.0.0"
sources."string-width-2.1.1"
];
})
- sources."yargs-parser-8.1.0"
+ sources."yargs-parser-9.0.2"
];
})
sources."adm-zip-0.4.7"
- sources."ajv-5.5.2"
- sources."ajv-keywords-3.1.0"
+ sources."ajv-6.3.0"
+ sources."ajv-keywords-2.1.1"
sources."ajv-merge-patch-3.0.0"
sources."align-text-0.1.4"
sources."anchor-markdown-header-0.5.7"
sources."ansi-align-2.0.0"
- sources."ansi-escapes-3.0.0"
+ sources."ansi-escapes-3.1.0"
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
+ sources."ansicolors-0.3.2"
sources."any-promise-1.3.0"
- sources."anymatch-1.3.2"
+ (sources."anymatch-2.0.0" // {
+ dependencies = [
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."is-extendable-1.0.1"
+ ];
+ })
sources."archiver-2.1.1"
sources."archiver-utils-1.3.0"
+ sources."archy-1.0.0"
sources."argparse-1.0.10"
- sources."arr-diff-2.0.0"
+ sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
+ sources."arr-union-3.1.0"
sources."array-filter-0.0.1"
sources."array-from-2.1.1"
sources."array-map-0.0.0"
sources."array-reduce-0.0.0"
sources."array-union-1.0.2"
sources."array-uniq-1.0.3"
- sources."array-unique-0.2.1"
+ sources."array-unique-0.3.2"
sources."arrify-1.0.1"
+ sources."asap-2.0.6"
sources."asn1-0.2.3"
- sources."asn1.js-4.10.1"
- sources."assert-1.4.1"
sources."assert-plus-1.0.0"
+ sources."assign-symbols-1.0.0"
sources."async-0.2.10"
sources."async-each-1.0.1"
sources."asynckit-0.4.0"
+ sources."atob-2.1.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.6.0"
sources."babel-code-frame-6.26.0"
@@ -42488,43 +43334,40 @@ in
sources."babylon-6.18.0"
sources."bail-1.0.2"
sources."balanced-match-1.0.0"
- sources."base64-js-1.2.3"
- sources."base64url-2.0.0"
- sources."bcrypt-pbkdf-1.0.1"
- sources."big.js-3.2.0"
- sources."binary-extensions-1.11.0"
- sources."bl-1.2.1"
- sources."bluebird-2.9.34"
- sources."bn.js-4.11.8"
- sources."boolbase-1.0.0"
- sources."boom-4.3.1"
- sources."boundary-1.0.1"
- sources."boxen-1.3.0"
- sources."brace-expansion-1.1.11"
- (sources."braces-1.8.5" // {
+ (sources."base-0.11.2" // {
dependencies = [
- sources."kind-of-4.0.0"
+ (sources."define-property-1.0.0" // {
+ dependencies = [
+ sources."kind-of-6.0.2"
+ ];
+ })
+ sources."kind-of-3.2.2"
];
})
- sources."brorand-1.1.0"
- sources."browserify-aes-1.1.1"
- sources."browserify-cipher-1.0.0"
- sources."browserify-des-1.0.0"
- sources."browserify-rsa-4.0.1"
- sources."browserify-sign-4.0.4"
- sources."browserify-zlib-0.2.0"
- sources."buffer-4.9.1"
+ sources."base64-js-0.0.2"
+ sources."base64url-2.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."binary-extensions-1.11.0"
+ sources."bl-1.2.2"
+ sources."bluebird-2.9.34"
+ sources."boolbase-1.0.0"
+ sources."boom-4.3.1"
+ sources."bops-0.1.1"
+ sources."boundary-1.0.1"
+ sources."boxen-0.3.1"
+ sources."brace-expansion-1.1.11"
+ sources."braces-2.3.1"
sources."buffer-crc32-0.2.13"
sources."buffer-equal-constant-time-1.0.1"
- sources."buffer-xor-1.0.3"
+ sources."buffer-from-1.0.0"
sources."builtin-modules-1.1.1"
- sources."builtin-status-codes-3.0.0"
(sources."bunyan-1.8.12" // {
dependencies = [
sources."glob-6.0.4"
sources."rimraf-2.4.5"
];
})
+ sources."cache-base-1.0.1"
sources."caller-path-0.1.0"
sources."callsites-0.2.0"
sources."camelcase-4.1.0"
@@ -42532,7 +43375,7 @@ in
sources."caseless-0.12.0"
sources."ccount-1.0.2"
sources."center-align-0.1.3"
- sources."chalk-2.3.0"
+ sources."chalk-2.3.2"
sources."character-entities-1.2.1"
sources."character-entities-html4-1.1.1"
sources."character-entities-legacy-1.1.1"
@@ -42543,39 +43386,54 @@ in
sources."domelementtype-1.3.0"
];
})
- sources."chokidar-1.7.0"
- sources."cipher-base-1.0.4"
+ (sources."chokidar-2.0.3" // {
+ dependencies = [
+ sources."is-accessor-descriptor-1.0.0"
+ sources."is-data-descriptor-1.0.0"
+ sources."is-descriptor-1.0.2"
+ sources."is-extendable-0.1.1"
+ ];
+ })
sources."circular-json-0.3.3"
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ ];
+ })
sources."cli-boxes-1.0.0"
sources."cli-cursor-2.1.0"
sources."cli-width-2.2.0"
+ sources."clite-0.3.0"
sources."cliui-2.1.0"
- sources."clone-1.0.3"
+ sources."clone-1.0.4"
+ sources."clone-deep-0.3.0"
sources."co-4.6.0"
sources."code-point-at-1.1.0"
sources."collapse-white-space-1.0.3"
+ sources."collection-visit-1.0.0"
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
sources."colors-0.5.1"
sources."columnify-1.5.4"
sources."combined-stream-1.0.6"
- sources."commander-2.15.0"
+ sources."commander-2.15.1"
sources."common-tags-1.7.2"
+ sources."component-emitter-1.2.1"
sources."compress-commons-1.2.2"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.1"
- sources."configstore-3.1.1"
- sources."console-browserify-1.1.0"
- sources."constants-browserify-1.0.0"
+ sources."concat-stream-1.6.2"
+ (sources."configstore-1.4.0" // {
+ dependencies = [
+ sources."uuid-2.0.3"
+ ];
+ })
sources."convert-source-map-1.5.1"
- sources."core-js-2.5.3"
+ sources."copy-descriptor-0.1.1"
+ sources."core-js-2.5.4"
sources."core-util-is-1.0.2"
sources."crc-3.5.0"
sources."crc32-stream-2.0.0"
- sources."create-ecdh-4.0.0"
sources."create-error-class-3.0.2"
- sources."create-hash-1.1.3"
- sources."create-hmac-1.1.6"
sources."cross-spawn-5.1.0"
sources."crx-parser-0.1.2"
(sources."cryptiles-3.1.2" // {
@@ -42583,67 +43441,67 @@ in
sources."boom-5.2.0"
];
})
- sources."crypto-browserify-3.12.0"
sources."crypto-random-string-1.0.0"
sources."css-select-1.2.0"
sources."css-what-2.1.0"
sources."d-1.0.0"
sources."dashdash-1.14.1"
- sources."date-now-0.1.4"
sources."debounce-1.1.0"
sources."debug-2.6.9"
sources."decamelize-2.0.0"
+ sources."decode-uri-component-0.2.0"
sources."deep-equal-1.0.1"
sources."deep-extend-0.4.2"
sources."deep-is-0.1.3"
sources."deepcopy-0.6.3"
- sources."deepmerge-1.5.2"
+ sources."deepmerge-2.1.0"
sources."defaults-1.0.3"
+ sources."define-property-2.0.2"
sources."del-2.2.2"
sources."delayed-stream-1.0.0"
- sources."des.js-1.0.0"
sources."detect-indent-4.0.0"
- sources."diffie-hellman-5.0.2"
- (sources."dispensary-0.12.0" // {
+ (sources."dispensary-0.16.0" // {
dependencies = [
- sources."semver-5.4.1"
- sources."source-map-support-0.5.0"
+ sources."ajv-5.5.2"
];
})
- sources."doctoc-1.3.0"
+ sources."doctoc-1.3.1"
sources."doctrine-2.1.0"
sources."dom-serializer-0.1.0"
- sources."domain-browser-1.2.0"
sources."domelementtype-1.3.0"
sources."domhandler-2.4.1"
sources."domutils-1.5.1"
- sources."dot-prop-4.2.0"
+ sources."dot-prop-3.0.0"
sources."dtrace-provider-0.8.6"
+ sources."duplexer2-0.1.4"
sources."duplexer3-0.1.4"
+ sources."duplexify-3.5.4"
sources."ecc-jsbn-0.1.1"
sources."ecdsa-sig-formatter-1.0.9"
- sources."elliptic-6.4.0"
+ sources."email-validator-1.1.1"
sources."emoji-regex-6.1.3"
- sources."emojis-list-2.1.0"
sources."encoding-0.1.12"
sources."end-of-stream-1.4.1"
- sources."enhanced-resolve-3.4.1"
sources."entities-1.1.1"
- sources."errno-0.1.7"
sources."error-ex-1.3.1"
- sources."es5-ext-0.10.40"
+ sources."es5-ext-0.10.42"
sources."es6-error-4.1.1"
sources."es6-iterator-2.0.3"
sources."es6-map-0.1.5"
- sources."es6-promise-4.2.4"
- sources."es6-promisify-5.0.0"
+ sources."es6-promise-2.3.0"
+ (sources."es6-promisify-5.0.0" // {
+ dependencies = [
+ sources."es6-promise-4.2.4"
+ ];
+ })
sources."es6-set-0.1.5"
sources."es6-symbol-3.1.1"
sources."es6-weak-map-2.0.2"
sources."escape-string-regexp-1.0.5"
sources."escope-3.6.0"
- (sources."eslint-4.15.0" // {
+ (sources."eslint-4.19.0" // {
dependencies = [
+ sources."ajv-5.5.2"
sources."esprima-4.0.0"
];
})
@@ -42672,22 +43530,29 @@ in
sources."eslint-visitor-keys-1.0.0"
sources."espree-3.5.4"
sources."esprima-3.1.3"
- sources."esquery-1.0.0"
+ sources."esquery-1.0.1"
sources."esrecurse-4.2.1"
sources."estraverse-4.2.0"
sources."esutils-2.0.2"
sources."event-emitter-0.3.5"
sources."event-to-promise-0.8.0"
- sources."events-1.1.1"
- sources."evp_bytestokey-1.0.3"
sources."execa-0.7.0"
sources."exit-hook-1.1.1"
- sources."expand-brackets-0.1.5"
- sources."expand-range-1.8.2"
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ ];
+ })
sources."extend-3.0.1"
- sources."external-editor-2.1.0"
- sources."extglob-0.3.2"
- sources."extract-text-webpack-plugin-3.0.2"
+ sources."extend-shallow-3.0.2"
+ sources."external-editor-2.2.0"
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ sources."kind-of-5.1.0"
+ ];
+ })
sources."extsprintf-1.3.0"
sources."fast-deep-equal-1.1.0"
sources."fast-json-parse-1.0.3"
@@ -42698,10 +43563,9 @@ in
sources."fd-slicer-1.0.1"
sources."figures-2.0.0"
sources."file-entry-cache-2.0.0"
- sources."filename-regex-2.0.1"
- sources."fill-range-2.2.3"
- sources."find-up-2.1.0"
- sources."firefox-client-0.3.0"
+ sources."fill-range-4.0.0"
+ sources."filled-array-1.1.0"
+ sources."find-up-1.1.2"
(sources."firefox-profile-1.1.0" // {
dependencies = [
sources."async-2.5.0"
@@ -42710,11 +43574,12 @@ in
sources."first-chunk-stream-2.0.0"
sources."flat-cache-1.3.0"
sources."flatstr-1.0.5"
- sources."fluent-0.4.1"
+ sources."fluent-syntax-0.6.6"
sources."for-in-1.0.2"
- sources."for-own-0.1.5"
+ sources."for-own-1.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.3.2"
+ sources."fragment-cache-0.2.1"
sources."fs-extra-4.0.3"
sources."fs.realpath-1.0.0"
sources."fsevents-1.1.3"
@@ -42732,6 +43597,7 @@ in
sources."generate-object-property-1.2.0"
sources."get-caller-file-1.0.2"
sources."get-stream-3.0.0"
+ sources."get-value-2.0.6"
sources."getpass-0.1.7"
sources."gettext-parser-1.1.0"
(sources."git-rev-sync-1.9.1" // {
@@ -42740,71 +43606,75 @@ in
];
})
sources."glob-7.1.2"
- sources."glob-base-0.3.0"
- sources."glob-parent-2.0.0"
+ (sources."glob-parent-3.1.0" // {
+ dependencies = [
+ sources."is-glob-3.1.0"
+ ];
+ })
sources."global-dirs-0.1.1"
sources."globals-9.18.0"
sources."globby-5.0.0"
- sources."got-6.7.1"
+ sources."got-5.7.1"
sources."graceful-fs-4.1.11"
sources."graceful-readlink-1.0.1"
+ sources."graphlib-2.1.5"
sources."growly-1.3.0"
sources."har-schema-2.0.0"
sources."har-validator-5.0.3"
sources."has-1.0.1"
sources."has-ansi-2.0.0"
sources."has-color-0.1.7"
- sources."has-flag-2.0.0"
- sources."hash-base-3.0.4"
- sources."hash.js-1.1.3"
+ sources."has-flag-3.0.0"
+ sources."has-value-1.0.0"
+ sources."has-values-1.0.0"
+ sources."hasbin-1.2.3"
sources."hawk-6.0.2"
- sources."hmac-drbg-1.0.1"
sources."hoek-4.2.1"
sources."home-or-tmp-2.0.0"
sources."hosted-git-info-2.6.0"
sources."htmlparser2-3.9.2"
sources."http-signature-1.2.0"
- sources."https-browserify-1.0.0"
sources."iconv-lite-0.4.19"
- sources."ieee754-1.1.8"
sources."ignore-3.3.7"
sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
- sources."indexof-0.0.1"
+ sources."infinity-agent-2.0.3"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."ini-1.3.5"
sources."inquirer-3.3.0"
sources."interpret-1.1.0"
- sources."invariant-2.2.3"
+ sources."invariant-2.2.4"
sources."invert-kv-1.0.0"
sources."is-absolute-0.1.7"
+ sources."is-accessor-descriptor-1.0.0"
sources."is-alphabetical-1.0.1"
sources."is-alphanumerical-1.0.1"
sources."is-arrayish-0.2.1"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
sources."is-builtin-module-1.0.0"
+ sources."is-data-descriptor-1.0.0"
sources."is-decimal-1.0.1"
- sources."is-dotfile-1.0.3"
- sources."is-equal-shallow-0.1.3"
+ sources."is-descriptor-1.0.2"
sources."is-extendable-0.1.1"
- sources."is-extglob-1.0.0"
+ sources."is-extglob-2.1.1"
sources."is-finite-1.0.2"
sources."is-fullwidth-code-point-2.0.0"
- sources."is-glob-2.0.1"
+ sources."is-glob-4.0.0"
sources."is-hexadecimal-1.0.1"
sources."is-installed-globally-0.1.0"
+ sources."is-mergeable-object-1.1.0"
sources."is-my-ip-valid-1.0.0"
sources."is-my-json-valid-2.17.2"
sources."is-npm-1.0.0"
- sources."is-number-2.1.0"
+ sources."is-number-4.0.0"
sources."is-obj-1.0.1"
+ sources."is-odd-2.0.0"
sources."is-path-cwd-1.0.0"
- sources."is-path-in-cwd-1.0.0"
+ sources."is-path-in-cwd-1.0.1"
sources."is-path-inside-1.0.1"
- sources."is-posix-bracket-0.1.1"
- sources."is-primitive-2.0.0"
+ sources."is-plain-object-2.0.4"
sources."is-promise-2.1.0"
sources."is-property-1.0.2"
sources."is-redirect-1.0.0"
@@ -42814,10 +43684,11 @@ in
sources."is-stream-1.1.0"
sources."is-typedarray-1.0.0"
sources."is-utf8-0.2.1"
+ sources."is-windows-1.0.2"
sources."isarray-1.0.0"
sources."isemail-1.2.0"
sources."isexe-2.0.0"
- sources."isobject-2.1.0"
+ sources."isobject-3.0.1"
sources."isstream-0.1.2"
sources."jed-1.1.1"
sources."jetpack-id-1.0.0"
@@ -42827,9 +43698,8 @@ in
sources."js-yaml-3.11.0"
sources."jsbn-0.1.1"
sources."jsesc-1.3.0"
- sources."json-loader-0.5.7"
sources."json-merge-patch-0.2.3"
- sources."json-parse-better-errors-1.0.1"
+ sources."json-parse-better-errors-1.0.2"
sources."json-schema-0.2.3"
sources."json-schema-traverse-0.3.1"
sources."json-stable-stringify-1.0.1"
@@ -42845,66 +43715,71 @@ in
sources."jwa-1.1.5"
sources."jws-3.1.4"
sources."kind-of-3.2.2"
- sources."latest-version-3.1.0"
+ sources."latest-version-2.0.0"
sources."lazy-cache-1.0.4"
sources."lazystream-1.0.0"
sources."lcid-1.0.0"
sources."levn-0.3.0"
- sources."load-json-file-2.0.0"
- sources."loader-runner-2.3.0"
- sources."loader-utils-1.1.0"
+ sources."load-json-file-1.1.0"
sources."locate-path-2.0.0"
sources."lodash-4.17.5"
- sources."lodash.endswith-4.2.1"
- sources."lodash.isfunction-3.0.9"
- sources."lodash.isstring-4.0.1"
+ sources."lodash.assign-4.2.0"
+ sources."lodash.clonedeep-4.5.0"
+ sources."lodash.defaults-4.2.0"
+ sources."lodash.defaultsdeep-4.6.0"
+ sources."lodash.mergewith-4.6.1"
sources."lodash.once-4.1.1"
sources."lodash.sortby-4.7.0"
- sources."lodash.startswith-4.2.1"
sources."longest-1.0.1"
sources."longest-streak-1.0.0"
sources."loose-envify-1.3.1"
- sources."lowercase-keys-1.0.0"
+ sources."lowercase-keys-1.0.1"
sources."lru-cache-4.1.2"
sources."make-dir-1.2.0"
+ sources."map-cache-0.2.2"
+ sources."map-visit-1.0.0"
sources."markdown-table-0.4.0"
sources."markdown-to-ast-3.4.0"
- sources."md5.js-1.3.4"
sources."mem-1.1.0"
- sources."memory-fs-0.4.1"
- sources."micromatch-2.3.11"
- sources."miller-rabin-4.0.1"
+ (sources."micromatch-3.1.10" // {
+ dependencies = [
+ sources."is-extendable-0.1.1"
+ ];
+ })
sources."mime-db-1.33.0"
sources."mime-types-2.1.18"
sources."mimic-fn-1.2.0"
- sources."minimalistic-assert-1.0.0"
- sources."minimalistic-crypto-utils-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
+ sources."mixin-deep-1.3.1"
+ sources."mixin-object-2.0.1"
(sources."mkdirp-0.5.1" // {
dependencies = [
sources."minimist-0.0.8"
];
})
- sources."moment-2.21.0"
+ sources."moment-2.22.0"
sources."ms-2.0.0"
sources."mute-stream-0.0.7"
sources."mv-2.1.1"
sources."mz-2.7.0"
- sources."nan-2.9.2"
+ sources."nan-2.10.0"
+ sources."nanomatch-1.2.9"
sources."natural-compare-1.4.0"
sources."natural-compare-lite-1.4.0"
+ sources."nconf-0.7.2"
sources."ncp-2.0.0"
- sources."next-tick-1.0.0"
- (sources."node-firefox-connect-1.2.0" // {
+ (sources."needle-2.2.0" // {
dependencies = [
- sources."es6-promise-2.3.0"
- sources."traverse-0.4.6"
+ sources."debug-2.6.9"
];
})
- sources."node-forge-0.7.4"
- sources."node-libs-browser-2.1.0"
+ sources."neo-async-2.5.0"
+ sources."nested-error-stacks-1.0.2"
+ sources."next-tick-1.0.0"
+ sources."node-forge-0.7.5"
sources."node-notifier-5.2.1"
+ sources."node-status-codes-1.0.0"
sources."nomnom-1.8.1"
sources."normalize-package-data-2.4.0"
sources."normalize-path-2.1.1"
@@ -42913,41 +43788,44 @@ in
sources."number-is-nan-1.0.1"
sources."oauth-sign-0.8.2"
sources."object-assign-4.1.1"
- sources."object.omit-2.0.1"
+ sources."object-copy-0.1.0"
+ sources."object-visit-1.0.1"
+ sources."object.pick-1.3.0"
sources."once-1.4.0"
sources."onetime-2.0.1"
sources."open-0.0.5"
sources."optionator-0.8.2"
- sources."os-browserify-0.3.0"
sources."os-homedir-1.0.2"
sources."os-locale-2.1.0"
+ sources."os-name-1.0.3"
sources."os-shim-0.1.3"
sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.5"
+ sources."osx-release-1.1.0"
sources."p-finally-1.0.0"
sources."p-limit-1.2.0"
sources."p-locate-2.0.0"
sources."p-try-1.0.0"
- sources."package-json-4.0.1"
+ sources."package-json-2.4.0"
sources."pako-1.0.6"
- sources."parse-asn1-5.1.0"
sources."parse-entities-1.1.1"
- sources."parse-glob-3.0.4"
sources."parse-json-4.0.0"
sources."parse5-3.0.3"
- sources."path-browserify-0.0.0"
- sources."path-exists-3.0.0"
+ sources."pascalcase-0.1.1"
+ sources."path-dirname-1.0.2"
+ sources."path-exists-2.1.0"
sources."path-is-absolute-1.0.1"
sources."path-is-inside-1.0.2"
sources."path-key-2.0.1"
sources."path-parse-1.0.5"
- sources."path-type-2.0.0"
- sources."pbkdf2-3.0.14"
+ sources."path-type-1.1.0"
sources."pend-1.2.0"
sources."performance-now-2.1.0"
sources."pify-2.3.0"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
- sources."pino-4.10.3"
+ sources."pino-4.14.0"
+ sources."pino-std-serializers-1.2.0"
sources."pluralize-7.0.0"
(sources."po2json-0.4.5" // {
dependencies = [
@@ -42956,48 +43834,38 @@ in
sources."strip-ansi-0.1.1"
];
})
- sources."postcss-6.0.14"
+ sources."posix-character-classes-0.1.1"
+ sources."postcss-6.0.19"
sources."prelude-ls-1.1.2"
sources."prepend-http-1.0.4"
- sources."preserve-0.2.0"
sources."private-0.1.8"
- (sources."probe-image-size-3.2.0" // {
+ (sources."probe-image-size-4.0.0" // {
dependencies = [
sources."debug-2.6.9"
];
})
- sources."process-0.11.10"
sources."process-nextick-args-2.0.0"
sources."progress-2.0.0"
- sources."prr-1.0.1"
+ sources."promise-7.3.1"
+ sources."proxy-from-env-1.0.0"
sources."pseudomap-1.0.2"
- sources."public-encrypt-4.0.0"
- sources."pump-2.0.1"
+ sources."pump-3.0.0"
sources."punycode-1.4.1"
sources."qs-6.5.1"
sources."querystring-0.2.0"
- sources."querystring-es3-0.2.1"
sources."quick-format-unescaped-1.1.2"
- (sources."randomatic-1.1.7" // {
- dependencies = [
- (sources."is-number-3.0.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- ];
- })
- sources."randombytes-2.0.6"
- sources."randomfill-1.0.4"
- sources."rc-1.2.5"
- sources."read-pkg-2.0.0"
- sources."read-pkg-up-2.0.0"
+ sources."rc-1.2.6"
+ sources."read-all-stream-3.1.0"
+ sources."read-pkg-1.1.0"
+ sources."read-pkg-up-1.0.1"
sources."readable-stream-2.3.5"
sources."readdirp-2.1.0"
sources."readline2-1.0.1"
sources."rechoir-0.6.2"
+ sources."recursive-readdir-2.2.2"
sources."regenerator-runtime-0.11.1"
- sources."regex-cache-0.4.4"
+ sources."regex-not-1.0.2"
+ sources."regexpp-1.1.0"
sources."registry-auth-token-3.3.2"
sources."registry-url-3.1.0"
(sources."relaxed-json-1.0.1" // {
@@ -43020,31 +43888,38 @@ in
sources."require-directory-2.1.1"
sources."require-main-filename-1.0.1"
sources."require-uncached-1.0.3"
- sources."resolve-1.5.0"
+ sources."resolve-1.6.0"
sources."resolve-from-1.0.1"
+ sources."resolve-url-0.2.1"
sources."restore-cursor-2.0.0"
+ sources."ret-0.1.15"
sources."right-align-0.1.3"
sources."rimraf-2.6.2"
- sources."ripemd160-2.0.1"
sources."run-async-2.3.0"
+ sources."rx-4.1.0"
sources."rx-lite-4.0.8"
sources."rx-lite-aggregates-4.0.8"
sources."safe-buffer-5.1.1"
sources."safe-json-stringify-1.1.0"
+ sources."safe-regex-1.1.0"
sources."sax-1.2.4"
- sources."schema-utils-0.3.0"
sources."semver-5.5.0"
sources."semver-diff-2.1.0"
sources."set-blocking-2.0.0"
sources."set-immediate-shim-1.0.1"
- sources."setimmediate-1.0.5"
- sources."sha.js-2.4.10"
+ sources."set-value-2.0.0"
+ sources."sha.js-2.4.11"
+ (sources."shallow-clone-0.1.2" // {
+ dependencies = [
+ sources."kind-of-2.0.1"
+ ];
+ })
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."shell-quote-1.6.1"
sources."shelljs-0.8.1"
sources."shellwords-0.1.1"
- (sources."sign-addon-0.2.2" // {
+ (sources."sign-addon-0.3.0" // {
dependencies = [
sources."assert-plus-0.2.0"
sources."aws-sign2-0.6.0"
@@ -43072,26 +43947,118 @@ in
sources."signal-exit-3.0.2"
sources."slash-1.0.0"
sources."slice-ansi-1.0.0"
+ sources."slide-1.1.6"
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ (sources."define-property-0.2.5" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."extend-shallow-2.0.1"
+ sources."kind-of-4.0.0"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."snapdragon-util-3.0.1"
sources."sntp-2.1.0"
- sources."source-list-map-2.0.0"
+ (sources."snyk-1.70.3" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."async-1.5.2"
+ sources."camelcase-3.0.0"
+ sources."chalk-1.1.3"
+ sources."inquirer-1.0.3"
+ sources."mute-stream-0.0.6"
+ sources."os-locale-1.4.0"
+ sources."run-async-2.3.0"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ sources."yargs-3.15.0"
+ ];
+ })
+ (sources."snyk-config-1.0.1" // {
+ dependencies = [
+ sources."async-0.9.2"
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."snyk-go-plugin-1.4.5"
+ sources."snyk-gradle-plugin-1.2.0"
+ (sources."snyk-module-1.8.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."snyk-mvn-plugin-1.1.1"
+ (sources."snyk-nuget-plugin-1.3.9" // {
+ dependencies = [
+ sources."es6-promise-4.2.4"
+ ];
+ })
+ sources."snyk-php-plugin-1.3.2"
+ (sources."snyk-policy-1.10.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."snyk-python-plugin-1.5.7"
+ (sources."snyk-resolve-1.0.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ (sources."snyk-resolve-deps-1.7.0" // {
+ dependencies = [
+ sources."configstore-2.1.0"
+ sources."debug-2.6.9"
+ sources."update-notifier-0.6.3"
+ sources."uuid-2.0.3"
+ sources."yargs-4.8.1"
+ ];
+ })
+ (sources."snyk-sbt-plugin-1.2.5" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."snyk-tree-1.0.0"
+ (sources."snyk-try-require-1.2.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
sources."source-map-0.5.7"
+ sources."source-map-resolve-0.5.1"
(sources."source-map-support-0.5.3" // {
dependencies = [
sources."source-map-0.6.1"
];
})
+ sources."source-map-url-0.4.0"
sources."spawn-sync-1.0.15"
sources."spdx-correct-3.0.0"
sources."spdx-exceptions-2.1.0"
sources."spdx-expression-parse-3.0.0"
sources."spdx-license-ids-3.0.0"
sources."split-0.3.3"
+ (sources."split-string-3.1.0" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ sources."is-extendable-1.0.1"
+ ];
+ })
sources."split2-2.2.0"
sources."sprintf-js-1.0.3"
- sources."sshpk-1.13.1"
- sources."stream-browserify-2.0.1"
- sources."stream-http-2.8.0"
+ sources."sshpk-1.14.1"
+ sources."static-extend-0.1.2"
sources."stream-parser-0.3.1"
+ sources."stream-shift-1.0.0"
sources."stream-to-array-2.3.0"
(sources."stream-to-promise-2.2.0" // {
dependencies = [
@@ -43099,6 +44066,7 @@ in
sources."once-1.3.3"
];
})
+ sources."string-length-1.0.1"
sources."string-width-2.1.1"
sources."string_decoder-1.0.3"
sources."stringify-entities-1.3.1"
@@ -43111,114 +44079,143 @@ in
sources."strip-json-comments-2.0.1"
sources."structured-source-3.0.2"
sources."supports-color-2.0.0"
- (sources."table-4.0.3" // {
+ sources."table-4.0.2"
+ sources."tar-stream-1.5.5"
+ (sources."tempfile-1.1.1" // {
dependencies = [
- sources."ajv-6.2.1"
+ sources."uuid-2.0.3"
];
})
- sources."tapable-0.2.8"
- sources."tar-stream-1.5.5"
sources."term-size-1.2.0"
sources."text-table-0.2.0"
+ sources."then-fs-2.0.0"
sources."thenify-3.3.0"
sources."thenify-all-1.6.0"
sources."through-2.3.8"
sources."through2-2.0.3"
- sources."timed-out-4.0.1"
- sources."timers-browserify-2.0.6"
+ sources."timed-out-3.1.3"
sources."tmp-0.0.33"
- sources."to-arraybuffer-1.0.1"
sources."to-fast-properties-1.0.3"
+ sources."to-object-path-0.3.0"
+ sources."to-regex-3.0.2"
+ sources."to-regex-range-2.1.1"
+ sources."to-utf8-0.0.1"
+ sources."toml-2.3.3"
sources."topo-1.1.0"
sources."tosource-1.0.0"
sources."tough-cookie-2.3.4"
sources."tr46-1.0.1"
- sources."traverse-0.6.6"
+ sources."traverse-0.4.6"
sources."trim-0.0.1"
sources."trim-right-1.0.1"
sources."trim-trailing-lines-1.1.0"
sources."trough-1.0.1"
- sources."tty-browserify-0.0.0"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
sources."typedarray-0.0.6"
- sources."uglify-js-2.8.29"
- sources."uglify-to-browserify-1.0.2"
- (sources."uglifyjs-webpack-plugin-0.4.6" // {
- dependencies = [
- sources."yargs-3.10.0"
- ];
- })
+ sources."undefsafe-0.0.3"
sources."underscore-1.8.3"
sources."unherit-1.1.0"
sources."unified-4.2.1"
+ (sources."union-value-1.0.0" // {
+ dependencies = [
+ sources."set-value-0.4.3"
+ ];
+ })
sources."unique-string-1.0.0"
sources."unist-util-is-2.1.1"
sources."unist-util-remove-position-1.1.1"
sources."unist-util-visit-1.3.0"
sources."universalify-0.1.1"
- sources."unzip-response-2.0.1"
- sources."upath-1.0.2"
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ ];
+ })
+ sources."unzip-response-1.0.2"
+ sources."upath-1.0.4"
(sources."update-notifier-2.3.0" // {
dependencies = [
+ sources."boxen-1.3.0"
+ sources."configstore-3.1.2"
+ sources."dot-prop-4.2.0"
+ sources."got-6.7.1"
+ sources."latest-version-3.1.0"
+ sources."package-json-4.0.1"
sources."pify-3.0.0"
+ sources."timed-out-4.0.1"
+ sources."unzip-response-2.0.1"
+ sources."widest-line-2.0.0"
+ sources."write-file-atomic-2.3.0"
+ sources."xdg-basedir-3.0.0"
];
})
sources."update-section-0.3.3"
- (sources."url-0.11.0" // {
+ sources."urix-0.1.0"
+ sources."url-0.11.0"
+ sources."url-parse-lax-1.0.0"
+ (sources."use-3.1.0" // {
dependencies = [
- sources."punycode-1.3.2"
+ sources."kind-of-6.0.2"
];
})
- sources."url-parse-lax-1.0.0"
sources."user-home-2.0.0"
- sources."util-0.10.3"
sources."util-deprecate-1.0.2"
sources."uuid-3.2.1"
sources."validate-npm-package-license-3.0.3"
sources."verror-1.10.0"
sources."vfile-1.4.0"
sources."vfile-location-2.0.2"
- sources."vm-browserify-0.0.4"
- (sources."watchpack-1.4.0" // {
+ (sources."watchpack-1.5.0" // {
dependencies = [
- sources."async-2.6.0"
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ sources."has-values-0.1.4"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."is-extendable-1.0.1"
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."kind-of-6.0.2"
];
})
sources."wcwidth-1.0.1"
sources."webidl-conversions-4.0.2"
- (sources."webpack-3.10.0" // {
+ (sources."whatwg-url-6.3.0" // {
dependencies = [
- sources."ajv-keywords-2.1.1"
- sources."ansi-regex-2.1.1"
- sources."camelcase-4.1.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."source-map-0.5.7"
- sources."string-width-2.1.1"
- sources."strip-ansi-3.0.1"
- (sources."yargs-8.0.2" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."strip-ansi-4.0.0"
- ];
- })
+ sources."punycode-2.1.0"
];
})
- sources."webpack-sources-1.1.0"
- sources."whatwg-url-6.3.0"
sources."when-3.7.7"
sources."which-1.3.0"
- sources."which-module-2.0.0"
- sources."widest-line-2.0.0"
- sources."window-size-0.1.0"
+ sources."which-module-1.0.0"
+ sources."widest-line-1.0.0"
+ sources."win-release-1.1.1"
+ sources."window-size-0.1.4"
sources."winreg-0.0.12"
sources."wordwrap-1.0.0"
sources."wrap-ansi-2.1.0"
sources."wrappy-1.0.2"
sources."write-0.2.1"
- sources."write-file-atomic-2.3.0"
- sources."xdg-basedir-3.0.0"
+ sources."write-file-atomic-1.3.4"
+ sources."xdg-basedir-2.0.0"
sources."xml2js-0.4.19"
sources."xmlbuilder-9.0.7"
sources."xmldom-0.1.27"
@@ -43231,23 +44228,15 @@ in
sources."camelcase-3.0.0"
sources."cliui-3.2.0"
sources."decamelize-1.2.0"
- sources."find-up-1.1.2"
sources."is-fullwidth-code-point-1.0.0"
- sources."load-json-file-1.1.0"
sources."os-locale-1.4.0"
- sources."parse-json-2.2.0"
- sources."path-exists-2.1.0"
- sources."path-type-1.1.0"
- sources."read-pkg-1.1.0"
- sources."read-pkg-up-1.0.1"
sources."string-width-1.0.2"
- sources."strip-bom-2.0.0"
- sources."which-module-1.0.0"
sources."yargs-parser-4.2.1"
];
})
- sources."yargs-parser-7.0.0"
+ sources."yargs-parser-2.4.1"
sources."yauzl-2.9.1"
+ sources."zip-1.2.0"
(sources."zip-dir-1.0.2" // {
dependencies = [
sources."async-1.5.2"
@@ -43312,7 +44301,7 @@ in
sources."ajv-5.5.2"
sources."ansi-0.3.1"
sources."ansi-align-2.0.0"
- sources."ansi-escapes-3.0.0"
+ sources."ansi-escapes-3.1.0"
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
sources."are-we-there-yet-1.1.4"
@@ -43337,21 +44326,27 @@ in
sources."boom-4.3.1"
sources."boxen-1.3.0"
sources."brace-expansion-1.1.11"
+ sources."buffer-from-1.0.0"
sources."builtin-modules-1.1.1"
- sources."cacheable-request-2.1.4"
+ (sources."cacheable-request-2.1.4" // {
+ dependencies = [
+ sources."lowercase-keys-1.0.0"
+ ];
+ })
sources."camelcase-2.1.1"
sources."camelcase-keys-2.1.0"
sources."capture-stack-trace-1.0.0"
sources."caseless-0.12.0"
sources."chalk-1.1.3"
sources."chardet-0.4.2"
+ sources."ci-info-1.1.3"
sources."clean-stack-1.3.0"
sources."cli-boxes-1.0.0"
sources."cli-cursor-2.1.0"
sources."cli-list-0.2.0"
sources."cli-width-2.2.0"
- sources."clone-1.0.3"
- sources."clone-regexp-1.0.0"
+ sources."clone-1.0.4"
+ sources."clone-regexp-1.0.1"
sources."clone-response-1.0.2"
sources."clone-stats-0.0.1"
sources."co-4.6.0"
@@ -43360,8 +44355,8 @@ in
sources."color-name-1.1.3"
sources."combined-stream-1.0.6"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.1"
- sources."configstore-3.1.1"
+ sources."concat-stream-1.6.2"
+ sources."configstore-3.1.2"
sources."core-util-is-1.0.2"
sources."create-error-class-3.0.2"
sources."cross-spawn-5.1.0"
@@ -43394,7 +44389,7 @@ in
sources."execall-1.0.0"
sources."exit-hook-1.1.1"
sources."extend-3.0.1"
- sources."external-editor-2.1.0"
+ sources."external-editor-2.2.0"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-1.1.0"
sources."fast-json-stable-stringify-2.0.0"
@@ -43437,7 +44432,7 @@ in
sources."hosted-git-info-2.6.0"
sources."http-cache-semantics-3.8.1"
sources."http-signature-1.2.0"
- sources."humanize-string-1.0.1"
+ sources."humanize-string-1.0.2"
sources."iconv-lite-0.4.19"
sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
@@ -43482,6 +44477,7 @@ in
sources."into-stream-3.1.0"
sources."is-arrayish-0.2.1"
sources."is-builtin-module-1.0.0"
+ sources."is-ci-1.1.0"
sources."is-docker-1.1.0"
sources."is-finite-1.0.2"
sources."is-fullwidth-code-point-2.0.0"
@@ -43498,7 +44494,7 @@ in
sources."is-root-1.0.0"
sources."is-scoped-1.0.0"
sources."is-stream-1.1.0"
- sources."is-supported-regexp-flag-1.0.0"
+ sources."is-supported-regexp-flag-1.0.1"
sources."is-typedarray-1.0.0"
sources."is-utf8-0.2.1"
sources."isarray-1.0.0"
@@ -43523,7 +44519,7 @@ in
sources."lodash.padstart-4.6.1"
sources."log-symbols-1.0.2"
sources."loud-rejection-1.6.0"
- sources."lowercase-keys-1.0.0"
+ sources."lowercase-keys-1.0.1"
sources."lru-cache-4.1.2"
sources."make-dir-1.2.0"
sources."map-obj-1.0.1"
@@ -43576,7 +44572,7 @@ in
sources."osenv-0.1.5"
sources."osx-release-1.1.0"
sources."p-any-1.1.0"
- sources."p-cancelable-0.4.0"
+ sources."p-cancelable-0.4.1"
sources."p-finally-1.0.0"
sources."p-is-promise-1.1.0"
sources."p-limit-1.2.0"
@@ -43613,8 +44609,8 @@ in
sources."pseudomap-1.0.2"
sources."punycode-1.4.1"
sources."qs-6.5.1"
- sources."query-string-5.1.0"
- sources."rc-1.2.5"
+ sources."query-string-5.1.1"
+ sources."rc-1.2.6"
sources."read-pkg-1.1.0"
(sources."read-pkg-up-2.0.0" // {
dependencies = [
@@ -43665,7 +44661,7 @@ in
sources."spdx-exceptions-2.1.0"
sources."spdx-expression-parse-3.0.0"
sources."spdx-license-ids-3.0.0"
- sources."sshpk-1.13.1"
+ sources."sshpk-1.14.1"
sources."strict-uri-encode-1.1.0"
sources."string-length-1.0.1"
sources."string-width-2.1.1"
@@ -43700,7 +44696,7 @@ in
sources."through-2.3.8"
sources."through2-2.0.3"
sources."timed-out-4.0.1"
- sources."titleize-1.0.0"
+ sources."titleize-1.0.1"
sources."tmp-0.0.33"
sources."tough-cookie-2.3.4"
sources."trim-newlines-1.0.0"
@@ -43711,7 +44707,7 @@ in
sources."unique-string-1.0.0"
sources."untildify-3.0.2"
sources."unzip-response-2.0.1"
- (sources."update-notifier-2.3.0" // {
+ (sources."update-notifier-2.4.0" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."camelcase-4.1.0"
@@ -43729,7 +44725,7 @@ in
sources."verror-1.10.0"
sources."vinyl-1.2.0"
sources."vinyl-file-2.0.0"
- sources."walk-2.3.9"
+ sources."walk-2.3.13"
sources."which-1.3.0"
sources."widest-line-2.0.0"
sources."win-release-1.1.1"
@@ -43754,7 +44750,7 @@ in
sources."onetime-1.1.0"
];
})
- (sources."yeoman-environment-2.0.5" // {
+ (sources."yeoman-environment-2.0.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.3.2"
@@ -43764,7 +44760,7 @@ in
sources."supports-color-5.3.0"
];
})
- (sources."yosay-2.0.1" // {
+ (sources."yosay-2.0.2" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."is-fullwidth-code-point-1.0.0"
diff --git a/pkgs/development/node-packages/node-packages-v8.json b/pkgs/development/node-packages/node-packages-v8.json
index 59de12c29f7..2d987cbfb1b 100644
--- a/pkgs/development/node-packages/node-packages-v8.json
+++ b/pkgs/development/node-packages/node-packages-v8.json
@@ -1,6 +1,7 @@
[
"bower"
, "coffee-script"
+, "create-cycle-app"
, "dat"
, "grunt-cli"
, "mocha"
@@ -11,6 +12,7 @@
, "pnpm"
, "semver"
, "sloc"
+, "vue-cli"
, "swagger"
, "npm"
]
diff --git a/pkgs/development/node-packages/node-packages-v8.nix b/pkgs/development/node-packages/node-packages-v8.nix
index bb1c7eba168..cef612b9edf 100644
--- a/pkgs/development/node-packages/node-packages-v8.nix
+++ b/pkgs/development/node-packages/node-packages-v8.nix
@@ -4,6 +4,69 @@
let
sources = {
+ "@cycle/dom-18.3.0" = {
+ name = "_at_cycle_slash_dom";
+ packageName = "@cycle/dom";
+ version = "18.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cycle/dom/-/dom-18.3.0.tgz";
+ sha1 = "37b9f55c6b0f629d1b689ece57637768fbeed2b0";
+ };
+ };
+ "@cycle/http-14.9.0" = {
+ name = "_at_cycle_slash_http";
+ packageName = "@cycle/http";
+ version = "14.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cycle/http/-/http-14.9.0.tgz";
+ sha512 = "0ahsk9basb6qimsb40yr40vxxkmmfiqlig23brc5dymic61gfhzg2mzqz5cvkiz2y8g2rwnlwb619fkd3f4hw1yg8bkbczcaxzcrqn0";
+ };
+ };
+ "@cycle/isolate-3.2.0" = {
+ name = "_at_cycle_slash_isolate";
+ packageName = "@cycle/isolate";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cycle/isolate/-/isolate-3.2.0.tgz";
+ sha512 = "1g3jcq2dmxpqn3nyvclbf9hnp18h4c41vsqywp2yf2mda92bzdjwidq8f231yxb6rs6r39zpvn741kjify4h5zl4d8ix1xigilbcyj7";
+ };
+ };
+ "@cycle/run-3.4.0" = {
+ name = "_at_cycle_slash_run";
+ packageName = "@cycle/run";
+ version = "3.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cycle/run/-/run-3.4.0.tgz";
+ sha512 = "2ir1dz9dh2ajf6yaks8nznfm89m0jh09hgadzwfml7xw3d49hks008sz3fq5rp9ax2d7r87y6hcq5hv9xz2qrkx1c1qc2r7xlz74ik1";
+ };
+ };
+ "@cycle/time-0.10.1" = {
+ name = "_at_cycle_slash_time";
+ packageName = "@cycle/time";
+ version = "0.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cycle/time/-/time-0.10.1.tgz";
+ sha1 = "cbc4b9a68981bf0b501ccd06a9058acd65309bf7";
+ };
+ };
+ "@types/node-9.6.1" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "9.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-9.6.1.tgz";
+ sha512 = "2sxvv78fkmdrpqq04pkyq69fkny1xj1abcp8ajkmmmfn1cs3jdiir545s9h1gsnxzls1iiigbzj8dlkimlqdfpbgdlm8h6pj2mlf2f7";
+ };
+ };
+ "@types/superagent-3.5.6" = {
+ name = "_at_types_slash_superagent";
+ packageName = "@types/superagent";
+ version = "3.5.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/superagent/-/superagent-3.5.6.tgz";
+ sha512 = "31mxn8niw3v1nam9lh29lrq867gjkbv2q6fs0w07miff4mz73066cn5n24f1vmnqpvyv6hbh83b6xll66911a8hj54apmn12s8ras68";
+ };
+ };
"URIjs-1.16.1" = {
name = "URIjs";
packageName = "URIjs";
@@ -22,6 +85,15 @@ let
sha512 = "38s4f3id97wsb0rg9nm9zvxyq0nvwrmrpa5dzvrkp36mf5ibs98b4z6lvsbrwzzs0sbcank6c7gpp06vcwp9acfhp41rzlhi3ybsxwy";
};
};
+ "absolute-0.0.1" = {
+ name = "absolute";
+ packageName = "absolute";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/absolute/-/absolute-0.0.1.tgz";
+ sha1 = "c22822f87e1c939f579887504d9c109c4173829d";
+ };
+ };
"abstract-random-access-1.1.2" = {
name = "abstract-random-access";
packageName = "abstract-random-access";
@@ -85,6 +157,24 @@ let
sha1 = "d3a8a83b319aa67793662b13e761c7911422306e";
};
};
+ "ansi-escapes-3.1.0" = {
+ name = "ansi-escapes";
+ packageName = "ansi-escapes";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz";
+ sha512 = "1bm72rs09dwjhfif8kqjxnpb5fgmcdgkn5483f11j6791s5161f2kvxy69pkgcq0jdws6kqfmr1bx5189lnvkzgkq851qs3gzq1n02j";
+ };
+ };
+ "ansi-red-0.1.1" = {
+ name = "ansi-red";
+ packageName = "ansi-red";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz";
+ sha1 = "8c638f9d1080800a353c9c28c8a81ca4705d946c";
+ };
+ };
"ansi-regex-2.1.1" = {
name = "ansi-regex";
packageName = "ansi-regex";
@@ -121,6 +211,15 @@ let
sha512 = "2lgkskkj4c1fsnrksy0yffda0wss84p8lfiazdc7jli7iqnvrxkzbxjzpvx13lm28qw0zkawfxvz2bdiisc72ccy7hx8i8rm4iijgam";
};
};
+ "ansi-wrap-0.1.0" = {
+ name = "ansi-wrap";
+ packageName = "ansi-wrap";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz";
+ sha1 = "a82250ddb0015e9a27ca82e82ea603bbfa45efaf";
+ };
+ };
"anymatch-1.3.2" = {
name = "anymatch";
packageName = "anymatch";
@@ -229,6 +328,15 @@ let
sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
};
};
+ "array-differ-1.0.0" = {
+ name = "array-differ";
+ packageName = "array-differ";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz";
+ sha1 = "eff52e3758249d33be402b8bb8e564bb2b5d4031";
+ };
+ };
"array-lru-1.1.1" = {
name = "array-lru";
packageName = "array-lru";
@@ -238,6 +346,24 @@ let
sha1 = "0c7e1b4e022ae166ff1e8448c595f3181fcd3337";
};
};
+ "array-union-1.0.2" = {
+ name = "array-union";
+ packageName = "array-union";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz";
+ sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39";
+ };
+ };
+ "array-uniq-1.0.3" = {
+ name = "array-uniq";
+ packageName = "array-uniq";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz";
+ sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6";
+ };
+ };
"array-unique-0.2.1" = {
name = "array-unique";
packageName = "array-unique";
@@ -256,6 +382,15 @@ let
sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
};
};
+ "arrify-1.0.1" = {
+ name = "arrify";
+ packageName = "arrify";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz";
+ sha1 = "898508da2226f380df904728456849c1501a4b0d";
+ };
+ };
"asn1-0.2.3" = {
name = "asn1";
packageName = "asn1";
@@ -319,6 +454,15 @@ let
sha1 = "e587c68580994ac67fc56ff86d3ac56bdbe810bc";
};
};
+ "async-2.6.0" = {
+ name = "async";
+ packageName = "async";
+ version = "2.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-2.6.0.tgz";
+ sha512 = "0zp4b5788400npi1ixjry5x3a4m21c8pnknk8v731rgnwnjbp5ijmfcf5ppmn1ap4a04md1s9dr8n9ygdvrmiai590v0k6dby1wc1y4";
+ };
+ };
"async-each-1.0.1" = {
name = "async-each";
packageName = "async-each";
@@ -337,13 +481,13 @@ let
sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
};
};
- "atob-2.0.3" = {
+ "atob-2.1.0" = {
name = "atob";
packageName = "atob";
- version = "2.0.3";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/atob/-/atob-2.0.3.tgz";
- sha1 = "19c7a760473774468f20b2d2d03372ad7d4cbf5d";
+ url = "https://registry.npmjs.org/atob/-/atob-2.1.0.tgz";
+ sha512 = "0dyf7054n94f1pwp9chcy6vawgwd2wqp8jqrnvxl489jyxxbg46n2vkb5vfs5jqnkmh6kbyv4lpysrn13hzzh5q021frc6vrcgqms2a";
};
};
"atomic-batcher-1.0.2" = {
@@ -391,6 +535,15 @@ let
sha512 = "11dwi4v72034dqafp0qxsg8h6cpn92vv4vf909a9fybd69yfg6gqn4hhav6x59r1wbi8h1qlgfh9np0340mpljv1hc9v9p02giqygp5";
};
};
+ "base64-js-0.0.8" = {
+ name = "base64-js";
+ packageName = "base64-js";
+ version = "0.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz";
+ sha1 = "1101e9544f4a76b1bc3b26d452ca96d7a35e7978";
+ };
+ };
"bcrypt-pbkdf-1.0.1" = {
name = "bcrypt-pbkdf";
packageName = "bcrypt-pbkdf";
@@ -445,6 +598,15 @@ let
sha512 = "10md5792s6q3xwdrmwh1a8ax9w128g607b5qsbxzw8x0gl9184g754hprchl6mq8lmf4f8qylk2h8vavsnbn9yy9gzjnyh2kwrzmxky";
};
};
+ "bl-1.2.2" = {
+ name = "bl";
+ packageName = "bl";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz";
+ sha512 = "0810nalazir8szyxvbg53d7416j4a7xy94sdri37mwmnax9s9hx88mzky882sr9dv0is7w9fqlp7ys6ijr1z1imc2dnfxk8fri51jvv";
+ };
+ };
"blake2b-2.1.2" = {
name = "blake2b";
packageName = "blake2b";
@@ -472,6 +634,15 @@ let
sha1 = "13ebfe778a03205cfe03751481ebb4b3300c126a";
};
};
+ "bluebird-3.5.1" = {
+ name = "bluebird";
+ packageName = "bluebird";
+ version = "3.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz";
+ sha512 = "2631bhp784qng0ifbypsmvijn6kjfvkhq2335kdz8ix5qi3wb3lbpg94xjn1av2s6i95ygr5a4y9j1721dw6zdbywwh1m48by4qpa1h";
+ };
+ };
"body-0.1.0" = {
name = "body";
packageName = "body";
@@ -553,6 +724,15 @@ let
sha512 = "21jjhrf3wdmzsfqgva5s7shs1wdmcdxsjvi75p8z7i0q2i6n3654gpxjqlhbnpmzm25cpkshyi8swy13017qkp9m7xnbgw0bwiia45a";
};
};
+ "buffer-3.6.0" = {
+ name = "buffer";
+ packageName = "buffer";
+ version = "3.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer/-/buffer-3.6.0.tgz";
+ sha1 = "a72c936f77b96bf52f5f7e7b467180628551defb";
+ };
+ };
"buffer-alloc-1.1.0" = {
name = "buffer-alloc";
packageName = "buffer-alloc";
@@ -580,6 +760,15 @@ let
sha1 = "474aa88f34e7bc75fa311d2e6457409c5846c3fe";
};
};
+ "buffer-crc32-0.2.13" = {
+ name = "buffer-crc32";
+ packageName = "buffer-crc32";
+ version = "0.2.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz";
+ sha1 = "0d333e3f00eac50aa1454abd30ef8c2a5d9a7242";
+ };
+ };
"buffer-equals-1.0.4" = {
name = "buffer-equals";
packageName = "buffer-equals";
@@ -589,13 +778,13 @@ let
sha1 = "0353b54fd07fd9564170671ae6f66b9cf10d27f5";
};
};
- "buffer-fill-0.1.0" = {
+ "buffer-fill-0.1.1" = {
name = "buffer-fill";
packageName = "buffer-fill";
- version = "0.1.0";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-0.1.0.tgz";
- sha1 = "ca9470e8d4d1b977fd7543f4e2ab6a7dc95101a8";
+ url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-0.1.1.tgz";
+ sha512 = "3nny0zbpnaxp1544gp7lc53jvs1jgzpmp92cy939dik36bi8lvhrsh4g082lxdplwsma22cgg9q93dw5dnbn1ljqkh4fb2i6w3lq032";
};
};
"buffer-from-1.0.0" = {
@@ -616,6 +805,15 @@ let
sha512 = "3bgz1zhq9ng3gypq825f00p9qi9y6z7wvkkf28nhjlyifnb3lk1dkmbya84k0ja79zv8kmmhvalwcnnz92533ip7pnjp3is1w9cxyp3";
};
};
+ "builtins-1.0.3" = {
+ name = "builtins";
+ packageName = "builtins";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz";
+ sha1 = "cb94faeb61c8696451db36534e1422f94f0aee88";
+ };
+ };
"bulk-write-stream-1.1.4" = {
name = "bulk-write-stream";
packageName = "bulk-write-stream";
@@ -715,6 +913,15 @@ let
sha1 = "1b681c21ff84033c826543090689420d187151dc";
};
};
+ "caw-2.0.1" = {
+ name = "caw";
+ packageName = "caw";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz";
+ sha512 = "2wa0gi2wljxw00rvqz454sgdr8yy90z8lhprxjc1prwi695lnzrh6sk0qqhp63h9gmbldyvvzfvm8k1jk0sbv6icdawcss441jky3qa";
+ };
+ };
"center-align-0.1.3" = {
name = "center-align";
packageName = "center-align";
@@ -742,6 +949,15 @@ let
sha512 = "06jlrzx0nb92910rcfhx55n28jgvhc0qda49scnfyifnmc31dyfqsl5qqiwhsxkrhrc6c07x69q037f1pwg06kkfd1qdzaxz7dj7kk4";
};
};
+ "chardet-0.4.2" = {
+ name = "chardet";
+ packageName = "chardet";
+ version = "0.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz";
+ sha1 = "b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2";
+ };
+ };
"charenc-0.0.2" = {
name = "charenc";
packageName = "charenc";
@@ -769,6 +985,15 @@ let
sha1 = "e2a75042a9551908bebd25b8523d5f9769d79181";
};
};
+ "ci-info-1.1.3" = {
+ name = "ci-info";
+ packageName = "ci-info";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ci-info/-/ci-info-1.1.3.tgz";
+ sha512 = "0p634fyx3kkll2blj5f5bjmz273d7ba201yi3jlrvy7p7lnmmi479d6s3khwmp9lnfrb314l4kw5dq40q60hzfnmfycqibzm3izrbs8";
+ };
+ };
"circular-append-file-1.0.1" = {
name = "circular-append-file";
packageName = "circular-append-file";
@@ -805,6 +1030,24 @@ let
sha1 = "64da3f7d56a54412e59794bd62dc35295e8f2987";
};
};
+ "cli-cursor-2.1.0" = {
+ name = "cli-cursor";
+ packageName = "cli-cursor";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz";
+ sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5";
+ };
+ };
+ "cli-spinners-1.1.0" = {
+ name = "cli-spinners";
+ packageName = "cli-spinners";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.1.0.tgz";
+ sha1 = "f1847b168844d917a671eb9d147e3df497c90d06";
+ };
+ };
"cli-table-0.3.1" = {
name = "cli-table";
packageName = "cli-table";
@@ -832,6 +1075,15 @@ let
sha1 = "a4d293ef67ebb7b88d4a4d42c0ccf00c4d1e366d";
};
};
+ "cli-width-2.2.0" = {
+ name = "cli-width";
+ packageName = "cli-width";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz";
+ sha1 = "ff19ede8a9a5e579324147b0c11f0fbcbabed639";
+ };
+ };
"cliclopts-1.1.1" = {
name = "cliclopts";
packageName = "cliclopts";
@@ -850,6 +1102,15 @@ let
sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1";
};
};
+ "clone-1.0.4" = {
+ name = "clone";
+ packageName = "clone";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz";
+ sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e";
+ };
+ };
"clone-2.0.0" = {
name = "clone";
packageName = "clone";
@@ -859,6 +1120,15 @@ let
sha1 = "df65d3ca142e4a4a47db33da3468d088a16fc76e";
};
};
+ "co-3.1.0" = {
+ name = "co";
+ packageName = "co";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/co/-/co-3.1.0.tgz";
+ sha1 = "4ea54ea5a08938153185e15210c68d9092bc1b78";
+ };
+ };
"co-4.6.0" = {
name = "co";
packageName = "co";
@@ -868,6 +1138,33 @@ let
sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
};
};
+ "co-from-stream-0.0.0" = {
+ name = "co-from-stream";
+ packageName = "co-from-stream";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/co-from-stream/-/co-from-stream-0.0.0.tgz";
+ sha1 = "1a5cd8ced77263946094fa39f2499a63297bcaf9";
+ };
+ };
+ "co-fs-extra-1.2.1" = {
+ name = "co-fs-extra";
+ packageName = "co-fs-extra";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/co-fs-extra/-/co-fs-extra-1.2.1.tgz";
+ sha1 = "3b6ad77cf2614530f677b1cf62664f5ba756b722";
+ };
+ };
+ "co-read-0.0.1" = {
+ name = "co-read";
+ packageName = "co-read";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/co-read/-/co-read-0.0.1.tgz";
+ sha1 = "f81b3eb8a86675fec51e3d883a7f564e873c9389";
+ };
+ };
"code-point-at-1.1.0" = {
name = "code-point-at";
packageName = "code-point-at";
@@ -886,6 +1183,15 @@ let
sha512 = "16fzwl2fvacbii9fby6i5cm2bz4ajaf4jdyffq1ggwnjbzjim0cbspymc9x9sf5whlzmknj7cybqaxvy5lmxlc99hm9sm6pj7wz3ya8";
};
};
+ "coffee-script-1.12.7" = {
+ name = "coffee-script";
+ packageName = "coffee-script";
+ version = "1.12.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz";
+ sha512 = "29mq40padyvizg4f141b00p0p74hx9v06d7gxk84ggsiyw6rf5bb65gnfwk1i02r276jwqybmi5hx98s943slyazjnqd69jmj389dvw";
+ };
+ };
"collection-visit-1.0.0" = {
name = "collection-visit";
packageName = "collection-visit";
@@ -931,6 +1237,15 @@ let
sha512 = "0m8vssxhc3xlx639gz68425ll6mqh0rib6yr7s2v2vg1hwnqka02zijxmg16iyvzmd5sbsczjs2mqs0n428pc1cgkgj439fsa9b1kxk";
};
};
+ "combine-errors-3.0.3" = {
+ name = "combine-errors";
+ packageName = "combine-errors";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/combine-errors/-/combine-errors-3.0.3.tgz";
+ sha1 = "f4df6740083e5703a3181110c2b10551f003da86";
+ };
+ };
"combined-stream-1.0.6" = {
name = "combined-stream";
packageName = "combined-stream";
@@ -976,6 +1291,15 @@ let
sha1 = "fd430e889832ec353b9acd1de217c11cb3eef873";
};
};
+ "commander-2.8.1" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz";
+ sha1 = "06be367febfda0c330aa1e2a072d3dc9762425d4";
+ };
+ };
"commander-2.9.0" = {
name = "commander";
packageName = "commander";
@@ -1012,13 +1336,22 @@ let
sha512 = "05nnf80j9ls12y3cw2dfnc6rmand3ya5sx9cqn9dgg19ljzdnyfjjv8ig79xi73gr2y4rkfzn9wjip2zzwp5n2d49njd3ki2a1c3cfv";
};
};
- "configstore-3.1.1" = {
+ "config-chain-1.1.11" = {
+ name = "config-chain";
+ packageName = "config-chain";
+ version = "1.1.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/config-chain/-/config-chain-1.1.11.tgz";
+ sha1 = "aba09747dfbe4c3e70e766a6e41586e1859fc6f2";
+ };
+ };
+ "configstore-3.1.2" = {
name = "configstore";
packageName = "configstore";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/configstore/-/configstore-3.1.1.tgz";
- sha512 = "2zmidvkp20q25yv6a5d7k1daawdg0w6ppgayxzpwfhyvmgwybkkv7ni0j4b2j9c8wjn8z33zf5d4bjr8jywb5qixc75vypyy87n90z6";
+ url = "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz";
+ sha512 = "2difdg3f56d584kfxl1zvm4ik5m3ln949m0q9sxq6ranzx2iwqa9zxqxy2l5i2lsm8jwmaiqkf7rc73gfnfip5m2qh8awd3s4ggknxy";
};
};
"connect-3.6.6" = {
@@ -1048,6 +1381,15 @@ let
sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
};
};
+ "consolidate-0.14.5" = {
+ name = "consolidate";
+ packageName = "consolidate";
+ version = "0.14.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/consolidate/-/consolidate-0.14.5.tgz";
+ sha1 = "5a25047bc76f73072667c8cb52c989888f494c63";
+ };
+ };
"content-type-1.0.4" = {
name = "content-type";
packageName = "content-type";
@@ -1156,6 +1498,24 @@ let
sha1 = "a230f64f568310e1498009940790ec99545bca7e";
};
};
+ "cssauron-1.4.0" = {
+ name = "cssauron";
+ packageName = "cssauron";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cssauron/-/cssauron-1.4.0.tgz";
+ sha1 = "a6602dff7e04a8306dc0db9a551e92e8b5662ad8";
+ };
+ };
+ "custom-error-instance-2.1.1" = {
+ name = "custom-error-instance";
+ packageName = "custom-error-instance";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/custom-error-instance/-/custom-error-instance-2.1.1.tgz";
+ sha1 = "3cf6391487a6629a6247eb0ca0ce00081b7e361a";
+ };
+ };
"cycle-1.0.3" = {
name = "cycle";
packageName = "cycle";
@@ -1165,6 +1525,24 @@ let
sha1 = "21e80b2be8580f98b468f379430662b046c34ad2";
};
};
+ "cycle-onionify-4.0.0" = {
+ name = "cycle-onionify";
+ packageName = "cycle-onionify";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cycle-onionify/-/cycle-onionify-4.0.0.tgz";
+ sha1 = "9aeddd88dedf6fda9fbb98b1e79ab38810b7ddda";
+ };
+ };
+ "d-1.0.0" = {
+ name = "d";
+ packageName = "d";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/d/-/d-1.0.0.tgz";
+ sha1 = "754bb5bfe55451da69a58b94d45f4c5b0462d58f";
+ };
+ };
"dag-map-1.0.2" = {
name = "dag-map";
packageName = "dag-map";
@@ -1219,13 +1597,13 @@ let
sha512 = "2lc9p062gaa2xrf07z14xqgid3rw5fg05ak3s13g3mrr5hf8zxmdvp3lq4wggj7k5pc2c43r3d4yyy7rfrqafsdm7hfisdda4zgsi1w";
};
};
- "dat-ignore-2.1.0" = {
+ "dat-ignore-2.1.1" = {
name = "dat-ignore";
packageName = "dat-ignore";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-ignore/-/dat-ignore-2.1.0.tgz";
- sha512 = "2lngf74v9m0xibm5g6lj1aj988bpmx69bd7m8b1kpzlbz7kh0binbyadaj993isk679pljasygycilmwb976bhywq8b46fgl0lmagqs";
+ url = "https://registry.npmjs.org/dat-ignore/-/dat-ignore-2.1.1.tgz";
+ sha512 = "3ars15n4l3fgvnzah15zpfzirg66clg2a72d2qawg340ad1f0xbahxgzfj52q3ib48s6k7m4a8zcpv5n3pq2blkm1dhpyz1s9d9y44d";
};
};
"dat-json-1.0.2" = {
@@ -1354,6 +1732,51 @@ let
sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
};
};
+ "decompress-4.2.0" = {
+ name = "decompress";
+ packageName = "decompress";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress/-/decompress-4.2.0.tgz";
+ sha1 = "7aedd85427e5a92dacfe55674a7c505e96d01f9d";
+ };
+ };
+ "decompress-tar-4.1.1" = {
+ name = "decompress-tar";
+ packageName = "decompress-tar";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz";
+ sha512 = "18rwwdac0961cs2xpagx8sfqysxzcvvna1bfhjd8aamgm5k6mbcr88k0qp46z1fvypvk00sc27mv0n7885cfwi525gix96659l4rli5";
+ };
+ };
+ "decompress-tarbz2-4.1.1" = {
+ name = "decompress-tarbz2";
+ packageName = "decompress-tarbz2";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz";
+ sha512 = "3s2l466xc70zvxrwsr1xr7x5sg9g9wh2wsvk81pxmhc0m73hwhfhhn63c53n6vkv8rlxs80gscrkpk8fc2mbh3j154cvbzm6wpk3kxk";
+ };
+ };
+ "decompress-targz-4.1.1" = {
+ name = "decompress-targz";
+ packageName = "decompress-targz";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz";
+ sha512 = "3gig705jrzdsihjnfij52kj17mgsclfn5vbzswqqdjd0ac4f0dy0afds02m4zm5jacnppavhydyy0rgd99prk8hkmbcisgbfxk3agz3";
+ };
+ };
+ "decompress-unzip-4.0.1" = {
+ name = "decompress-unzip";
+ packageName = "decompress-unzip";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz";
+ sha1 = "deaaccdfd14aeaf85578f733ae8210f9b4848f69";
+ };
+ };
"deep-equal-0.2.2" = {
name = "deep-equal";
packageName = "deep-equal";
@@ -1426,15 +1849,6 @@ let
sha1 = "80aec64c9d6d97e65cc2a9caa93c0aa6abf73aaa";
};
};
- "depd-1.1.1" = {
- name = "depd";
- packageName = "depd";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz";
- sha1 = "5783b4e1c459f06fa5ca27f991f3d06e7a310359";
- };
- };
"depd-1.1.2" = {
name = "depd";
packageName = "depd";
@@ -1543,13 +1957,13 @@ let
sha512 = "19g682cvkba33mwrism28hibd2nv9xd16k5bj807jx3ih1cc7ff9dn8chmfjnqgglzl6lq3m3jarxng9vbarccgchd0aq118d15yk6i";
};
};
- "dns-packet-4.1.0" = {
+ "dns-packet-4.1.1" = {
name = "dns-packet";
packageName = "dns-packet";
- version = "4.1.0";
+ version = "4.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dns-packet/-/dns-packet-4.1.0.tgz";
- sha512 = "1jkqjdbc3dchmbkg3nn7ymayqix9gh3ll3rgbqps2qc484zgkj6a2v1wgy4agybkh8719i36b6fi8mx1m4h00gvpdmhdnxx5x1r1m3h";
+ url = "https://registry.npmjs.org/dns-packet/-/dns-packet-4.1.1.tgz";
+ sha512 = "09adhjnzfiilwrksrckjrxcfi54gy5xgcsvkq24r98j0xh1asvl5iywj4p37s4l7drgysmdlkv95iki5c554gviaj4738fnlhgn42v3";
};
};
"dns-socket-1.6.3" = {
@@ -1597,6 +2011,24 @@ let
sha512 = "2wyv9brsq3dzp724y1q5z5j5ja83y834hgc193lnarfdycwz1ii3xg02qxx3dg05x3skwjm1di5s5a8hqi8l5v1afx2bia436pifhxm";
};
};
+ "download-5.0.3" = {
+ name = "download";
+ packageName = "download";
+ version = "5.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/download/-/download-5.0.3.tgz";
+ sha1 = "63537f977f99266a30eb8a2a2fbd1f20b8000f7a";
+ };
+ };
+ "download-git-repo-1.0.2" = {
+ name = "download-git-repo";
+ packageName = "download-git-repo";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/download-git-repo/-/download-git-repo-1.0.2.tgz";
+ sha512 = "21sjxnakbaz6gkw8lrk0dizw893hwawsrhaypkxph8cdf6v7gyxl8b4n82qh99v4zvzcbbxbc7ff8jzkkn91vmn0w381vzh9ypi801z";
+ };
+ };
"duplexer-0.1.1" = {
name = "duplexer";
packageName = "duplexer";
@@ -1651,6 +2083,15 @@ let
sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d";
};
};
+ "enable-1.3.2" = {
+ name = "enable";
+ packageName = "enable";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/enable/-/enable-1.3.2.tgz";
+ sha1 = "9eba6837d16d0982b59f87d889bf754443d52931";
+ };
+ };
"encodeurl-1.0.2" = {
name = "encodeurl";
packageName = "encodeurl";
@@ -1669,6 +2110,51 @@ let
sha512 = "3cjrpi6n5i6gf8jaiwg31y2xkgx59szhhcj9myqwmdw16s9r6yvwznxd2lhqf96mpm6knyb3w2bcnksg5nzkrq6iada0k6nvdj2pjfl";
};
};
+ "es5-ext-0.10.42" = {
+ name = "es5-ext";
+ packageName = "es5-ext";
+ version = "0.10.42";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.42.tgz";
+ sha512 = "1412ssfrx1kvraz8kp4x9lc1jzcdh2952vbmlimrfalmbjv44rh504ihb4fg5mjwx8ix1f1wii0a0qngwrfk4gl271mcywgp7b4x700";
+ };
+ };
+ "es6-iterator-2.0.3" = {
+ name = "es6-iterator";
+ packageName = "es6-iterator";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz";
+ sha1 = "a7de889141a05a94b0854403b2d0a0fbfa98f3b7";
+ };
+ };
+ "es6-map-0.1.5" = {
+ name = "es6-map";
+ packageName = "es6-map";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz";
+ sha1 = "9136e0503dcc06a301690f0bb14ff4e364e949f0";
+ };
+ };
+ "es6-set-0.1.5" = {
+ name = "es6-set";
+ packageName = "es6-set";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz";
+ sha1 = "d2b3ec5d4d800ced818db538d28974db0a73ccb1";
+ };
+ };
+ "es6-symbol-3.1.1" = {
+ name = "es6-symbol";
+ packageName = "es6-symbol";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz";
+ sha1 = "bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77";
+ };
+ };
"escape-html-1.0.3" = {
name = "escape-html";
packageName = "escape-html";
@@ -1714,6 +2200,15 @@ let
sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887";
};
};
+ "event-emitter-0.3.5" = {
+ name = "event-emitter";
+ packageName = "event-emitter";
+ version = "0.3.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz";
+ sha1 = "df8c69eef1647923c7157b9ce83840610b02cc39";
+ };
+ };
"event-stream-3.3.4" = {
name = "event-stream";
packageName = "event-stream";
@@ -1804,6 +2299,15 @@ let
sha1 = "26a71aaf073b39fb2127172746131c2704028db8";
};
};
+ "external-editor-2.1.0" = {
+ name = "external-editor";
+ packageName = "external-editor";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/external-editor/-/external-editor-2.1.0.tgz";
+ sha512 = "366albydy3glqs8h6y7rdpdhmyffn7vaig5snw8cb1zmn22mgvfywr08jfbmqjiqc9pyjyaaqv6xz5sfy2j1y18590l4f8mji7j53hk";
+ };
+ };
"extglob-0.3.2" = {
name = "extglob";
packageName = "extglob";
@@ -1867,6 +2371,15 @@ let
sha1 = "d303ccbfee02a9a56a3493fb08bcb59691aa53b1";
};
};
+ "fd-slicer-1.0.1" = {
+ name = "fd-slicer";
+ packageName = "fd-slicer";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz";
+ sha1 = "8b5bcbd9ec327c5041bf9ab023fd6750f1177e65";
+ };
+ };
"figures-1.7.0" = {
name = "figures";
packageName = "figures";
@@ -1876,6 +2389,42 @@ let
sha1 = "cbe1e3affcf1cd44b80cadfed28dc793a9701d2e";
};
};
+ "figures-2.0.0" = {
+ name = "figures";
+ packageName = "figures";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz";
+ sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962";
+ };
+ };
+ "file-type-3.9.0" = {
+ name = "file-type";
+ packageName = "file-type";
+ version = "3.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz";
+ sha1 = "257a078384d1db8087bc449d107d52a52672b9e9";
+ };
+ };
+ "file-type-5.2.0" = {
+ name = "file-type";
+ packageName = "file-type";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz";
+ sha1 = "2ddbea7c73ffe36368dfae49dc338c058c2b8ad6";
+ };
+ };
+ "file-type-6.2.0" = {
+ name = "file-type";
+ packageName = "file-type";
+ version = "6.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz";
+ sha512 = "0xf8ry7jj1c5mvvp5qxidq3qcqxzdngx1q9r981ddq3wfcidwqd4h52hplv462hvm9frdl086advhfqfxbnvwm8ass3knby6l217xv0";
+ };
+ };
"filename-regex-2.0.1" = {
name = "filename-regex";
packageName = "filename-regex";
@@ -1885,6 +2434,24 @@ let
sha1 = "c1c4b9bee3e09725ddb106b75c1e301fe2f18b26";
};
};
+ "filename-reserved-regex-2.0.0" = {
+ name = "filename-reserved-regex";
+ packageName = "filename-reserved-regex";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz";
+ sha1 = "abf73dfab735d045440abfea2d91f389ebbfa229";
+ };
+ };
+ "filenamify-2.0.0" = {
+ name = "filenamify";
+ packageName = "filenamify";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/filenamify/-/filenamify-2.0.0.tgz";
+ sha1 = "bd162262c0b6e94bfbcdcf19a3bbb3764f785695";
+ };
+ };
"fill-range-2.2.3" = {
name = "fill-range";
packageName = "fill-range";
@@ -2047,6 +2614,15 @@ let
sha1 = "d4e4342a96675cb7846633a6099249332b539952";
};
};
+ "fs-extra-0.26.7" = {
+ name = "fs-extra";
+ packageName = "fs-extra";
+ version = "0.26.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz";
+ sha1 = "9ae1fdd94897798edab76d0918cf42d0c3184fa9";
+ };
+ };
"fs-minipass-1.2.5" = {
name = "fs-minipass";
packageName = "fs-minipass";
@@ -2092,6 +2668,24 @@ let
sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7";
};
};
+ "get-proxy-2.1.0" = {
+ name = "get-proxy";
+ packageName = "get-proxy";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz";
+ sha512 = "0kjf4p1krvzah7k5yngvvc39b7jnkzqlp3cdab8451zh1q4mxmav111dmycnadv28ja2wvcwvavjl7w550ja7qyw4dx976n0illhrnf";
+ };
+ };
+ "get-stream-2.3.1" = {
+ name = "get-stream";
+ packageName = "get-stream";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz";
+ sha1 = "5f38f93f346009666ee0150a054167f91bdd95de";
+ };
+ };
"get-stream-3.0.0" = {
name = "get-stream";
packageName = "get-stream";
@@ -2119,6 +2713,15 @@ let
sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
};
};
+ "git-clone-0.1.0" = {
+ name = "git-clone";
+ packageName = "git-clone";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/git-clone/-/git-clone-0.1.0.tgz";
+ sha1 = "0d76163778093aef7f1c30238f2a9ef3f07a2eb9";
+ };
+ };
"glob-3.2.11" = {
name = "glob";
packageName = "glob";
@@ -2227,6 +2830,15 @@ let
sha512 = "0w1lx3hms5mx84mlxsgpvjr42qba17wwqhma0np67c9l8smkd2nwx7gr8724a2q1z7x0hjdjnwzx81893mj2ax498wl7y1h4yl5pysy";
};
};
+ "gray-matter-2.1.1" = {
+ name = "gray-matter";
+ packageName = "gray-matter";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz";
+ sha1 = "3042d9adec2a1ded6a7707a9ed2380f8a17a430e";
+ };
+ };
"growl-1.10.3" = {
name = "growl";
packageName = "growl";
@@ -2308,6 +2920,33 @@ let
sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd";
};
};
+ "has-generators-1.0.1" = {
+ name = "has-generators";
+ packageName = "has-generators";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-generators/-/has-generators-1.0.1.tgz";
+ sha1 = "a6a2e55486011940482e13e2c93791c449acf449";
+ };
+ };
+ "has-symbol-support-x-1.4.2" = {
+ name = "has-symbol-support-x";
+ packageName = "has-symbol-support-x";
+ version = "1.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz";
+ sha512 = "0kljkjnsw7jnqm8dpf05rd7a59xjfwlbmp1qxs5kdda78zwwqfpkq5ryc2510iyam6v5vbyy0h7bpkwqadajq1ag2zaa7dymyyhwfnx";
+ };
+ };
+ "has-to-string-tag-x-1.4.1" = {
+ name = "has-to-string-tag-x";
+ packageName = "has-to-string-tag-x";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz";
+ sha512 = "0bqvhd628h3lrsydbp1xllh7jp23c58j7d4z0x0v9ddffindkk1zfrqmzm28z47ipjp0zxlmzvmlzk98zf9mzjsc47bmp1ydizcmmmx";
+ };
+ };
"has-unicode-2.0.1" = {
name = "has-unicode";
packageName = "has-unicode";
@@ -2380,13 +3019,13 @@ let
sha512 = "1y8kprb3qldxqj31zai5n8dvhydsl9nn5w4rskhnbzzhldn6pm6n5lcyam3sfkb61a62d5m58k8im7z6ngwbd9cw9zp4zm4y7ckrf20";
};
};
- "http-errors-1.6.2" = {
+ "http-errors-1.6.3" = {
name = "http-errors";
packageName = "http-errors";
- version = "1.6.2";
+ version = "1.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz";
- sha1 = "0a002cc85707192a7e7946ceedc11155f60ec736";
+ url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz";
+ sha1 = "8b55680bb4be283a0b5bf4ea2e38580be1d9320d";
};
};
"http-methods-0.1.0" = {
@@ -2407,22 +3046,22 @@ let
sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
};
};
- "hypercore-6.12.5" = {
+ "hypercore-6.12.7" = {
name = "hypercore";
packageName = "hypercore";
- version = "6.12.5";
+ version = "6.12.7";
src = fetchurl {
- url = "https://registry.npmjs.org/hypercore/-/hypercore-6.12.5.tgz";
- sha512 = "247lnm7sq3fx7ihflpp3pmrdd47hpl68y0ifmg2jmaw4kn745s3i9m9r6c1kmzq4i14zb3k251xhq1s0vldc1yxa9wkvial78cn27hz";
+ url = "https://registry.npmjs.org/hypercore/-/hypercore-6.12.7.tgz";
+ sha512 = "28wgk53py46wrcp8h8xkirakbc3v64r1aaqnl0g0ivp9x7791wkga63mbjl0cdsa3yif0cvbp8djwcpzx0smfyyqkdz7skjdgsbg57j";
};
};
- "hypercore-protocol-6.6.2" = {
+ "hypercore-protocol-6.6.4" = {
name = "hypercore-protocol";
packageName = "hypercore-protocol";
- version = "6.6.2";
+ version = "6.6.4";
src = fetchurl {
- url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.6.2.tgz";
- sha512 = "3d62qzd0spz8j902qgvjg4wqr2bcjhvrxhg12a44x3rv0dwn9n0l78bgz8cghbsiwk36bivz7wsyf0fdpgif9a41yyi81mslf8wkdmf";
+ url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.6.4.tgz";
+ sha512 = "0rxj8d4lp45q7v3wwwv23m7qi84vw3wvyafqiy9x5f9lqkynq8v8yajpq9bcnc935927qjnxajn8n0cyhg0fqjnpywlfyxgxczkndgm";
};
};
"hyperdrive-9.12.3" = {
@@ -2479,6 +3118,15 @@ let
sha1 = "c6019a7595f2cefca702eab694a010bcd9298d20";
};
};
+ "ieee754-1.1.11" = {
+ name = "ieee754";
+ packageName = "ieee754";
+ version = "1.1.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.11.tgz";
+ sha512 = "0g5x1ijy37vzfz46pnh03mxkmdb9d2qd9f8ncy49xj4j9xkks9p0x8s5hnyc7grwh6sryk118rd7w7wz6w0hzyw9agwnavvlc4g642n";
+ };
+ };
"ignore-by-default-1.0.1" = {
name = "ignore-by-default";
packageName = "ignore-by-default";
@@ -2551,6 +3199,15 @@ let
sha1 = "ea25e4ce69ca145e05c99e46dcfec05e4012594a";
};
};
+ "inquirer-3.3.0" = {
+ name = "inquirer";
+ packageName = "inquirer";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz";
+ sha512 = "1wsmzzva3rfjb4bfks7ba2nvha9ziwgq2kag6xxibc5cc6mz19xbgj4fm3a7ghvfbfx4am0x13ibc8j2s5m3sv12nph44rq56gnvv47";
+ };
+ };
"ip-1.1.5" = {
name = "ip";
packageName = "ip";
@@ -2560,6 +3217,15 @@ let
sha1 = "bdded70114290828c0a039e72ef25f5aaec4354a";
};
};
+ "is-3.2.1" = {
+ name = "is";
+ packageName = "is";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is/-/is-3.2.1.tgz";
+ sha1 = "d0ac2ad55eb7b0bec926a5266f6c662aaa83dca5";
+ };
+ };
"is-accessor-descriptor-0.1.6" = {
name = "is-accessor-descriptor";
packageName = "is-accessor-descriptor";
@@ -2596,6 +3262,15 @@ let
sha512 = "3kr8dm9qyklmm2xyiz75s8db90bfilfals4x0g276kncihrrrz0ar4y6dqpvc7pwy7h43jay1bayi1r62x97nzvcswkk4ap18pl1irm";
};
};
+ "is-ci-1.1.0" = {
+ name = "is-ci";
+ packageName = "is-ci";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-ci/-/is-ci-1.1.0.tgz";
+ sha512 = "0m66alrh568wj40xwshf8q99gsjfk1jr0czp4jc2sm519wfzzzprkl5zjvw2r5h49p72d50ywj9qg67dnyazq0ijy4flgny2b1ygd3k";
+ };
+ };
"is-data-descriptor-0.1.4" = {
name = "is-data-descriptor";
packageName = "is-data-descriptor";
@@ -2758,6 +3433,15 @@ let
sha1 = "307a855b3cf1a938b44ea70d2c61106053714f34";
};
};
+ "is-natural-number-4.0.1" = {
+ name = "is-natural-number";
+ packageName = "is-natural-number";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz";
+ sha1 = "ab9d76e1db4ced51e35de0c72ebecf09f734cde8";
+ };
+ };
"is-npm-1.0.0" = {
name = "is-npm";
packageName = "is-npm";
@@ -2803,6 +3487,15 @@ let
sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f";
};
};
+ "is-object-1.0.1" = {
+ name = "is-object";
+ packageName = "is-object";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz";
+ sha1 = "8952688c5ec2ffd6b03ecc85e769e02903083470";
+ };
+ };
"is-odd-2.0.0" = {
name = "is-odd";
packageName = "is-odd";
@@ -2848,6 +3541,15 @@ let
sha1 = "207bab91638499c07b2adf240a41a87210034575";
};
};
+ "is-promise-2.1.0" = {
+ name = "is-promise";
+ packageName = "is-promise";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz";
+ sha1 = "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa";
+ };
+ };
"is-redirect-1.0.0" = {
name = "is-redirect";
packageName = "is-redirect";
@@ -2893,6 +3595,15 @@ let
sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
};
};
+ "is-utf8-0.2.1" = {
+ name = "is-utf8";
+ packageName = "is-utf8";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz";
+ sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72";
+ };
+ };
"is-valid-path-0.1.1" = {
name = "is-valid-path";
packageName = "is-valid-path";
@@ -2965,6 +3676,15 @@ let
sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
};
};
+ "isurl-1.0.0" = {
+ name = "isurl";
+ packageName = "isurl";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz";
+ sha512 = "3vs53bpdrwiwwcql2xs20jmd8qha27k4iypdhr0b3isgdaj18vz80nhxwvvqxk6y3x5vj3slchxl0r91gjhz487xmkkp52gridg5zyl";
+ };
+ };
"iterators-0.1.0" = {
name = "iterators";
packageName = "iterators";
@@ -3136,6 +3856,15 @@ let
sha512 = "2l91vcracq8y3nxacsssb4yhk0ww011gi5sn55wsb6bpnhyds2i1x98512f61r8awxmj602bxky6c7hsyibjvz17f1pmlf7r4whp6dk";
};
};
+ "klaw-1.3.1" = {
+ name = "klaw";
+ packageName = "klaw";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz";
+ sha1 = "4088433b46b3b1ba259d78785d8e96f73ba02439";
+ };
+ };
"last-one-wins-1.0.4" = {
name = "last-one-wins";
packageName = "last-one-wins";
@@ -3253,6 +3982,42 @@ let
sha1 = "4d31f2e7de7e134fbf2803762b8150b32519666f";
};
};
+ "lodash._baseiteratee-4.7.0" = {
+ name = "lodash._baseiteratee";
+ packageName = "lodash._baseiteratee";
+ version = "4.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._baseiteratee/-/lodash._baseiteratee-4.7.0.tgz";
+ sha1 = "34a9b5543572727c3db2e78edae3c0e9e66bd102";
+ };
+ };
+ "lodash._basetostring-4.12.0" = {
+ name = "lodash._basetostring";
+ packageName = "lodash._basetostring";
+ version = "4.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-4.12.0.tgz";
+ sha1 = "9327c9dc5158866b7fa4b9d42f4638e5766dd9df";
+ };
+ };
+ "lodash._baseuniq-4.6.0" = {
+ name = "lodash._baseuniq";
+ packageName = "lodash._baseuniq";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._baseuniq/-/lodash._baseuniq-4.6.0.tgz";
+ sha1 = "0ebb44e456814af7905c6212fa2c9b2d51b841e8";
+ };
+ };
+ "lodash._createset-4.0.3" = {
+ name = "lodash._createset";
+ packageName = "lodash._createset";
+ version = "4.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._createset/-/lodash._createset-4.0.3.tgz";
+ sha1 = "0f4659fbb09d75194fa9e2b88a6644d363c9fe26";
+ };
+ };
"lodash._createwrapper-2.4.1" = {
name = "lodash._createwrapper";
packageName = "lodash._createwrapper";
@@ -3307,6 +4072,15 @@ let
sha1 = "a6139630d76d1536b07ddc80962889b082f6a641";
};
};
+ "lodash._root-3.0.1" = {
+ name = "lodash._root";
+ packageName = "lodash._root";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz";
+ sha1 = "fba1c4524c19ee9a5f8136b4609f017cf4ded692";
+ };
+ };
"lodash._setbinddata-2.4.1" = {
name = "lodash._setbinddata";
packageName = "lodash._setbinddata";
@@ -3334,6 +4108,15 @@ let
sha1 = "745cf41a53597b18f688898544405efa2b06d90f";
};
};
+ "lodash._stringtopath-4.8.0" = {
+ name = "lodash._stringtopath";
+ packageName = "lodash._stringtopath";
+ version = "4.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._stringtopath/-/lodash._stringtopath-4.8.0.tgz";
+ sha1 = "941bcf0e64266e5fc1d66fed0a6959544c576824";
+ };
+ };
"lodash.assign-2.4.1" = {
name = "lodash.assign";
packageName = "lodash.assign";
@@ -3478,6 +4261,24 @@ let
sha1 = "c23e91b710242ac70c37f1e1cda9274cc39bf2f4";
};
};
+ "log-symbols-2.2.0" = {
+ name = "log-symbols";
+ packageName = "log-symbols";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz";
+ sha512 = "093j1mha2zwbfkb6cvxr94l1dsx44607vvyxadxki3j69s40n2f6x6iqs6f9rzpvvqd8anclsqdlrm3klkwxixm4k2fl8bjr4b01qjm";
+ };
+ };
+ "lodash.uniqby-4.5.0" = {
+ name = "lodash.uniqby";
+ packageName = "lodash.uniqby";
+ version = "4.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.5.0.tgz";
+ sha1 = "a3a17bbf62eeb6240f491846e97c1c4e2a5e1e21";
+ };
+ };
"longest-1.0.1" = {
name = "longest";
packageName = "longest";
@@ -3613,6 +4414,15 @@ let
sha1 = "f8a064760d37e7978ad5f9f6d3c119a494f57081";
};
};
+ "metalsmith-2.3.0" = {
+ name = "metalsmith";
+ packageName = "metalsmith";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/metalsmith/-/metalsmith-2.3.0.tgz";
+ sha1 = "833afbb5a2a6385e2d9ae3d935e39e33eaea5231";
+ };
+ };
"methods-1.1.2" = {
name = "methods";
packageName = "methods";
@@ -3685,6 +4495,15 @@ let
sha512 = "22krj1kw7n9z10zdyx7smcaim4bzwqsqzhspwha06q58gcrxfp93hw2cd0vk5crhq5p2dwzqlpacg32lrmp5sjzb798zdzy35mdmkwm";
};
};
+ "mimic-fn-1.2.0" = {
+ name = "mimic-fn";
+ packageName = "mimic-fn";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz";
+ sha512 = "1clrrqw75rmpkw0x53axy8va2hq2gzynz9zb58m0xv1nh3lg81cv4dfdy7pk9vrlb9ydwmj6klpicwkv2bjx3m8aj4fi2ph3jxkizwd";
+ };
+ };
"min-document-2.19.0" = {
name = "min-document";
packageName = "min-document";
@@ -3865,6 +4684,15 @@ let
sha512 = "2liv9lhcxrlp21524jzp1hxzbd07xmb7qlzma5qfn98bgn63ga0i5jalrhlz6qc08fd4jxh3hj2mi9wm14s95lip5x236052rv3i4rx";
};
};
+ "multimatch-2.1.0" = {
+ name = "multimatch";
+ packageName = "multimatch";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz";
+ sha1 = "9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b";
+ };
+ };
"multistream-2.1.0" = {
name = "multistream";
packageName = "multistream";
@@ -4000,6 +4828,15 @@ let
sha1 = "4aa7bfd43f03f0b81c9702b13d6a858ddb326f3e";
};
};
+ "next-tick-1.0.0" = {
+ name = "next-tick";
+ packageName = "next-tick";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz";
+ sha1 = "ca86d1fe8828169b0120208e3dc8424b9db8342c";
+ };
+ };
"node-gyp-build-3.3.0" = {
name = "node-gyp-build";
packageName = "node-gyp-build";
@@ -4009,13 +4846,13 @@ let
sha512 = "0vkilw1ghsjca0lrj9gsdgsi8wj4bvpfr25q1qzx1kp5hhvjdhapmvpmrd2hikwq9dxydw6sdvv0730wwvmsg36xqf0hgp9777l3ns8";
};
};
- "nodemon-1.17.2" = {
+ "nodemon-1.17.3" = {
name = "nodemon";
packageName = "nodemon";
- version = "1.17.2";
+ version = "1.17.3";
src = fetchurl {
- url = "https://registry.npmjs.org/nodemon/-/nodemon-1.17.2.tgz";
- sha512 = "21s43bf7rf7cgnff0spwl9hnzvnqf5gwd11k4dg70pp5vh1kkkf03zzcbali25iazcifw8xbqh8mqnsggap6kpn7x3p0slr0rzdamxz";
+ url = "https://registry.npmjs.org/nodemon/-/nodemon-1.17.3.tgz";
+ sha512 = "1i6m13ad9c1p8xilw0vjcgmj0nnk1y9b3lncx6kwljxw89hmk5z9vv8m452wfd5qg9bqf9r0b236d9vxbc3i2sx2flamfrr03xm42zh";
};
};
"nopt-1.0.10" = {
@@ -4063,6 +4900,15 @@ let
sha512 = "0xk8ky1cjf8q2wkbgfzplpn04sm9xnl6i71dwnc29rfh8m2glan5nd6l4k3q7ikci7xpwfpcmyy3frr873zndjmhbr344grkyh3f907";
};
};
+ "npm-conf-1.1.3" = {
+ name = "npm-conf";
+ packageName = "npm-conf";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz";
+ sha512 = "1rx44jzcf3byibrwmgyr0598hng4snjfj9bx29xm7bi5y1bqkbvb2krh8z0ccpzv3aps71qwrq55a56l1qkzlan118xyfn9j5nkh9v2";
+ };
+ };
"npm-packlist-1.1.10" = {
name = "npm-packlist";
packageName = "npm-packlist";
@@ -4198,6 +5044,15 @@ let
sha1 = "a1f7838f8314c516f05ecefcbc4ccfe04b4ed789";
};
};
+ "onetime-2.0.1" = {
+ name = "onetime";
+ packageName = "onetime";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz";
+ sha1 = "067428230fd67443b2794b22bba528b6867962d4";
+ };
+ };
"optimist-0.6.1" = {
name = "optimist";
packageName = "optimist";
@@ -4216,6 +5071,15 @@ let
sha1 = "75e75a96506611eb1c65ba89018ff08a981e2c16";
};
};
+ "ora-1.4.0" = {
+ name = "ora";
+ packageName = "ora";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ora/-/ora-1.4.0.tgz";
+ sha512 = "2kz616isg6vqp95rsja7fc47k22qipv9b44dhsyxsl7x95ly9j17dwn8dxq8adyhw6ap1nlpfg2dk8v6r7b2m8r61v3ikriwh6bbhl8";
+ };
+ };
"os-homedir-1.0.2" = {
name = "os-homedir";
packageName = "os-homedir";
@@ -4360,6 +5224,15 @@ let
sha1 = "fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445";
};
};
+ "pend-1.2.0" = {
+ name = "pend";
+ packageName = "pend";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz";
+ sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50";
+ };
+ };
"performance-now-2.1.0" = {
name = "performance-now";
packageName = "performance-now";
@@ -4369,6 +5242,15 @@ let
sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
};
};
+ "pify-2.3.0" = {
+ name = "pify";
+ packageName = "pify";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz";
+ sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c";
+ };
+ };
"pify-3.0.0" = {
name = "pify";
packageName = "pify";
@@ -4378,6 +5260,24 @@ let
sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176";
};
};
+ "pinkie-2.0.4" = {
+ name = "pinkie";
+ packageName = "pinkie";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz";
+ sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870";
+ };
+ };
+ "pinkie-promise-2.0.1" = {
+ name = "pinkie-promise";
+ packageName = "pinkie-promise";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz";
+ sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa";
+ };
+ };
"pkginfo-0.3.1" = {
name = "pkginfo";
packageName = "pkginfo";
@@ -4486,6 +5386,15 @@ let
sha1 = "8e57123c396ab988897fb327fd3aedc3e735e4fe";
};
};
+ "proto-list-1.2.4" = {
+ name = "proto-list";
+ packageName = "proto-list";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz";
+ sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849";
+ };
+ };
"protocol-buffers-encodings-1.1.0" = {
name = "protocol-buffers-encodings";
packageName = "protocol-buffers-encodings";
@@ -4603,6 +5512,15 @@ let
sha512 = "3waqapyj1k4g135sgj636rmswiaixq19is1rw0rpv4qp6k7dl0a9nwy06m7yl5lbdk9p6xpwwngnggbzlzaz6rh11c86j2nvnnf273r";
};
};
+ "raf-3.3.2" = {
+ name = "raf";
+ packageName = "raf";
+ version = "3.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raf/-/raf-3.3.2.tgz";
+ sha1 = "0c13be0b5b49b46f76d6669248d527cf2b02fe27";
+ };
+ };
"random-access-file-2.0.1" = {
name = "random-access-file";
packageName = "random-access-file";
@@ -4684,6 +5602,15 @@ let
sha1 = "b3da19bd052431a97671d44a42634adf710b40c4";
};
};
+ "read-metadata-1.0.0" = {
+ name = "read-metadata";
+ packageName = "read-metadata";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-metadata/-/read-metadata-1.0.0.tgz";
+ sha1 = "6df9cbe51184e8ceb7d0668b40ee5191e6f3dac6";
+ };
+ };
"readable-stream-1.0.27-1" = {
name = "readable-stream";
packageName = "readable-stream";
@@ -4729,13 +5656,22 @@ let
sha1 = "41059608ffc154757b715d9989d199ffbf372e35";
};
};
- "recursive-watch-1.1.3" = {
+ "recursive-readdir-2.2.2" = {
+ name = "recursive-readdir";
+ packageName = "recursive-readdir";
+ version = "2.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz";
+ sha512 = "0bb5d70l5lg02x515r2klvjhhz6xcxdb4ykbx16wq45l822bbsdd8sbki7vb28j17xr7181fmwlzhx3bizvr5xdq6cxpv53sidrq44x";
+ };
+ };
+ "recursive-watch-1.1.4" = {
name = "recursive-watch";
packageName = "recursive-watch";
- version = "1.1.3";
+ version = "1.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/recursive-watch/-/recursive-watch-1.1.3.tgz";
- sha512 = "3m0s8140jpamg1xxdlsslshx10qznb889s6yc8av6vvqbs56banhmjqy9lgl7g4ppsrsja0d2lhb5lacl3nxm8ggsrpdd7xqf53hvzx";
+ url = "https://registry.npmjs.org/recursive-watch/-/recursive-watch-1.1.4.tgz";
+ sha512 = "0yks7j98w5d3y375fb99kfbb8rz5qz72v6ld5i15h7fds1i02fq027w82ipanv3dkgvvrxyybw1v8lyrcs54h9airzv12sbcw1a6rvx";
};
};
"reduce-component-1.0.1" = {
@@ -4846,6 +5782,15 @@ let
sha1 = "34661f46886327fed2991479152252df92daa541";
};
};
+ "restore-cursor-2.0.0" = {
+ name = "restore-cursor";
+ packageName = "restore-cursor";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz";
+ sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf";
+ };
+ };
"ret-0.1.15" = {
name = "ret";
packageName = "ret";
@@ -4891,6 +5836,15 @@ let
sha1 = "c8ad4a5e110661e402a7d21b530e009f25f8e389";
};
};
+ "run-async-2.3.0" = {
+ name = "run-async";
+ packageName = "run-async";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz";
+ sha1 = "0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0";
+ };
+ };
"rusha-0.8.13" = {
name = "rusha";
packageName = "rusha";
@@ -4909,6 +5863,24 @@ let
sha1 = "19ce502ca572665f3b647b10939f97fd1615f102";
};
};
+ "rx-lite-4.0.8" = {
+ name = "rx-lite";
+ packageName = "rx-lite";
+ version = "4.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz";
+ sha1 = "0b1e11af8bc44836f04a6407e92da42467b79444";
+ };
+ };
+ "rx-lite-aggregates-4.0.8" = {
+ name = "rx-lite-aggregates";
+ packageName = "rx-lite-aggregates";
+ version = "4.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz";
+ sha1 = "753b87a89a11c95467c4ac1626c4efc4e05c67be";
+ };
+ };
"safe-buffer-5.1.1" = {
name = "safe-buffer";
packageName = "safe-buffer";
@@ -4945,6 +5917,15 @@ let
sha512 = "1dn291mjsda42w8kldlbmngk6dhjxfbvvd5lckyqmwbjaj6069iq3wx0nvcfglwnpddz2qa93lzf4hv77iz43bd2qixa079sjzl799n";
};
};
+ "seek-bzip-1.0.5" = {
+ name = "seek-bzip";
+ packageName = "seek-bzip";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.5.tgz";
+ sha1 = "cfe917cb3d274bcffac792758af53173eb1fabdc";
+ };
+ };
"semver-5.3.0" = {
name = "semver";
packageName = "semver";
@@ -5026,13 +6007,22 @@ let
sha512 = "1xdxg14zh452ih8f7826ki7xpq8wk8a831pm5zngqf8cbc4qv6mr9npks863bfqylfrhm161whf9199rmqn4i12wzmz2ks69z3343c7";
};
};
- "setprototypeof-1.0.3" = {
+ "setimmediate-1.0.5" = {
+ name = "setimmediate";
+ packageName = "setimmediate";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz";
+ sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285";
+ };
+ };
+ "setprototypeof-1.1.0" = {
name = "setprototypeof";
packageName = "setprototypeof";
- version = "1.0.3";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz";
- sha1 = "66567e37043eeb4f04d91bd658c0cbefb55b8e04";
+ url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz";
+ sha512 = "2jlhhawfqdiga1m6if01ks1q3yx56k5vj6wf372589vkswvdflw7224viivxali56b0jjsckpmjy10rj6fcakhw2dbq2psr197kzw86";
};
};
"shebang-command-1.2.0" = {
@@ -5125,6 +6115,24 @@ let
sha512 = "1xd3zsk02nck4y601rn98n8cicrphaw5bdix278mk1yizmjv9s0wpa6akcqggd7d99c55s3byf4ylqdxkshyfsfnfx7lvwbmq2b3siw";
};
};
+ "snabbdom-0.7.0" = {
+ name = "snabbdom";
+ packageName = "snabbdom";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snabbdom/-/snabbdom-0.7.0.tgz";
+ sha512 = "3bh1m1ymhqqcm0mlxy5ja4xhcrryczvjda6jf8k6km9fx655x1wn7gx85i9rqds6wr1nwzccrdq72d5wn1274lxkzwy1n39gya3la1c";
+ };
+ };
+ "snabbdom-selector-1.2.1" = {
+ name = "snabbdom-selector";
+ packageName = "snabbdom-selector";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snabbdom-selector/-/snabbdom-selector-1.2.1.tgz";
+ sha512 = "3d51vgryfsxmpva2m93ca6z130m6vh4aiii2r9w7wkibrqy6z5zjyr2p26lmghn8msdfi1yvg9hfjq573q45vazzy2my9hivqb3ck43";
+ };
+ };
"snapdragon-0.8.2" = {
name = "snapdragon";
packageName = "snapdragon";
@@ -5170,13 +6178,13 @@ let
sha512 = "3451wvpagbw2ib50galmlfrb5za3zh0ml1irbm2ijd0lbjblg9va4fnag6sfs7msb1m0i5zicz93jwp90c22v0n40qzpczhicg85jah";
};
};
- "sodium-native-2.1.4" = {
+ "sodium-native-2.1.5" = {
name = "sodium-native";
packageName = "sodium-native";
- version = "2.1.4";
+ version = "2.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/sodium-native/-/sodium-native-2.1.4.tgz";
- sha512 = "3d3bbjycbpplxgjpfz78vqr8g8hp62j37hr4c3vym7ax36qzxqan73fmqw2i3wd8ix65ysdlzbnzhrs3634ngp840gfpmm9alarc80j";
+ url = "https://registry.npmjs.org/sodium-native/-/sodium-native-2.1.5.tgz";
+ sha512 = "3cwd4rvsggx0lzc7433v6321fjs65q9nqr3c9gcz7j51ca580aq6ciacmmq788yxb3ih78b1fkpkprm75d0hadj3ng2bznc6qsl1var";
};
};
"sodium-universal-2.0.0" = {
@@ -5197,6 +6205,15 @@ let
sha512 = "209rl01n6lwbsxl40lmh1v38sad3d94s0mjb4mz6r3wwwhzcahibr8m2fhlqgsjgzf3dja9wyhz7qjkw39gxlwpapyid2whs4nrzbnf";
};
};
+ "sorted-immutable-list-1.1.0" = {
+ name = "sorted-immutable-list";
+ packageName = "sorted-immutable-list";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sorted-immutable-list/-/sorted-immutable-list-1.1.0.tgz";
+ sha1 = "41a62c024bd755c4c57306e20eec92620dae5d97";
+ };
+ };
"sorted-indexof-1.0.0" = {
name = "sorted-indexof";
packageName = "sorted-indexof";
@@ -5314,6 +6331,15 @@ let
sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0";
};
};
+ "stat-mode-0.2.2" = {
+ name = "stat-mode";
+ packageName = "stat-mode";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stat-mode/-/stat-mode-0.2.2.tgz";
+ sha1 = "e6c80b623123d7d80cf132ce538f346289072502";
+ };
+ };
"static-extend-0.1.2" = {
name = "static-extend";
packageName = "static-extend";
@@ -5476,6 +6502,15 @@ let
sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
};
};
+ "strip-dirs-2.1.0" = {
+ name = "strip-dirs";
+ packageName = "strip-dirs";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz";
+ sha512 = "3gd7bh1h7xjvl8y6lj1mmsv4qpgbxd620fbp2cjlnc3b9gn7wnzbs1170gs7i6y5arm0dd09y8d74vr357gvwmx9f0616wbw8wv3q14";
+ };
+ };
"strip-eof-1.0.0" = {
name = "strip-eof";
packageName = "strip-eof";
@@ -5494,6 +6529,15 @@ let
sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a";
};
};
+ "strip-outer-1.0.1" = {
+ name = "strip-outer";
+ packageName = "strip-outer";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz";
+ sha512 = "31a8vlzg4gwak3cx7n0lask77xyqpf5mz4ckphc10ykmb9r2lais7v4w8a8xij9lv2115xjnl7avkwp2l7cw3kbc3lpjsghl72757lk";
+ };
+ };
"subcommand-2.1.0" = {
name = "subcommand";
packageName = "subcommand";
@@ -5602,6 +6646,15 @@ let
sha1 = "e39fae3d581d713682491e1926cd87bf2c209bfb";
};
};
+ "symbol-observable-1.2.0" = {
+ name = "symbol-observable";
+ packageName = "symbol-observable";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz";
+ sha512 = "1fxqjwdn747lxzkxrwhbw8arc9czdig47izx5hnzk22z8k7rnw00q8vcpy8v7a3xyamavwgg4mvjkpn2ihjiyjxjnhx2ihiryf39pbv";
+ };
+ };
"tar-2.2.1" = {
name = "tar";
packageName = "tar";
@@ -5620,6 +6673,15 @@ let
sha512 = "33gymcvk33znj1lscj0kds60g5jzagw2dcx1fcbpxz85pi21kqlazvwz579p301x0vqvir1nslh901zq28sfx2zpsnd7qldvjpzbsrv";
};
};
+ "tar-stream-1.5.5" = {
+ name = "tar-stream";
+ packageName = "tar-stream";
+ version = "1.5.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar-stream/-/tar-stream-1.5.5.tgz";
+ sha512 = "219gn10gvilrq6h3yshbhn25fx46n0wlgg66h0v326jhzz8gmpxsinb8bnhx1py35z0cv2248v91k2vy6vmkajmvpmkfmizywn601wr";
+ };
+ };
"term-size-1.2.0" = {
name = "term-size";
packageName = "term-size";
@@ -5656,6 +6718,24 @@ let
sha1 = "0004569b37c7c74ba39c43f3ced78d1ad94140be";
};
};
+ "thunkify-2.1.2" = {
+ name = "thunkify";
+ packageName = "thunkify";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thunkify/-/thunkify-2.1.2.tgz";
+ sha1 = "faa0e9d230c51acc95ca13a361ac05ca7e04553d";
+ };
+ };
+ "thunkify-wrap-1.0.4" = {
+ name = "thunkify-wrap";
+ packageName = "thunkify-wrap";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thunkify-wrap/-/thunkify-wrap-1.0.4.tgz";
+ sha1 = "b52be548ddfefda20e00b58c6096762b43dd6880";
+ };
+ };
"thunky-0.1.0" = {
name = "thunky";
packageName = "thunky";
@@ -5674,6 +6754,15 @@ let
sha1 = "a862e018e3fb1ea2ec3fce5d55605cf57f247371";
};
};
+ "tildify-1.2.0" = {
+ name = "tildify";
+ packageName = "tildify";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tildify/-/tildify-1.2.0.tgz";
+ sha1 = "dcec03f55dca9b7aa3e5b04f21817eb56e63588a";
+ };
+ };
"timed-out-4.0.1" = {
name = "timed-out";
packageName = "timed-out";
@@ -5683,6 +6772,15 @@ let
sha1 = "f32eacac5a175bea25d7fab565ab3ed8741ef56f";
};
};
+ "tmp-0.0.33" = {
+ name = "tmp";
+ packageName = "tmp";
+ version = "0.0.33";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz";
+ sha512 = "0drg2bck1cj8677rgs1l98v7vqaxawcqh6ja87qilwnd719l5y0lzv5ssn3pcwa37fdbg4188y6x15a90vkllyvfpd9v7fai2b8j44d";
+ };
+ };
"to-buffer-1.1.0" = {
name = "to-buffer";
packageName = "to-buffer";
@@ -5737,6 +6835,15 @@ let
sha512 = "0c9ayp39hvxd1lzl6cxvsxcys0jzfb698i3as3xrw3n9zpxwmx4sqwisv63bfsmdl10c6v4inpj5kvckhlr3nd3ny1pj264r0qags0l";
};
};
+ "toml-2.3.3" = {
+ name = "toml";
+ packageName = "toml";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/toml/-/toml-2.3.3.tgz";
+ sha512 = "16a6xk2s4y4llqya2gjgwzlvb0512sw8ahxfd4b225j2sd9i52zca1w65d69wd7frzhcz2ak3gf3r3y9ws727b5gnp1n7wh2j3gkciv";
+ };
+ };
"touch-3.1.0" = {
name = "touch";
packageName = "touch";
@@ -5782,6 +6889,15 @@ let
sha1 = "5858547f6b290757ee95cccc666fb50084c460dd";
};
};
+ "trim-repeated-1.0.0" = {
+ name = "trim-repeated";
+ packageName = "trim-repeated";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz";
+ sha1 = "e3646a2ea4e891312bf7eace6cfb05380bc01c21";
+ };
+ };
"truncate-utf8-bytes-1.0.2" = {
name = "truncate-utf8-bytes";
packageName = "truncate-utf8-bytes";
@@ -5854,6 +6970,15 @@ let
sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7";
};
};
+ "uid-0.0.2" = {
+ name = "uid";
+ packageName = "uid";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uid/-/uid-0.0.2.tgz";
+ sha1 = "5e4a5d4b78138b4f70f89fd3c76fc59aa9d2f103";
+ };
+ };
"uint64be-2.0.2" = {
name = "uint64be";
packageName = "uint64be";
@@ -5863,6 +6988,15 @@ let
sha512 = "34jzmdzz81fdi4s48rxr9dzs63iln7w6y9d44ckq6nvxd6v7y0wpc6x90zc2md21ddc1abfwk5h20py3s79bzhknqqphkchj6z9s2pm";
};
};
+ "unbzip2-stream-1.2.5" = {
+ name = "unbzip2-stream";
+ packageName = "unbzip2-stream";
+ version = "1.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.2.5.tgz";
+ sha512 = "0xgvidx384p6cc8zh4m0qq000cn140dsckkijf95ka6iqi9j5nsrjrrf3mr3gxnybcvf2l4hxkaf0j7cqxncm3lnpq4ripw2j7zfc4b";
+ };
+ };
"undefsafe-2.0.2" = {
name = "undefsafe";
packageName = "undefsafe";
@@ -5953,6 +7087,15 @@ let
sha1 = "7f1f302055b3fea0f3e81dc78eb36766cb65e3f1";
};
};
+ "unyield-0.0.1" = {
+ name = "unyield";
+ packageName = "unyield";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unyield/-/unyield-0.0.1.tgz";
+ sha1 = "150e65da42bf7742445b958a64eb9b85d1d2b180";
+ };
+ };
"unzip-response-2.0.1" = {
name = "unzip-response";
packageName = "unzip-response";
@@ -5971,13 +7114,13 @@ let
sha512 = "0xw24ba88hfvwwgniyn17n26av45g1pxqf095231065l4n9dp5w3hyc7azjd8sqyix7pnfx1pmr44fzmwwazkz0ly83cp214g4qk13p";
};
};
- "update-notifier-2.3.0" = {
+ "update-notifier-2.4.0" = {
name = "update-notifier";
packageName = "update-notifier";
- version = "2.3.0";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.3.0.tgz";
- sha1 = "4e8827a6bb915140ab093559d7014e3ebb837451";
+ url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.4.0.tgz";
+ sha1 = "f9b4c700fbfd4ec12c811587258777d563d8c866";
};
};
"uri-js-3.0.2" = {
@@ -6007,6 +7150,15 @@ let
sha1 = "7af8f303645e9bd79a272e7a14ac68bc0609da73";
};
};
+ "url-to-options-1.0.1" = {
+ name = "url-to-options";
+ packageName = "url-to-options";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz";
+ sha1 = "1505a03a289a48cbd7a434efbaeec5055f5633a9";
+ };
+ };
"use-3.1.0" = {
name = "use";
packageName = "use";
@@ -6016,6 +7168,15 @@ let
sha512 = "01m2fmv6pc6r5zgjxdb31sx9vhii5ahpwmdn89mpqcvh5f0kpjn6zpmh5qj8m2yhf8s3g6ygwnlccg0j2g36kcjvp16rynbrx048hp9";
};
};
+ "user-home-2.0.0" = {
+ name = "user-home";
+ packageName = "user-home";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz";
+ sha1 = "9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f";
+ };
+ };
"utf8-byte-length-1.0.4" = {
name = "utf8-byte-length";
packageName = "utf8-byte-length";
@@ -6079,6 +7240,15 @@ let
sha1 = "1c14479b40f1397a75782f115e4086447433a200";
};
};
+ "validate-npm-package-name-3.0.0" = {
+ name = "validate-npm-package-name";
+ packageName = "validate-npm-package-name";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz";
+ sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e";
+ };
+ };
"validator-9.4.1" = {
name = "validator";
packageName = "validator";
@@ -6088,6 +7258,15 @@ let
sha512 = "2f2x8zxh7czpkf33h5x8fvj48rfszyhkar554x5c2hw7qlsbdqjqvv6nczzsfkw6z5rj6gqabxhcg8haip0xgz7sn4jr6fi7f7llpk1";
};
};
+ "variable-diff-1.1.0" = {
+ name = "variable-diff";
+ packageName = "variable-diff";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/variable-diff/-/variable-diff-1.1.0.tgz";
+ sha1 = "d2bd5c66db76c13879d96e6a306edc989df978da";
+ };
+ };
"varint-3.0.1" = {
name = "varint";
packageName = "varint";
@@ -6124,6 +7303,15 @@ let
sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
};
};
+ "ware-1.3.0" = {
+ name = "ware";
+ packageName = "ware";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ware/-/ware-1.3.0.tgz";
+ sha1 = "d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4";
+ };
+ };
"which-1.3.0" = {
name = "which";
packageName = "which";
@@ -6151,6 +7339,15 @@ let
sha1 = "0142a4e8a243f8882c0233aa0e0281aa76152273";
};
};
+ "win-fork-1.1.1" = {
+ name = "win-fork";
+ packageName = "win-fork";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/win-fork/-/win-fork-1.1.1.tgz";
+ sha1 = "8f58e0656fca00adc8c86a2b89e3cd2d6a2d5e5e";
+ };
+ };
"window-size-0.1.0" = {
name = "window-size";
packageName = "window-size";
@@ -6196,6 +7393,15 @@ let
sha1 = "288a04d87eda5c286e060dfe8f135ce8d007f8ba";
};
};
+ "wrap-fn-0.1.5" = {
+ name = "wrap-fn";
+ packageName = "wrap-fn";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wrap-fn/-/wrap-fn-0.1.5.tgz";
+ sha1 = "f21b6e41016ff4a7e31720dbc63a09016bdf9845";
+ };
+ };
"wrappy-1.0.2" = {
name = "wrappy";
packageName = "wrappy";
@@ -6241,6 +7447,15 @@ let
sha512 = "35rg34yxk4ag0qclk7bqxirgr3dgypcvkisqqj2g3y0ma16pkfy81iv79pcwff5p4spygwjh2m9v37llq7367fypqrx89s9kscwal43";
};
};
+ "xstream-11.2.0" = {
+ name = "xstream";
+ packageName = "xstream";
+ version = "11.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xstream/-/xstream-11.2.0.tgz";
+ sha512 = "2jnrf16561zx9hsvlb8d48ca9qwdh9wxcbkwhkjvp5r88b8pcfjlx2g58k9w5kjs0kw660rw6hj2zhvdsznyf0ic9mj682xz6hf7kfh";
+ };
+ };
"xtend-4.0.1" = {
name = "xtend";
packageName = "xtend";
@@ -6268,6 +7483,15 @@ let
sha1 = "8452b4bb7e83c7c188d8041c1a837c773d6d8bb9";
};
};
+ "yaml-js-0.0.8" = {
+ name = "yaml-js";
+ packageName = "yaml-js";
+ version = "0.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yaml-js/-/yaml-js-0.0.8.tgz";
+ sha1 = "87cfa5a9613f48e26005420d6a8ee0da6fe8daec";
+ };
+ };
"yargs-3.10.0" = {
name = "yargs";
packageName = "yargs";
@@ -6277,6 +7501,15 @@ let
sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1";
};
};
+ "yauzl-2.9.1" = {
+ name = "yauzl";
+ packageName = "yauzl";
+ version = "2.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yauzl/-/yauzl-2.9.1.tgz";
+ sha1 = "a81981ea70a57946133883f029c5821a89359a7f";
+ };
+ };
"z-schema-3.19.1" = {
name = "z-schema";
packageName = "z-schema";
@@ -6292,10 +7525,10 @@ in
bower = nodeEnv.buildNodePackage {
name = "bower";
packageName = "bower";
- version = "1.8.2";
+ version = "1.8.4";
src = fetchurl {
- url = "https://registry.npmjs.org/bower/-/bower-1.8.2.tgz";
- sha1 = "adf53529c8d4af02ef24fb8d5341c1419d33e2f7";
+ url = "https://registry.npmjs.org/bower/-/bower-1.8.4.tgz";
+ sha1 = "e7876a076deb8137f7d06525dc5e8c66db82f28a";
};
buildInputs = globalBuildInputs;
meta = {
@@ -6323,6 +7556,141 @@ in
production = true;
bypassCache = true;
};
+ create-cycle-app = nodeEnv.buildNodePackage {
+ name = "create-cycle-app";
+ packageName = "create-cycle-app";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/create-cycle-app/-/create-cycle-app-4.0.0.tgz";
+ sha512 = "28v46s87z1qgi46mn0kdhw77dnra3pkhr7nlf4d6dxl46l9aba1hm1wqz2dxhr0g3pwqav8pg5c1qdxkr18ybvlkmhbkyyz0pp13y51";
+ };
+ dependencies = [
+ sources."@cycle/dom-18.3.0"
+ sources."@cycle/http-14.9.0"
+ sources."@cycle/isolate-3.2.0"
+ sources."@cycle/run-3.4.0"
+ (sources."@cycle/time-0.10.1" // {
+ dependencies = [
+ sources."chalk-1.1.3"
+ ];
+ })
+ sources."@types/node-9.6.1"
+ sources."@types/superagent-3.5.6"
+ sources."ansi-escapes-3.1.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."asynckit-0.4.0"
+ (sources."chalk-2.3.2" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."supports-color-5.3.0"
+ ];
+ })
+ sources."chardet-0.4.2"
+ sources."cli-cursor-2.1.0"
+ sources."cli-width-2.2.0"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."combine-errors-3.0.3"
+ sources."combined-stream-1.0.6"
+ sources."component-emitter-1.2.1"
+ sources."cookiejar-2.1.1"
+ sources."core-util-is-1.0.2"
+ sources."cross-spawn-5.1.0"
+ sources."cssauron-1.4.0"
+ sources."custom-error-instance-2.1.1"
+ sources."cycle-onionify-4.0.0"
+ sources."d-1.0.0"
+ sources."debug-3.1.0"
+ sources."delayed-stream-1.0.0"
+ sources."es5-ext-0.10.42"
+ sources."es6-iterator-2.0.3"
+ sources."es6-map-0.1.5"
+ sources."es6-set-0.1.5"
+ sources."es6-symbol-3.1.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."event-emitter-0.3.5"
+ sources."extend-3.0.1"
+ sources."external-editor-2.1.0"
+ sources."figures-2.0.0"
+ sources."form-data-2.3.2"
+ sources."formidable-1.2.1"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-3.0.0"
+ sources."iconv-lite-0.4.19"
+ sources."inherits-2.0.3"
+ (sources."inquirer-3.3.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-promise-2.1.0"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."lodash-4.17.5"
+ sources."lodash._baseiteratee-4.7.0"
+ sources."lodash._basetostring-4.12.0"
+ sources."lodash._baseuniq-4.6.0"
+ sources."lodash._createset-4.0.3"
+ sources."lodash._root-3.0.1"
+ sources."lodash._stringtopath-4.8.0"
+ sources."lodash.uniqby-4.5.0"
+ sources."lru-cache-4.1.2"
+ sources."methods-1.1.2"
+ sources."mime-1.6.0"
+ sources."mime-db-1.33.0"
+ sources."mime-types-2.1.18"
+ sources."mimic-fn-1.2.0"
+ sources."minimist-1.2.0"
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.7"
+ sources."next-tick-1.0.0"
+ sources."object-assign-4.1.1"
+ sources."onetime-2.0.1"
+ sources."os-tmpdir-1.0.2"
+ sources."performance-now-2.1.0"
+ sources."process-nextick-args-2.0.0"
+ sources."pseudomap-1.0.2"
+ sources."qs-6.5.1"
+ sources."raf-3.3.2"
+ sources."readable-stream-2.3.5"
+ sources."restore-cursor-2.0.0"
+ sources."run-async-2.3.0"
+ sources."rx-lite-4.0.8"
+ sources."rx-lite-aggregates-4.0.8"
+ sources."safe-buffer-5.1.1"
+ sources."setimmediate-1.0.5"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."snabbdom-0.7.0"
+ sources."snabbdom-selector-1.2.1"
+ sources."sorted-immutable-list-1.1.0"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.0.3"
+ sources."strip-ansi-3.0.1"
+ sources."superagent-3.8.2"
+ sources."supports-color-2.0.0"
+ sources."symbol-observable-1.2.0"
+ sources."through-2.3.8"
+ sources."tmp-0.0.33"
+ sources."util-deprecate-1.0.2"
+ sources."variable-diff-1.1.0"
+ sources."which-1.3.0"
+ sources."xstream-11.2.0"
+ sources."yallist-2.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Create Cycle.js with no build configuration.";
+ homepage = "https://github.com/cyclejs-community/create-cycle-app#readme";
+ license = "ISC";
+ };
+ production = true;
+ bypassCache = true;
+ };
dat = nodeEnv.buildNodePackage {
name = "dat";
packageName = "dat";
@@ -6373,7 +7741,7 @@ in
sources."buffer-alloc-1.1.0"
sources."buffer-alloc-unsafe-1.0.0"
sources."buffer-equals-1.0.4"
- sources."buffer-fill-0.1.0"
+ sources."buffer-fill-0.1.1"
sources."buffer-from-1.0.0"
sources."buffer-indexof-1.1.1"
sources."bulk-write-stream-1.1.4"
@@ -6415,7 +7783,7 @@ in
];
})
sources."dat-encoding-5.0.1"
- sources."dat-ignore-2.1.0"
+ sources."dat-ignore-2.1.1"
(sources."dat-json-1.0.2" // {
dependencies = [
sources."dat-encoding-4.0.2"
@@ -6467,7 +7835,7 @@ in
];
})
sources."dns-discovery-5.6.1"
- sources."dns-packet-4.1.0"
+ sources."dns-packet-4.1.1"
sources."dns-socket-3.0.0"
sources."dns-txt-2.0.2"
sources."dom-walk-0.1.1"
@@ -6506,12 +7874,12 @@ in
sources."hoek-4.2.1"
sources."http-methods-0.1.0"
sources."http-signature-1.2.0"
- (sources."hypercore-6.12.5" // {
+ (sources."hypercore-6.12.7" // {
dependencies = [
sources."varint-5.0.0"
];
})
- sources."hypercore-protocol-6.6.2"
+ sources."hypercore-protocol-6.6.4"
(sources."hyperdrive-9.12.3" // {
dependencies = [
sources."varint-4.0.1"
@@ -6632,7 +8000,7 @@ in
sources."range-parser-1.2.0"
sources."read-1.0.7"
sources."readable-stream-2.3.5"
- sources."recursive-watch-1.1.3"
+ sources."recursive-watch-1.1.4"
sources."regex-cache-0.4.4"
sources."remove-trailing-separator-1.1.0"
sources."repeat-element-1.1.2"
@@ -6648,7 +8016,7 @@ in
sources."slice-ansi-1.0.0"
sources."sntp-2.1.0"
sources."sodium-javascript-0.5.5"
- sources."sodium-native-2.1.4"
+ sources."sodium-native-2.1.5"
sources."sodium-universal-2.0.0"
sources."sorted-array-functions-1.1.0"
sources."sorted-indexof-1.0.0"
@@ -7044,10 +8412,10 @@ in
pnpm = nodeEnv.buildNodePackage {
name = "pnpm";
packageName = "pnpm";
- version = "1.36.1";
+ version = "1.37.3";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-1.36.1.tgz";
- sha1 = "43537276c39cc2d9e749d1fd7a3c159b2db39877";
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-1.37.3.tgz";
+ sha1 = "592f62fb50633506494bd683a0533a95520ef968";
};
buildInputs = globalBuildInputs;
meta = {
@@ -7115,6 +8483,307 @@ in
production = true;
bypassCache = true;
};
+ vue-cli = nodeEnv.buildNodePackage {
+ name = "vue-cli";
+ packageName = "vue-cli";
+ version = "2.9.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vue-cli/-/vue-cli-2.9.3.tgz";
+ sha512 = "1wljsr8srayqg7crbbczi00v31q3dxm3vz4fjcdqasdgsm1ajc9gham6sinsxlraniwg4dn5b1kmpw0nln63cy3v02vib07shyvq2ki";
+ };
+ dependencies = [
+ sources."absolute-0.0.1"
+ sources."ajv-5.5.2"
+ sources."align-text-0.1.4"
+ sources."amdefine-1.0.1"
+ sources."ansi-escapes-3.1.0"
+ sources."ansi-red-0.1.1"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.1"
+ sources."ansi-wrap-0.1.0"
+ sources."argparse-1.0.10"
+ sources."array-differ-1.0.0"
+ sources."array-union-1.0.2"
+ sources."array-uniq-1.0.3"
+ sources."arrify-1.0.1"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."async-2.6.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-0.0.8"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."bl-1.2.2"
+ sources."bluebird-3.5.1"
+ sources."boom-4.3.1"
+ sources."brace-expansion-1.1.11"
+ sources."buffer-3.6.0"
+ sources."buffer-crc32-0.2.13"
+ sources."builtins-1.0.3"
+ sources."camelcase-1.2.1"
+ sources."capture-stack-trace-1.0.0"
+ sources."caseless-0.12.0"
+ (sources."caw-2.0.1" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
+ sources."center-align-0.1.3"
+ sources."chalk-2.3.2"
+ sources."chardet-0.4.2"
+ sources."cli-cursor-2.1.0"
+ sources."cli-spinners-1.1.0"
+ sources."cli-width-2.2.0"
+ sources."cliui-2.1.0"
+ sources."clone-1.0.4"
+ sources."co-3.1.0"
+ sources."co-from-stream-0.0.0"
+ sources."co-fs-extra-1.2.1"
+ sources."co-read-0.0.1"
+ sources."coffee-script-1.12.7"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.15.1"
+ sources."concat-map-0.0.1"
+ sources."config-chain-1.1.11"
+ sources."consolidate-0.14.5"
+ sources."core-util-is-1.0.2"
+ sources."create-error-class-3.0.2"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."dashdash-1.14.1"
+ sources."decamelize-1.2.0"
+ (sources."decompress-4.2.0" // {
+ dependencies = [
+ sources."file-type-3.9.0"
+ sources."get-stream-2.3.1"
+ ];
+ })
+ sources."decompress-tar-4.1.1"
+ sources."decompress-tarbz2-4.1.1"
+ sources."decompress-targz-4.1.1"
+ sources."decompress-unzip-4.0.1"
+ sources."delayed-stream-1.0.0"
+ (sources."download-5.0.3" // {
+ dependencies = [
+ sources."file-type-5.2.0"
+ ];
+ })
+ (sources."download-git-repo-1.0.2" // {
+ dependencies = [
+ sources."commander-2.8.1"
+ sources."file-type-6.2.0"
+ ];
+ })
+ sources."duplexer3-0.1.4"
+ sources."ecc-jsbn-0.1.1"
+ sources."enable-1.3.2"
+ sources."end-of-stream-1.4.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."esprima-4.0.0"
+ sources."extend-3.0.1"
+ sources."extend-shallow-2.0.1"
+ sources."external-editor-2.1.0"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fd-slicer-1.0.1"
+ sources."figures-2.0.0"
+ sources."file-type-5.2.0"
+ sources."filename-reserved-regex-2.0.0"
+ sources."filenamify-2.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."fs-extra-0.26.7"
+ sources."fs.realpath-1.0.0"
+ sources."get-proxy-2.1.0"
+ sources."get-stream-3.0.0"
+ sources."getpass-0.1.7"
+ sources."git-clone-0.1.0"
+ sources."glob-7.1.2"
+ sources."got-6.7.1"
+ sources."graceful-fs-4.1.11"
+ sources."graceful-readlink-1.0.1"
+ sources."gray-matter-2.1.1"
+ (sources."handlebars-4.0.11" // {
+ dependencies = [
+ sources."async-1.5.2"
+ sources."wordwrap-0.0.2"
+ ];
+ })
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-3.0.0"
+ sources."has-generators-1.0.1"
+ sources."has-symbol-support-x-1.4.2"
+ sources."has-to-string-tag-x-1.4.1"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.1"
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.19"
+ sources."ieee754-1.1.11"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."inquirer-3.3.0"
+ sources."is-3.2.1"
+ sources."is-buffer-1.1.6"
+ sources."is-extendable-0.1.1"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-natural-number-4.0.1"
+ sources."is-object-1.0.1"
+ sources."is-promise-2.1.0"
+ sources."is-redirect-1.0.0"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-stream-1.1.0"
+ sources."is-typedarray-1.0.0"
+ sources."is-utf8-0.2.1"
+ sources."isarray-1.0.0"
+ sources."isstream-0.1.2"
+ sources."isurl-1.0.0"
+ sources."js-yaml-3.11.0"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonfile-2.4.0"
+ sources."jsprim-1.4.1"
+ sources."kind-of-3.2.2"
+ sources."klaw-1.3.1"
+ sources."lazy-cache-1.0.4"
+ sources."lodash-4.17.5"
+ sources."log-symbols-2.2.0"
+ sources."longest-1.0.1"
+ sources."lowercase-keys-1.0.1"
+ (sources."make-dir-1.2.0" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
+ (sources."metalsmith-2.3.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."chalk-1.1.3"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ ];
+ })
+ sources."mime-db-1.33.0"
+ sources."mime-types-2.1.18"
+ sources."mimic-fn-1.2.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."multimatch-2.1.0"
+ sources."mute-stream-0.0.7"
+ sources."npm-conf-1.1.3"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."optimist-0.6.1"
+ sources."ora-1.4.0"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."path-is-absolute-1.0.1"
+ sources."pend-1.2.0"
+ sources."performance-now-2.1.0"
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."prepend-http-1.0.4"
+ sources."process-nextick-args-2.0.0"
+ sources."proto-list-1.2.4"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."read-metadata-1.0.0"
+ sources."readable-stream-2.3.5"
+ sources."recursive-readdir-2.2.2"
+ sources."repeat-string-1.6.1"
+ (sources."request-2.85.0" // {
+ dependencies = [
+ sources."co-4.6.0"
+ ];
+ })
+ sources."restore-cursor-2.0.0"
+ sources."right-align-0.1.3"
+ sources."rimraf-2.6.2"
+ sources."run-async-2.3.0"
+ sources."rx-lite-4.0.8"
+ sources."rx-lite-aggregates-4.0.8"
+ sources."safe-buffer-5.1.1"
+ sources."seek-bzip-1.0.5"
+ sources."semver-5.5.0"
+ sources."signal-exit-3.0.2"
+ sources."sntp-2.1.0"
+ sources."source-map-0.4.4"
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.14.1"
+ sources."stat-mode-0.2.2"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-4.0.0"
+ sources."strip-dirs-2.1.0"
+ sources."strip-outer-1.0.1"
+ sources."supports-color-5.3.0"
+ sources."tar-stream-1.5.5"
+ sources."through-2.3.8"
+ sources."thunkify-2.1.2"
+ sources."thunkify-wrap-1.0.4"
+ sources."tildify-1.2.0"
+ sources."timed-out-4.0.1"
+ sources."tmp-0.0.33"
+ sources."toml-2.3.3"
+ sources."tough-cookie-2.3.4"
+ sources."trim-repeated-1.0.0"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ (sources."uglify-js-2.8.29" // {
+ dependencies = [
+ sources."source-map-0.5.7"
+ ];
+ })
+ sources."uglify-to-browserify-1.0.2"
+ sources."uid-0.0.2"
+ sources."unbzip2-stream-1.2.5"
+ sources."unyield-0.0.1"
+ sources."unzip-response-2.0.1"
+ sources."url-parse-lax-1.0.0"
+ sources."url-to-options-1.0.1"
+ sources."user-home-2.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.2.1"
+ sources."validate-npm-package-name-3.0.0"
+ sources."verror-1.10.0"
+ sources."ware-1.3.0"
+ sources."win-fork-1.1.1"
+ sources."window-size-0.1.0"
+ sources."wordwrap-0.0.3"
+ sources."wrap-fn-0.1.5"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
+ sources."yaml-js-0.0.8"
+ sources."yargs-3.10.0"
+ sources."yauzl-2.9.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A simple CLI for scaffolding Vue.js projects.";
+ homepage = "https://github.com/vuejs/vue-cli#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
swagger = nodeEnv.buildNodePackage {
name = "swagger";
packageName = "swagger";
@@ -7158,7 +8827,7 @@ in
sources."async-1.5.2"
sources."async-each-1.0.1"
sources."asynckit-0.4.0"
- sources."atob-2.0.3"
+ sources."atob-2.1.0"
sources."balanced-match-1.0.0"
(sources."base-0.11.2" // {
dependencies = [
@@ -7202,6 +8871,7 @@ in
sources."is-extendable-1.0.1"
];
})
+ sources."ci-info-1.1.3"
(sources."class-utils-0.3.6" // {
dependencies = [
sources."define-property-0.2.5"
@@ -7221,7 +8891,7 @@ in
sources."component-emitter-1.2.1"
sources."concat-map-0.0.1"
sources."concat-stream-1.6.2"
- sources."configstore-3.1.1"
+ sources."configstore-3.1.2"
sources."connect-3.6.6"
sources."content-type-1.0.4"
sources."cookiejar-2.1.1"
@@ -7298,11 +8968,7 @@ in
sources."has-flag-3.0.0"
sources."has-value-1.0.0"
sources."has-values-1.0.0"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- ];
- })
+ sources."http-errors-1.6.3"
sources."iconv-lite-0.4.8"
sources."ignore-by-default-1.0.1"
sources."import-lazy-2.1.0"
@@ -7314,6 +8980,7 @@ in
sources."is-accessor-descriptor-1.0.0"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
+ sources."is-ci-1.1.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-extendable-1.0.1"
@@ -7436,7 +9103,7 @@ in
sources."nan-2.10.0"
sources."nanomatch-1.2.9"
sources."native-promise-only-0.8.1"
- (sources."nodemon-1.17.2" // {
+ (sources."nodemon-1.17.3" // {
dependencies = [
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
@@ -7538,7 +9205,7 @@ in
})
sources."set-immediate-shim-1.0.1"
sources."set-value-2.0.0"
- sources."setprototypeof-1.0.3"
+ sources."setprototypeof-1.1.0"
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."sigmund-1.0.1"
@@ -7662,7 +9329,7 @@ in
})
sources."unzip-response-2.0.1"
sources."upath-1.0.4"
- sources."update-notifier-2.3.0"
+ sources."update-notifier-2.4.0"
sources."uri-js-3.0.2"
sources."urix-0.1.0"
sources."url-parse-lax-1.0.0"
@@ -7714,4 +9381,4 @@ in
production = true;
bypassCache = true;
};
-}
\ No newline at end of file
+}
diff --git a/pkgs/development/ocaml-modules/extlib/default.nix b/pkgs/development/ocaml-modules/extlib/default.nix
index 6c2cb894b54..e1c56bf7ebe 100644
--- a/pkgs/development/ocaml-modules/extlib/default.nix
+++ b/pkgs/development/ocaml-modules/extlib/default.nix
@@ -3,11 +3,11 @@
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.11";
stdenv.mkDerivation {
- name = "ocaml-extlib-1.7.2";
+ name = "ocaml-extlib-1.7.4";
src = fetchurl {
- url = http://ygrek.org.ua/p/release/ocaml-extlib/extlib-1.7.2.tar.gz;
- sha256 = "0r7mhfgh6n5chj9r12s2x1fxrzvh6nm8h80ykl1mr75j86za41bm";
+ url = http://ygrek.org.ua/p/release/ocaml-extlib/extlib-1.7.4.tar.gz;
+ sha256 = "18jb4rvkk6p3mqnkamwb41x8q49shgn43h020bs4cp4vac7nrhnr";
};
buildInputs = [ ocaml findlib cppo ];
diff --git a/pkgs/development/ocaml-modules/lwt/default.nix b/pkgs/development/ocaml-modules/lwt/default.nix
index 53ba904f628..37bcff375ea 100644
--- a/pkgs/development/ocaml-modules/lwt/default.nix
+++ b/pkgs/development/ocaml-modules/lwt/default.nix
@@ -1,57 +1,36 @@
-{ stdenv, buildOcaml, fetchzip, which, cryptopp, ocaml, findlib, ocamlbuild, camlp4
-, react, ssl, libev, pkgconfig, ncurses, glib
-, ppx_tools, result, cppo
-, ppxSupport ? stdenv.lib.versionAtLeast ocaml.version "4.02"
-, version ? if stdenv.lib.versionAtLeast ocaml.version "4.02" then "2.7.1" else "2.6.0"
+{ stdenv, fetchzip, pkgconfig, ncurses, libev, jbuilder
+, ocaml, findlib, camlp4, cppo
+, ocaml-migrate-parsetree, ppx_tools_versioned, result
}:
-if !stdenv.lib.versionAtLeast ocaml.version "4"
-then throw "lwt is not available for OCaml ${ocaml.version}"
-else
-
-let sha256 = {
- "3.0.0" = "0wwhnl9hppixcsdisinj1wmffx0nv6hkpm01z9qvkngkrazi3i88";
- "2.7.1" = "0w7f59havrl2fsnvs84lm7wlqpsrldg80gy5afpnpr21zkw22g8w";
- "2.6.0" = "0f1h83zh60rspm4fxd96z9h5bkhq1n1q968hgq92sq4a6bfi1c2w";
-}."${version}"; in
-
-let optionals = stdenv.lib.optionals (!stdenv.lib.versionAtLeast version "3"); in
-
-buildOcaml rec {
- name = "lwt";
- inherit version;
+stdenv.mkDerivation rec {
+ version = "3.3.0";
+ name = "ocaml${ocaml.version}-lwt-${version}";
src = fetchzip {
url = "https://github.com/ocsigen/lwt/archive/${version}.tar.gz";
- inherit sha256;
+ sha256 = "0n87hcyl4svy0risj439wyfq6bl77qxq3nraqgdr1qbz5lskbq2j";
};
+ preConfigure = ''
+ ocaml src/util/configure.ml -use-libev true -use-camlp4 true
+ '';
+
nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ which cryptopp ocaml findlib ocamlbuild glib ncurses camlp4 cppo ]
- ++ stdenv.lib.optional ppxSupport ppx_tools;
+ buildInputs = [ ncurses ocaml findlib jbuilder camlp4 cppo
+ ocaml-migrate-parsetree ppx_tools_versioned ];
+ propagatedBuildInputs = [ libev result ];
- propagatedBuildInputs = [ result ]
- ++ optionals [ react ssl ]
- ++ [ libev ];
+ installPhase = ''
+ ocaml src/util/install_filter.ml
+ ${jbuilder.installPhase}
+ '';
- configureScript = "ocaml setup.ml -configure";
- prefixKey = "--prefix ";
- configureFlags =
- optionals [ "--enable-glib" "--enable-ssl" "--enable-react" ]
- ++ [ "--enable-camlp4" ]
- ++ [ (if ppxSupport then "--enable-ppx" else "--disable-ppx") ];
-
- createFindlibDestdir = true;
-
- hasSharedObjects = true;
-
- meta = with stdenv.lib; {
- homepage = http://ocsigen.org/lwt;
- description = "Lightweight thread library for Objective Caml";
- license = licenses.lgpl21;
- platforms = ocaml.meta.platforms or [];
- maintainers = with maintainers; [
- z77z vbgl gal_bolle
- ];
+ meta = {
+ homepage = "https://ocsigen.org/lwt/";
+ description = "A cooperative threads library for OCaml";
+ maintainers = [ stdenv.lib.maintainers.vbgl ];
+ license = stdenv.lib.licenses.lgpl21;
+ inherit (ocaml.meta) platforms;
};
}
diff --git a/pkgs/development/ocaml-modules/lwt/legacy.nix b/pkgs/development/ocaml-modules/lwt/legacy.nix
new file mode 100644
index 00000000000..53ba904f628
--- /dev/null
+++ b/pkgs/development/ocaml-modules/lwt/legacy.nix
@@ -0,0 +1,57 @@
+{ stdenv, buildOcaml, fetchzip, which, cryptopp, ocaml, findlib, ocamlbuild, camlp4
+, react, ssl, libev, pkgconfig, ncurses, glib
+, ppx_tools, result, cppo
+, ppxSupport ? stdenv.lib.versionAtLeast ocaml.version "4.02"
+, version ? if stdenv.lib.versionAtLeast ocaml.version "4.02" then "2.7.1" else "2.6.0"
+}:
+
+if !stdenv.lib.versionAtLeast ocaml.version "4"
+then throw "lwt is not available for OCaml ${ocaml.version}"
+else
+
+let sha256 = {
+ "3.0.0" = "0wwhnl9hppixcsdisinj1wmffx0nv6hkpm01z9qvkngkrazi3i88";
+ "2.7.1" = "0w7f59havrl2fsnvs84lm7wlqpsrldg80gy5afpnpr21zkw22g8w";
+ "2.6.0" = "0f1h83zh60rspm4fxd96z9h5bkhq1n1q968hgq92sq4a6bfi1c2w";
+}."${version}"; in
+
+let optionals = stdenv.lib.optionals (!stdenv.lib.versionAtLeast version "3"); in
+
+buildOcaml rec {
+ name = "lwt";
+ inherit version;
+
+ src = fetchzip {
+ url = "https://github.com/ocsigen/lwt/archive/${version}.tar.gz";
+ inherit sha256;
+ };
+
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [ which cryptopp ocaml findlib ocamlbuild glib ncurses camlp4 cppo ]
+ ++ stdenv.lib.optional ppxSupport ppx_tools;
+
+ propagatedBuildInputs = [ result ]
+ ++ optionals [ react ssl ]
+ ++ [ libev ];
+
+ configureScript = "ocaml setup.ml -configure";
+ prefixKey = "--prefix ";
+ configureFlags =
+ optionals [ "--enable-glib" "--enable-ssl" "--enable-react" ]
+ ++ [ "--enable-camlp4" ]
+ ++ [ (if ppxSupport then "--enable-ppx" else "--disable-ppx") ];
+
+ createFindlibDestdir = true;
+
+ hasSharedObjects = true;
+
+ meta = with stdenv.lib; {
+ homepage = http://ocsigen.org/lwt;
+ description = "Lightweight thread library for Objective Caml";
+ license = licenses.lgpl21;
+ platforms = ocaml.meta.platforms or [];
+ maintainers = with maintainers; [
+ z77z vbgl gal_bolle
+ ];
+ };
+}
diff --git a/pkgs/development/ocaml-modules/lwt/ppx.nix b/pkgs/development/ocaml-modules/lwt/ppx.nix
new file mode 100644
index 00000000000..3cf08d06f1e
--- /dev/null
+++ b/pkgs/development/ocaml-modules/lwt/ppx.nix
@@ -0,0 +1,19 @@
+{ stdenv, jbuilder, ocaml, findlib, lwt, ppx_tools_versioned }:
+
+stdenv.mkDerivation {
+ name = "ocaml${ocaml.version}-lwt_ppx-${lwt.version}";
+
+ inherit (lwt) src;
+
+ buildInputs = [ jbuilder ocaml findlib ppx_tools_versioned ];
+
+ propagatedBuildInputs = [ lwt ];
+
+ buildPhase = "jbuilder build -p lwt_ppx";
+ installPhase = "${jbuilder.installPhase} lwt_ppx.install";
+
+ meta = {
+ description = "Ppx syntax extension for Lwt";
+ inherit (lwt.meta) license platforms homepage maintainers;
+ };
+}
diff --git a/pkgs/development/ocaml-modules/ocp-ocamlres/default.nix b/pkgs/development/ocaml-modules/ocp-ocamlres/default.nix
index bf0e98ec195..6410eb29628 100644
--- a/pkgs/development/ocaml-modules/ocp-ocamlres/default.nix
+++ b/pkgs/development/ocaml-modules/ocp-ocamlres/default.nix
@@ -1,16 +1,20 @@
-{ stdenv, fetchFromGitHub, ocaml, findlib, pprint }:
+{ stdenv, fetchFromGitHub, ocaml, findlib, astring, pprint }:
+
+if !stdenv.lib.versionAtLeast ocaml.version "4.02"
+then throw "ocp-ocamlres is not available for OCaml ${ocaml.version}"
+else
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-ocp-ocamlres-${version}";
- version = "0.3";
+ version = "0.4";
src = fetchFromGitHub {
owner = "OCamlPro";
repo = "ocp-ocamlres";
rev = "v${version}";
- sha256 = "0pm1g38f6pmch1x4pcc09ky587x5g7p7n9dfbbif8zkjqr603ixg";
+ sha256 = "0smfwrj8qhzknhzawygxi0vgl2af4vyi652fkma59rzjpvscqrnn";
};
- buildInputs = [ ocaml findlib pprint ];
+ buildInputs = [ ocaml findlib astring pprint ];
createFindlibDestdir = true;
installFlags = [ "BINDIR=$(out)/bin" ];
diff --git a/pkgs/development/ocaml-modules/ocsigen-deriving/default.nix b/pkgs/development/ocaml-modules/ocsigen-deriving/default.nix
index 65344561795..569f5081355 100644
--- a/pkgs/development/ocaml-modules/ocsigen-deriving/default.nix
+++ b/pkgs/development/ocaml-modules/ocsigen-deriving/default.nix
@@ -1,15 +1,30 @@
-{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, oasis, ocaml_optcomp, camlp4 }:
+{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, oasis, ocaml_optcomp, camlp4
+, num
+}:
-let version = "0.7.1"; in
+let param =
+ if stdenv.lib.versionAtLeast ocaml.version "4.03"
+ then {
+ version = "0.8.1";
+ sha256 = "03vzrybdpjydbpil97zmir71kpsn2yxkjnzysma7fvybk8ll4zh9";
+ buildInputs = [ num ];
+ } else {
+ version = "0.7.1";
+ sha256 = "0gg3nr3iic4rwqrcc0qvfm9x0x57zclvdsnpy0z8rv2fl5isbzms";
+ };
+in
+
+let inherit (param) version; in
stdenv.mkDerivation {
name = "ocsigen-deriving-${version}";
src = fetchzip {
url = "https://github.com/ocsigen/deriving/archive/${version}.tar.gz";
- sha256 = "0gg3nr3iic4rwqrcc0qvfm9x0x57zclvdsnpy0z8rv2fl5isbzms";
- };
+ inherit (param) sha256;
+ };
- buildInputs = [ ocaml findlib ocamlbuild oasis ocaml_optcomp camlp4 ];
+ buildInputs = [ ocaml findlib ocamlbuild oasis ocaml_optcomp camlp4 ]
+ ++ (param.buildInputs or []);
createFindlibDestdir = true;
diff --git a/pkgs/development/ocaml-modules/optcomp/META b/pkgs/development/ocaml-modules/optcomp/META
new file mode 100644
index 00000000000..8a942288f75
--- /dev/null
+++ b/pkgs/development/ocaml-modules/optcomp/META
@@ -0,0 +1,12 @@
+# OASIS_START
+# DO NOT EDIT (digest: ec844fa3189acb2a866b89a69d111ba4)
+version = "1.6"
+description = "Optional compilation with cpp-like directives"
+requires = "camlp4"
+archive(syntax, preprocessor) = "optcomp.cma"
+archive(syntax, toploop) = "optcomp.cma"
+archive(syntax, preprocessor, native) = "optcomp.cmxa"
+archive(syntax, preprocessor, native, plugin) = "optcomp.cmxs"
+exists_if = "optcomp.cma"
+# OASIS_STOP
+
diff --git a/pkgs/development/ocaml-modules/optcomp/default.nix b/pkgs/development/ocaml-modules/optcomp/default.nix
index 8953373954a..5b566137747 100644
--- a/pkgs/development/ocaml-modules/optcomp/default.nix
+++ b/pkgs/development/ocaml-modules/optcomp/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, camlp4 }:
+{ stdenv, fetchurl, fetchpatch, ocaml, findlib, ocamlbuild, camlp4 }:
stdenv.mkDerivation {
name = "ocaml-optcomp-1.6";
@@ -6,11 +6,33 @@ stdenv.mkDerivation {
url = https://github.com/diml/optcomp/archive/1.6.tar.gz;
sha256 = "0hhhb2gisah1h22zlg5iszbgqxdd7x85cwd57bd4mfkx9l7dh8jh";
};
+
+ patches =
+ let inherit (stdenv.lib) optional versionAtLeast; in
+ optional (versionAtLeast ocaml.version "4.02") (fetchpatch {
+ url = "https://github.com/diml/optcomp/commit/b7f809360c9794b383a4bc0492f6df381276b429.patch";
+ sha256 = "1n095lk94jq1rwi0l24g2wbgms7249wdd31n0ji895dr6755s93y";
+ })
+ ;
createFindlibDestdir = true;
buildInputs = [ ocaml findlib ocamlbuild camlp4 ];
+ configurePhase = ''
+ cp ${./META} META
+ '';
+
+ buildPhase = ''
+ ocamlbuild src/optcomp.cmxs src/optcomp.cma src/optcomp_o.native src/optcomp_r.native
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp _build/src/optcomp_o.native $out/bin/optcomp-o
+ cp _build/src/optcomp_r.native $out/bin/optcomp-r
+ ocamlfind install optcomp META _build/src/optcomp.{a,cma,cmxa,cmxs} _build/src/pa_optcomp.{cmi,cmx,mli}
+ '';
meta = {
homepage = https://github.com/diml/optcomp;
diff --git a/pkgs/development/ocaml-modules/pa_ounit/default.nix b/pkgs/development/ocaml-modules/pa_ounit/default.nix
index 5970aba1e50..fa4ecfcc28b 100644
--- a/pkgs/development/ocaml-modules/pa_ounit/default.nix
+++ b/pkgs/development/ocaml-modules/pa_ounit/default.nix
@@ -2,11 +2,11 @@
buildOcaml rec {
name = "pa_ounit";
- version = "112.24.00";
+ version = "113.00.00";
src = fetchurl {
url = "https://github.com/janestreet/pa_ounit/archive/${version}.tar.gz";
- sha256 = "fa04e72fe1db41e6dc64f9707cf5705cb9b957aa93265120c875c808eb9b9b96";
+ sha256 = "0vi0p2hxcrdsl0319c9s8mh9hmk2i4ir6c6vrj8axkc37zkgc437";
};
propagatedBuildInputs = [ ounit ];
diff --git a/pkgs/development/ocaml-modules/type_conv/112.01.01.nix b/pkgs/development/ocaml-modules/type_conv/112.01.01.nix
index f10884d7203..c50d08dd144 100644
--- a/pkgs/development/ocaml-modules/type_conv/112.01.01.nix
+++ b/pkgs/development/ocaml-modules/type_conv/112.01.01.nix
@@ -4,11 +4,11 @@ buildOcaml rec {
minimumSupportedOcamlVersion = "4.02";
name = "type_conv";
- version = "112.01.01";
+ version = "113.00.02";
src = fetchurl {
url = "https://github.com/janestreet/type_conv/archive/${version}.tar.gz";
- sha256 = "dbbc33b7ab420e8442d79ba4308ea6c0c16903b310d33525be18841159aa8855";
+ sha256 = "1718yl2q8zandrs4xqffkfmssfld1iz62dzcqdm925735c1x01fk";
};
meta = {
diff --git a/pkgs/development/ocaml-modules/yojson/default.nix b/pkgs/development/ocaml-modules/yojson/default.nix
index 5d751d3dc99..f494a8cf17c 100644
--- a/pkgs/development/ocaml-modules/yojson/default.nix
+++ b/pkgs/development/ocaml-modules/yojson/default.nix
@@ -3,8 +3,8 @@ let
pname = "yojson";
param =
if stdenv.lib.versionAtLeast ocaml.version "4.02" then {
- version = "1.4.0";
- sha256 = "0rzn4yihfi0psd2qmgrx5fvwpby87sqx4zws3ijf49f7wbpycccv";
+ version = "1.4.1";
+ sha256 = "0nwsfkmqpyfab4rxq76q8ff7giyanghw08094jyrp275v99zdjr9";
buildInputs = [ jbuilder ];
extra = { inherit (jbuilder) installPhase; };
} else {
diff --git a/pkgs/development/python-modules/Rtree/default.nix b/pkgs/development/python-modules/Rtree/default.nix
new file mode 100644
index 00000000000..7953829465b
--- /dev/null
+++ b/pkgs/development/python-modules/Rtree/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, buildPythonPackage, fetchPypi, libspatialindex, numpy }:
+
+buildPythonPackage rec {
+ pname = "Rtree";
+ version = "0.8.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0jc62jbcqqpjcwcly7l9zk25bg72mrxmjykpvfiscgln00qczfbc";
+ };
+
+ propagatedBuildInputs = [ libspatialindex ];
+
+ patchPhase = ''
+ substituteInPlace rtree/core.py --replace \
+ "find_library('spatialindex_c')" "'${libspatialindex}/lib/libspatialindex_c${stdenv.hostPlatform.extensions.sharedLibrary}'"
+ '';
+
+ # Tests appear to be broken due to mysterious memory unsafe issues. See #36760
+ doCheck = false;
+ checkInputs = [ numpy ];
+
+ meta = with stdenv.lib; {
+ description = "R-Tree spatial index for Python GIS";
+ homepage = https://toblerity.org/rtree/;
+ license = licenses.lgpl21;
+ maintainers = with maintainers; [ bgamari ];
+ };
+}
diff --git a/pkgs/development/python-modules/alot/default.nix b/pkgs/development/python-modules/alot/default.nix
index 67cd7eafd12..7abc56c4783 100644
--- a/pkgs/development/python-modules/alot/default.nix
+++ b/pkgs/development/python-modules/alot/default.nix
@@ -1,17 +1,22 @@
-{ stdenv, buildPythonPackage, fetchFromGitHub, isPy3k
-, notmuch, urwid, urwidtrees, twisted, python_magic, configobj, pygpgme, mock, file, gpgme}:
+{ stdenv, lib, buildPythonPackage, fetchFromGitHub, isPy3k
+, notmuch, urwid, urwidtrees, twisted, python_magic, configobj, mock, file, gpgme
+, service-identity
+, gnupg ? null, sphinx, awk ? null, procps ? null, future ? null
+, withManpage ? false }:
+
buildPythonPackage rec {
- version = "0.5.1";
pname = "alot";
+ version = "0.7";
+ outputs = [ "out" ] ++ lib.optional withManpage "man";
disabled = isPy3k;
src = fetchFromGitHub {
owner = "pazz";
- repo = pname;
- rev = "version";
- sha256 = "0ipkhc5wllfq78lg47aiq4qih0yjq8ad9xkrbgc88xk8pk9166i8";
+ repo = "alot";
+ rev = "${version}";
+ sha256 = "1y932smng7qx7ybmqw4qh75b0lv9imfs5ak9fd0qhysij8kpmdhi";
};
postPatch = ''
@@ -20,6 +25,8 @@ buildPythonPackage rec {
"themes_dir = string(default='$out/share/themes')"
'';
+ nativeBuildInputs = lib.optional withManpage sphinx;
+
propagatedBuildInputs = [
notmuch
urwid
@@ -27,21 +34,32 @@ buildPythonPackage rec {
twisted
python_magic
configobj
- pygpgme
- mock
+ service-identity
file
+ gpgme
];
- postInstall = ''
- mkdir -p $out/share
+ # some twisted tests need the network (test_env_set... )
+ doCheck = false;
+ postBuild = lib.optionalString withManpage "make -C docs man";
+
+ checkInputs = [ awk future mock gnupg procps ];
+
+ postInstall = lib.optionalString withManpage ''
+ mkdir -p $out/man
+ cp -r docs/build/man $out/man
+ ''
+ + ''
+ mkdir -p $out/share/applications
cp -r extra/themes $out/share
- wrapProgram $out/bin/alot \
- --prefix LD_LIBRARY_PATH : '${stdenv.lib.makeLibraryPath [ notmuch file gpgme ]}'
+
+ sed "s,/usr/bin,$out/bin,g" extra/alot.desktop > $out/share/applications/alot.desktop
'';
meta = with stdenv.lib; {
homepage = https://github.com/pazz/alot;
description = "Terminal MUA using notmuch mail";
+ license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ garbas ];
};
diff --git a/pkgs/development/python-modules/autopep8/default.nix b/pkgs/development/python-modules/autopep8/default.nix
index 6e58e3485ab..90d57b6c89d 100644
--- a/pkgs/development/python-modules/autopep8/default.nix
+++ b/pkgs/development/python-modules/autopep8/default.nix
@@ -2,12 +2,12 @@
buildPythonPackage rec {
pname = "autopep8";
- version = "1.3.4";
+ version = "1.3.5";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "c7be71ab0cb2f50c9c22c82f0c9acaafc6f57492c3fbfee9790c415005c2b9a5";
+ sha256 = "192bvhzi4d0claqxgzymvv7k3qnj627742bc8sgxpzjj42pd9112";
};
propagatedBuildInputs = [ pycodestyle ];
diff --git a/pkgs/development/python-modules/behave/default.nix b/pkgs/development/python-modules/behave/default.nix
index 60160b128a4..722117ba6e8 100644
--- a/pkgs/development/python-modules/behave/default.nix
+++ b/pkgs/development/python-modules/behave/default.nix
@@ -1,23 +1,22 @@
{ stdenv, fetchPypi
-, buildPythonApplication, python, pythonAtLeast
-, mock, nose, pyhamcrest
+, buildPythonApplication, isPy27, python, pythonOlder
+, mock, nose, pathpy, pyhamcrest, pytest
, glibcLocales, parse, parse-type, six
+, traceback2
}:
buildPythonApplication rec {
pname = "behave";
version = "1.2.6";
name = "${pname}-${version}";
- disabled = pythonAtLeast "3.6";
-
src = fetchPypi {
inherit pname version;
- sha256 = "b9662327aa53294c1351b0a9c369093ccec1d21026f050c3bd9b3e5cccf81a86";
+ sha256 = "11hsz365qglvpp1m1w16239c3kiw15lw7adha49lqaakm8kj6rmr";
};
- checkInputs = [ mock nose pyhamcrest ];
+ checkInputs = [ mock nose pathpy pyhamcrest pytest ];
buildInputs = [ glibcLocales ];
- propagatedBuildInputs = [ parse parse-type six ];
+ propagatedBuildInputs = [ parse parse-type six ] ++ stdenv.lib.optional (pythonOlder "3.0") traceback2;
postPatch = ''
patchShebangs bin
@@ -29,7 +28,7 @@ buildPythonApplication rec {
export LANG="en_US.UTF-8"
export LC_ALL="en_US.UTF-8"
- nosetests -x
+ pytest test tests
${python.interpreter} bin/behave -f progress3 --stop --tags='~@xfail' features/
${python.interpreter} bin/behave -f progress3 --stop --tags='~@xfail' tools/test-features/
diff --git a/pkgs/development/python-modules/bibtexparser/default.nix b/pkgs/development/python-modules/bibtexparser/default.nix
index 06d7c689e65..05ee0ea9553 100644
--- a/pkgs/development/python-modules/bibtexparser/default.nix
+++ b/pkgs/development/python-modules/bibtexparser/default.nix
@@ -1,10 +1,7 @@
{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pyparsing
-, future
-, nose
-, glibcLocales
+, buildPythonPackage, fetchFromGitHub
+, future, pyparsing
+, glibcLocales, nose
}:
buildPythonPackage rec {
@@ -19,7 +16,7 @@ buildPythonPackage rec {
sha256 = "0lmlarkfbq2hp1wa04a62245jr2mqizqsdlgilj5aq6vy92gr6ai";
};
- propagatedBuildInputs = [ pyparsing future ];
+ propagatedBuildInputs = [ future pyparsing ];
checkInputs = [ nose glibcLocales ];
diff --git a/pkgs/development/python-modules/black/default.nix b/pkgs/development/python-modules/black/default.nix
new file mode 100644
index 00000000000..f48310ceebc
--- /dev/null
+++ b/pkgs/development/python-modules/black/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, attrs, click }:
+
+buildPythonPackage rec {
+ pname = "black";
+ version = "18.4a0";
+
+ disabled = pythonOlder "3.6";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "04dffr4wmzs4vf2xj0cxp03hv04x0kk06qyzx6jjrp1mq0z3n2rr";
+ };
+
+ propagatedBuildInputs = [ attrs click ];
+
+ meta = with stdenv.lib; {
+ description = "The uncompromising Python code formatter";
+ homepage = https://github.com/ambv/black;
+ license = licenses.mit;
+ maintainers = with maintainers; [ sveitser ];
+ };
+
+}
diff --git a/pkgs/development/python-modules/celery/default.nix b/pkgs/development/python-modules/celery/default.nix
index 44613dd4e5b..7f3fb46d1e1 100644
--- a/pkgs/development/python-modules/celery/default.nix
+++ b/pkgs/development/python-modules/celery/default.nix
@@ -1,6 +1,7 @@
{ stdenv, buildPythonPackage, fetchPypi, iana-etc, libredirect,
pytest, case, kombu, billiard, pytz, anyjson, amqp, eventlet
-}:
+}:
+
buildPythonPackage rec {
pname = "celery";
version = "4.1.0";
@@ -11,11 +12,11 @@ buildPythonPackage rec {
};
# make /etc/protocols accessible to fix socket.getprotobyname('tcp') in sandbox
- preCheck = ''
+ preCheck = stdenv.lib.optionalString stdenv.isLinux ''
export NIX_REDIRECTS=/etc/protocols=${iana-etc}/etc/protocols \
LD_PRELOAD=${libredirect}/lib/libredirect.so
'';
- postCheck = ''
+ postCheck = stdenv.lib.optionalString stdenv.isLinux ''
unset NIX_REDIRECTS LD_PRELOAD
'';
diff --git a/pkgs/development/python-modules/ewmh/default.nix b/pkgs/development/python-modules/ewmh/default.nix
new file mode 100644
index 00000000000..a24d049fc22
--- /dev/null
+++ b/pkgs/development/python-modules/ewmh/default.nix
@@ -0,0 +1,23 @@
+{ lib, buildPythonPackage, fetchPypi, xlib }:
+
+buildPythonPackage rec {
+ pname = "ewmh";
+ version = "0.1.6";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0g9l14my3v8zlgq1yd8wh5gpara0qcapsfmvg7lq2lapglzhjsy5";
+ };
+
+ propagatedBuildInputs = [ xlib ];
+
+ # No tests included
+ doCheck = false;
+
+ meta = {
+ homepage = https://github.com/parkouss/pyewmh;
+ description = "An implementation of EWMH (Extended Window Manager Hints), based on Xlib";
+ license = lib.licenses.lgpl3Plus;
+ maintainers = with lib.maintainers; [ bandresen ];
+ };
+}
diff --git a/pkgs/development/python-modules/face_recognition/default.nix b/pkgs/development/python-modules/face_recognition/default.nix
index 3b9a2c15b6e..d1d8e8535a4 100644
--- a/pkgs/development/python-modules/face_recognition/default.nix
+++ b/pkgs/development/python-modules/face_recognition/default.nix
@@ -1,23 +1,23 @@
{ buildPythonPackage, fetchFromGitHub, pillow, click, dlib, numpy
-, face_recognition_models, scipy, stdenv, flake8, tox, pytest, glibcLocales
+, face_recognition_models, stdenv, flake8, tox, pytest, glibcLocales
}:
buildPythonPackage rec {
pname = "face_recognition";
- version = "1.2.1";
+ version = "1.2.2";
src = fetchFromGitHub {
repo = pname;
owner = "ageitgey";
- rev = "fe421d4acd76e8a19098e942b7bd9c3bbef6ebc4"; # no tags available in Git, pure revs are pushed to pypi
- sha256 = "0wv5qxkg7xv1cr43zhhbixaqgj08xw2l7yvwl8g3fb2kdxyndw1c";
+ rev = "v${version}";
+ sha256 = "17jnyr80j1p74gyvh1jabvwd3zsxvip2y7cjhh2g6gsjv2dpvrjv";
};
postPatch = ''
substituteInPlace setup.py --replace "flake8==2.6.0" "flake8"
'';
- propagatedBuildInputs = [ pillow click dlib numpy face_recognition_models scipy ];
+ propagatedBuildInputs = [ pillow click dlib numpy face_recognition_models ];
checkInputs = [ flake8 tox pytest glibcLocales ];
checkPhase = ''
diff --git a/pkgs/development/python-modules/gst-python/default.nix b/pkgs/development/python-modules/gst-python/default.nix
index 393d00a8176..b1d19e9f509 100644
--- a/pkgs/development/python-modules/gst-python/default.nix
+++ b/pkgs/development/python-modules/gst-python/default.nix
@@ -1,10 +1,10 @@
-{ fetchurl, stdenv, pkgconfig, python, pygobject3
+{ fetchurl, stdenv, meson, ninja, pkgconfig, python, pygobject3
, gst-plugins-base, ncurses
}:
stdenv.mkDerivation rec {
pname = "gst-python";
- version = "1.12.3";
+ version = "1.14.0";
name = "${pname}-${version}";
src = fetchurl {
@@ -12,22 +12,25 @@ stdenv.mkDerivation rec {
"${meta.homepage}/src/gst-python/${name}.tar.xz"
"mirror://gentoo/distfiles/${name}.tar.xz"
];
- sha256 = "19rb06x2m7103zwfm0plxx95gb8bp01ng04h4q9k6ii9q7g2kxf3";
+ sha256 = "1rlr6gl4lg97ng4jxh3gb2ldmywm15vwsa72nvggr8qa2l8q3fg0";
};
- patches = [ ./different-path-with-pygobject.patch ];
-
outputs = [ "out" "dev" ];
- nativeBuildInputs = [ pkgconfig python ];
+ nativeBuildInputs = [ meson ninja pkgconfig python ];
# XXX: in the Libs.private field of python3.pc
buildInputs = [ ncurses ];
- configureFlags = [
- "--with-pygi-overrides-dir=$(out)/${python.sitePackages}/gi/overrides"
+ mesonFlags = [
+ "-Dpygi-overrides-dir=${python.sitePackages}/gi/overrides"
];
+ postPatch = ''
+ chmod +x scripts/pythondetector # patchShebangs requires executable file
+ patchShebangs scripts/pythondetector
+ '';
+
propagatedBuildInputs = [ gst-plugins-base pygobject3 ];
# Needed for python.buildEnv
diff --git a/pkgs/development/python-modules/imbalanced-learn/default.nix b/pkgs/development/python-modules/imbalanced-learn/default.nix
new file mode 100644
index 00000000000..65afe116510
--- /dev/null
+++ b/pkgs/development/python-modules/imbalanced-learn/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, buildPythonPackage, fetchPypi, scikitlearn, pandas, nose, pytest }:
+
+buildPythonPackage rec {
+ pname = "imbalanced-learn";
+ version = "0.3.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1r5js9kw6rvmfvxxkfjlcxv5xn5h19qvg7d41byilxwq9kd515g4";
+ };
+
+ propagatedBuildInputs = [ scikitlearn ];
+ checkInputs = [ nose pytest pandas ];
+ checkPhase = ''
+ export HOME=$PWD
+ # skip some tests that fail because of minimal rounding errors
+ py.test imblearn --ignore=imblearn/metrics/classification.py
+ py.test doc/*.rst
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Library offering a number of re-sampling techniques commonly used in datasets showing strong between-class imbalance";
+ homepage = https://github.com/scikit-learn-contrib/imbalanced-learn;
+ license = licenses.mit;
+ };
+}
diff --git a/pkgs/development/python-modules/jieba/default.nix b/pkgs/development/python-modules/jieba/default.nix
new file mode 100644
index 00000000000..df21c0f4186
--- /dev/null
+++ b/pkgs/development/python-modules/jieba/default.nix
@@ -0,0 +1,33 @@
+{ lib, buildPythonPackage, fetchFromGitHub, glibcLocales, python, isPy3k }:
+
+buildPythonPackage rec {
+ pname = "jieba";
+ version = "0.39";
+
+ # no tests in PyPI tarball
+ src = fetchFromGitHub {
+ owner = "fxsjy";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0hbq0l1jbgcvm58qg4p37im4jl5a9igvq3wlhlk22pmbkbvqqgzs";
+ };
+
+ checkInputs = [ glibcLocales ];
+
+ # UnicodeEncodeError
+ doCheck = isPy3k;
+
+ # Citing https://github.com/fxsjy/jieba/issues/384: "testcases is in a mess"
+ # So just picking random ones that currently work
+ checkPhase = ''
+ export LC_ALL=en_US.UTF-8
+ ${python.interpreter} test/test.py
+ ${python.interpreter} test/test_tokenize.py
+ '';
+
+ meta = with lib; {
+ description = "Chinese Words Segementation Utilities";
+ homepage = https://github.com/fxsjy/jieba;
+ license = licenses.mit;
+ };
+}
diff --git a/pkgs/development/python-modules/langcodes/default.nix b/pkgs/development/python-modules/langcodes/default.nix
new file mode 100644
index 00000000000..d1d25f5407c
--- /dev/null
+++ b/pkgs/development/python-modules/langcodes/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, buildPythonPackage
+, marisa-trie
+, pythonOlder
+, fetchPypi
+, nose
+}:
+
+buildPythonPackage rec {
+ pname = "langcodes";
+ version = "1.4.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1axdiva2qglsjmnx2ak7i6hm0yhp6kbc4lcsgn8ckwy0nq1z3kr2";
+ };
+
+ propagatedBuildInputs = [ marisa-trie ];
+
+ disabled = pythonOlder "3.3";
+
+ checkInputs = [ nose ];
+
+ checkPhase = ''
+ nosetests
+ '';
+
+ meta = with lib; {
+ description = "A toolkit for working with and comparing the standardized codes for languages, such as ‘en’ for English or ‘es’ for Spanish";
+ homepage = http://github.com/LuminosoInsight/langcodes;
+ license = licenses.mit;
+ maintainers = with maintainers; [ ixxie ];
+ };
+}
diff --git a/pkgs/development/python-modules/linode-api/default.nix b/pkgs/development/python-modules/linode-api/default.nix
index 45c33f94b28..ad6b938c988 100644
--- a/pkgs/development/python-modules/linode-api/default.nix
+++ b/pkgs/development/python-modules/linode-api/default.nix
@@ -1,17 +1,17 @@
{ stdenv,
buildPythonPackage,
- fetchPypi,
+ fetchFromGitHub,
isPy3k,
pythonOlder,
lib,
requests,
future,
- enum34 }:
+ enum34,
+ mock }:
buildPythonPackage rec {
pname = "linode-api";
- version = "4.1.2b0"; # NOTE: this is a beta, and the API may change in future versions.
- name = "${pname}-${version}";
+ version = "4.1.8b1"; # NOTE: this is a beta, and the API may change in future versions.
disabled = (pythonOlder "2.7");
@@ -22,11 +22,15 @@ buildPythonPackage rec {
sed -i -e '/"enum34",/d' setup.py
'');
- doCheck = false; # This library does not have any tests at this point.
+ doCheck = true;
+ checkInputs = [ mock ];
- src = fetchPypi {
- inherit pname version;
- sha256 = "19yzyb4sbxib8yxmrqm6d8i0fm8cims56q7kiq2ana26nbcm0gr4";
+ # Sources from Pypi exclude test fixtures
+ src = fetchFromGitHub {
+ rev = "v${version}";
+ owner = "linode";
+ repo = "python-linode-api";
+ sha256 = "0qfqn92fr876dncwbkf2vhm90hnf7lwpg80hzwyzyzwz1hcngvjg";
};
meta = {
diff --git a/pkgs/development/python-modules/marisa-trie/default.nix b/pkgs/development/python-modules/marisa-trie/default.nix
new file mode 100644
index 00000000000..ad9f6d6f245
--- /dev/null
+++ b/pkgs/development/python-modules/marisa-trie/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pytestrunner
+, pytest
+, hypothesis
+}:
+
+buildPythonPackage rec {
+ pname = "marisa-trie";
+ version = "0.7.4";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1n4pxnaranbh3x2fcqxwh8j1z2918vy7i4q1z4jn75m9rkm5h8ia";
+ };
+
+ postPatch = ''
+ substituteInPlace setup.py \
+ --replace "hypothesis==" "hypothesis>="
+ '';
+
+ nativeBuildInputs = [ pytestrunner ];
+
+ checkInputs = [ pytest hypothesis ];
+
+ meta = with lib; {
+ description = "Static memory-efficient Trie-like structures for Python (2.x and 3.x) based on marisa-trie C++ library";
+ longDescription = "There are official SWIG-based Python bindings included in C++ library distribution; this package provides alternative Cython-based pip-installable Python bindings.";
+ homepage = https://github.com/kmike/marisa-trie;
+ license = licenses.mit;
+ maintainers = with maintainers; [ ixxie ];
+ };
+}
diff --git a/pkgs/development/python-modules/mecab-python3/default.nix b/pkgs/development/python-modules/mecab-python3/default.nix
new file mode 100644
index 00000000000..110d1a57c82
--- /dev/null
+++ b/pkgs/development/python-modules/mecab-python3/default.nix
@@ -0,0 +1,24 @@
+{ lib
+, buildPythonPackage
+, mecab
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+ pname = "mecab-python3";
+ version = "0.7";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "007dg4f5fby2yl7cc44x6xwvcrf2w2ifmn0rmk56ss33mhs8l6qy";
+ };
+
+ propagatedBuildInputs = [ mecab ];
+
+ meta = with lib; {
+ description = "A python wrapper for mecab: Morphological Analysis engine";
+ homepage = https://github.com/LuminosoInsight/wordfreq/;
+ license = licenses.bsd0;
+ maintainers = with maintainers; [ ixxie ];
+ };
+}
diff --git a/pkgs/development/python-modules/mock-open/default.nix b/pkgs/development/python-modules/mock-open/default.nix
new file mode 100644
index 00000000000..edb3407270f
--- /dev/null
+++ b/pkgs/development/python-modules/mock-open/default.nix
@@ -0,0 +1,22 @@
+{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder, mock }:
+
+buildPythonPackage rec {
+ pname = "mock-open";
+ version = "1.3.1";
+
+ # no tests in PyPI tarball
+ src = fetchFromGitHub {
+ owner = "nivbend";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0ikhrhlkl5c7qbigpsv44jw89ws1z7j06gzyg5dh1ki533ifbjm2";
+ };
+
+ propagatedBuildInputs = lib.optional (pythonOlder "3.3") mock;
+
+ meta = with lib; {
+ homepage = https://github.com/nivbend/mock-open;
+ description = "A better mock for file I/O";
+ license = licenses.mit;
+ };
+}
diff --git a/pkgs/development/python-modules/mrbob/default.nix b/pkgs/development/python-modules/mrbob/default.nix
new file mode 100644
index 00000000000..3f974872b95
--- /dev/null
+++ b/pkgs/development/python-modules/mrbob/default.nix
@@ -0,0 +1,28 @@
+{ buildPythonPackage, stdenv, glibcLocales, mock, nose, isPy3k, argparse, jinja2, six
+, fetchPypi, lib
+}:
+
+buildPythonPackage rec {
+ pname = "mrbob";
+ version = "0.1.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "6737eaf98aaeae85e07ebef844ee5156df2f06a8b28d7c3dcb056f811c588121";
+ };
+
+ disabled = isPy3k;
+
+ checkInputs = [ nose glibcLocales mock ];
+ checkPhase = ''
+ LC_ALL="en_US.UTF-8" nosetests
+ '';
+
+ propagatedBuildInputs = [ argparse jinja2 six ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/domenkozar/mr.bob;
+ description = "A tool to generate code skeletons from templates";
+ license = licenses.bsd3;
+ };
+}
diff --git a/pkgs/development/python-modules/nipype/default.nix b/pkgs/development/python-modules/nipype/default.nix
index 30ee2b28561..668e34a2247 100644
--- a/pkgs/development/python-modules/nipype/default.nix
+++ b/pkgs/development/python-modules/nipype/default.nix
@@ -21,8 +21,12 @@
, simplejson
, traits
, xvfbwrapper
+, pytestcov
+, codecov
# other dependencies
, which
+, bash
+, glibcLocales
}:
assert !isPy3k -> configparser != null;
@@ -36,9 +40,14 @@ buildPythonPackage rec {
sha256 = "47f62fda3d6b9a37aa407a6b78c80e91240aa71e61191ed00da68b02839fe258";
};
- doCheck = false; # fails with TypeError: None is not callable
- checkInputs = [ which ];
- buildInputs = [ pytest mock ]; # required in installPhase
+ # see https://github.com/nipy/nipype/issues/2240
+ patches = [ ./prov-version.patch ];
+
+ postPatch = ''
+ substituteInPlace nipype/interfaces/base/tests/test_core.py \
+ --replace "/usr/bin/env bash" "${bash}/bin/bash"
+ '';
+
propagatedBuildInputs = [
click
dateutil
@@ -59,6 +68,12 @@ buildPythonPackage rec {
configparser
];
+ checkInputs = [ pytest mock pytestcov codecov which glibcLocales ];
+
+ checkPhase = ''
+ LC_ALL="en_US.UTF-8" py.test -v --doctest-modules nipype
+ '';
+
meta = with stdenv.lib; {
homepage = http://nipy.org/nipype/;
description = "Neuroimaging in Python: Pipelines and Interfaces";
diff --git a/pkgs/development/python-modules/nipype/prov-version.patch b/pkgs/development/python-modules/nipype/prov-version.patch
new file mode 100644
index 00000000000..133295d0560
--- /dev/null
+++ b/pkgs/development/python-modules/nipype/prov-version.patch
@@ -0,0 +1,21 @@
+diff --git a/nipype/info.py b/nipype/info.py
+index 1daa382e2..da338d0ea 100644
+--- a/nipype/info.py
++++ b/nipype/info.py
+@@ -108,7 +108,6 @@ DATEUTIL_MIN_VERSION = '2.2'
+ PYTEST_MIN_VERSION = '3.0'
+ FUTURE_MIN_VERSION = '0.16.0'
+ SIMPLEJSON_MIN_VERSION = '3.8.0'
+-PROV_VERSION = '1.5.0'
+ CLICK_MIN_VERSION = '6.6.0'
+ PYDOT_MIN_VERSION = '1.2.3'
+
+@@ -140,7 +139,7 @@ REQUIRES = [
+ 'traits>=%s' % TRAITS_MIN_VERSION,
+ 'future>=%s' % FUTURE_MIN_VERSION,
+ 'simplejson>=%s' % SIMPLEJSON_MIN_VERSION,
+- 'prov==%s' % PROV_VERSION,
++ 'prov<2',
+ 'click>=%s' % CLICK_MIN_VERSION,
+ 'funcsigs',
+ 'pytest>=%s' % PYTEST_MIN_VERSION,
diff --git a/pkgs/development/python-modules/parse-type/default.nix b/pkgs/development/python-modules/parse-type/default.nix
index 8c927e4aed0..ac150af4b78 100644
--- a/pkgs/development/python-modules/parse-type/default.nix
+++ b/pkgs/development/python-modules/parse-type/default.nix
@@ -6,21 +6,13 @@
buildPythonPackage rec {
pname = "parse_type";
- version = "0.3.4";
+ version = "0.4.2";
src = fetchPypi {
inherit pname version;
- sha256 = "3dd0b323bafcb8c25e000ce5589042a1c99cba9c3bec77b9f591e46bc9606147";
+ sha256 = "0g3b6gsdwnm8dpkh2vn34q6dzxm9gl908ggyzcv31n9xbp3vv5pm";
};
- patches = [
- (fetchpatch {
- name = "python-3.5-tests-compat.patch";
- url = "https://github.com/jenisys/parse_type/pull/4.patch";
- sha256 = "1mmn2fxss6q3qhaydd4s4v8vjgvgkg41v1vcivrzdsvgsc3npg7m";
- })
- ];
-
checkInputs = [ pytest pytestrunner ];
propagatedBuildInputs = [ parse six ] ++ stdenv.lib.optional (pythonOlder "3.4") enum34;
diff --git a/pkgs/development/python-modules/parse/default.nix b/pkgs/development/python-modules/parse/default.nix
index eaca200e2bf..36153c10229 100644
--- a/pkgs/development/python-modules/parse/default.nix
+++ b/pkgs/development/python-modules/parse/default.nix
@@ -3,22 +3,14 @@
}:
buildPythonPackage rec {
pname = "parse";
- version = "1.6.6";
+ version = "1.8.2";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "71435aaac494e08cec76de646de2aab8392c114e56fe3f81c565ecc7eb886178";
+ sha256 = "1lj9v1q4imszyhvipb6drsm3xdl35nan011mqxxas1yaypixsj40";
};
- patches = [
- (fetchpatch {
- name = "python-3.5-tests-compat.patch";
- url = "https://github.com/r1chardj0n3s/parse/pull/34.patch";
- sha256 = "16iicgkf3lwivmdnp3xkq4n87wjmr3nb77z8mwz67b7by9nnp3jg";
- })
- ];
-
checkPhase = ''
${python.interpreter} test_parse.py
'';
diff --git a/pkgs/development/python-modules/poppler-qt5/default.nix b/pkgs/development/python-modules/poppler-qt5/default.nix
new file mode 100644
index 00000000000..0ae689034a3
--- /dev/null
+++ b/pkgs/development/python-modules/poppler-qt5/default.nix
@@ -0,0 +1,42 @@
+{ buildPythonPackage, fetchPypi, stdenv, sip, qtbase, pyqt5, poppler, pkgconfig, fetchpatch
+, python, substituteAll
+}:
+
+buildPythonPackage rec {
+ pname = "python-poppler-qt5";
+ version = "0.24.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0l69llw1fzwz8y90q0qp9q5pifbrqjjbwii7di54dwghw5fc6w1r";
+ };
+
+ patches = [
+ (substituteAll {
+ src = ./poppler-include-dir.patch;
+ poppler_include_dir = "${poppler.dev}/include/poppler";
+ })
+ (fetchpatch {
+ url = "https://github.com/wbsoft/python-poppler-qt5/commit/faf4d1308f89560b0d849671226e3080dfc72e79.patch";
+ sha256 = "18krhh6wzsnpxzlzv02nginb1vralla8ai24zqk10nc4mj6fkj86";
+ })
+ ];
+
+ setupPyBuildFlags = [
+ "--pyqt-sip-dir ${pyqt5}/share/sip/PyQt5"
+ "--qt-include-dir ${qtbase.dev}/include"
+ ];
+
+ buildInputs = [ qtbase.dev poppler ];
+ nativeBuildInputs = [ pkgconfig ];
+ propagatedBuildInputs = [ sip pyqt5.dev ];
+
+ # no tests, just bindings for `poppler_qt5`
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/wbsoft/python-poppler-qt5;
+ license = licenses.gpl2;
+ maintainers = with maintainers; [ ma27 ];
+ };
+}
diff --git a/pkgs/development/python-modules/poppler-qt5/poppler-include-dir.patch b/pkgs/development/python-modules/poppler-qt5/poppler-include-dir.patch
new file mode 100644
index 00000000000..7106c1d6352
--- /dev/null
+++ b/pkgs/development/python-modules/poppler-qt5/poppler-include-dir.patch
@@ -0,0 +1,12 @@
+diff --git a/setup.py b/setup.py
+index 59a75b0..0a73268 100644
+--- a/setup.py
++++ b/setup.py
+@@ -169,6 +169,7 @@ class build_ext(build_ext_base):
+ 'Please specify via --pyqt-sip-flags=')
+
+ self.include_dirs += (self.qt_include_dir,
++ '@poppler_include_dir@',
+ os.path.join(self.qt_include_dir, 'QtCore'),
+ os.path.join(self.qt_include_dir, 'QtGui'),
+ os.path.join(self.qt_include_dir, 'QtXml'))
diff --git a/pkgs/development/python-modules/pybindgen/default.nix b/pkgs/development/python-modules/pybindgen/default.nix
new file mode 100644
index 00000000000..09cb4c2cdf9
--- /dev/null
+++ b/pkgs/development/python-modules/pybindgen/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchPypi, buildPythonPackage, setuptools_scm, pygccxml }:
+buildPythonPackage rec {
+ pname = "PyBindGen";
+ version = "0.18.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1sl4jn8rildv6f62cab66w791cixhaaxl7gwg9labs099rl74yl6";
+ };
+
+ buildInputs = [ setuptools_scm ];
+
+ checkInputs = [ pygccxml ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/gjcarneiro/pybindgen;
+ description = "Python Bindings Generator";
+ license = licenses.lgpl2;
+ maintainers = with maintainers; [ teto ];
+ };
+}
+
+
diff --git a/pkgs/development/python-modules/pygccxml/default.nix b/pkgs/development/python-modules/pygccxml/default.nix
new file mode 100644
index 00000000000..5271677dc1e
--- /dev/null
+++ b/pkgs/development/python-modules/pygccxml/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, castxml, fetchFromGitHub, buildPythonPackage,
+llvmPackages, clang }:
+buildPythonPackage rec {
+ pname = "pygccxml";
+ version = "1.9.1";
+
+ src = fetchFromGitHub {
+ owner = "gccxml";
+ repo = "pygccxml";
+ rev = "v${version}";
+ sha256 = "02ip03s0vmp7czzflbvf7qnybibfrd0rzqbc5zfmq3zmpnck3hvm";
+ };
+
+ buildInputs = [ castxml llvmPackages.libcxxStdenv];
+
+ # running the suite is hard, needs to generate xml_generator.cfg
+ # but the format doesn't accept -isystem directives
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/gccxml/pygccxml;
+ description = "Python package for easy C++ declarations navigation";
+ license = licenses.boost;
+ maintainers = with maintainers; [ teto ];
+ };
+}
diff --git a/pkgs/development/python-modules/pygraphviz/default.nix b/pkgs/development/python-modules/pygraphviz/default.nix
index bed258c1673..e6ab3512797 100644
--- a/pkgs/development/python-modules/pygraphviz/default.nix
+++ b/pkgs/development/python-modules/pygraphviz/default.nix
@@ -22,6 +22,6 @@ buildPythonPackage rec {
description = "Python interface to Graphviz graph drawing package";
homepage = https://github.com/pygraphviz/pygraphviz;
license = licenses.bsd3;
- maintainers = with maintainers; [ matthiasbeyer ];
+ maintainers = with maintainers; [ ];
};
}
diff --git a/pkgs/development/python-modules/pytest-flake8/default.nix b/pkgs/development/python-modules/pytest-flake8/default.nix
index d79f32a6766..b170f480e96 100644
--- a/pkgs/development/python-modules/pytest-flake8/default.nix
+++ b/pkgs/development/python-modules/pytest-flake8/default.nix
@@ -1,9 +1,8 @@
{lib, buildPythonPackage, fetchPypi, fetchpatch, pytest, flake8}:
buildPythonPackage rec {
- name = "${pname}-${version}";
pname = "pytest-flake8";
- version = "0.9.1";
+ version = "1.0.0";
# although pytest is a runtime dependency, do not add it as
# propagatedBuildInputs in order to allow packages depend on another version
@@ -13,7 +12,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "0032l4x2i5qn7ikaaw0kjs9f4ccpas21j564spyxwmx50wnhf5p7";
+ sha256 = "01driw4sc6nfi3m3ii7d074pxi3h1h4mbiyad9crg5i1l5jxx5ir";
};
checkPhase = ''
diff --git a/pkgs/development/python-modules/python-gnupg/default.nix b/pkgs/development/python-modules/python-gnupg/default.nix
index 9d29e109db4..12b6bf92918 100644
--- a/pkgs/development/python-modules/python-gnupg/default.nix
+++ b/pkgs/development/python-modules/python-gnupg/default.nix
@@ -3,11 +3,11 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "python-gnupg";
- version = "0.4.1";
+ version = "0.4.2";
src = fetchPypi {
inherit pname version;
- sha256 = "06hfw9cmiw5306fyisp3kzg1hww260qzip829g7y7pj1mwpb0izg";
+ sha256 = "0wzvx8y4ii1y1vch28a0m6f2y4px9r7qd8fpimsx6y5z4pfscm2s";
};
propagatedBuildInputs = [ gnupg1 ];
diff --git a/pkgs/development/python-modules/python-ly/default.nix b/pkgs/development/python-modules/python-ly/default.nix
new file mode 100644
index 00000000000..4c1bd05f4a0
--- /dev/null
+++ b/pkgs/development/python-modules/python-ly/default.nix
@@ -0,0 +1,21 @@
+{ buildPythonPackage, fetchPypi, stdenv }:
+
+buildPythonPackage rec {
+ pname = "python-ly";
+ version = "0.9.5";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0x98dv7p8mg26p4816yy8hz4f34zf6hpnnfmr56msgh9jnsm2qfl";
+ };
+
+ # tests not shipped on `pypi` and
+ # seem to be broken ATM: https://github.com/wbsoft/python-ly/issues/70
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Tool and library for manipulating LilyPond files";
+ license = licenses.gpl2;
+ maintainers = with maintainers; [ ma27 ];
+ };
+}
diff --git a/pkgs/development/python-modules/requests-toolbelt/default.nix b/pkgs/development/python-modules/requests-toolbelt/default.nix
index e7834e62b82..809c8d3c96d 100644
--- a/pkgs/development/python-modules/requests-toolbelt/default.nix
+++ b/pkgs/development/python-modules/requests-toolbelt/default.nix
@@ -27,6 +27,6 @@ buildPythonPackage rec {
meta = {
description = "A toolbelt of useful classes and functions to be used with python-requests";
homepage = http://toolbelt.rtfd.org;
- maintainers = with lib.maintainers; [ matthiasbeyer jgeerds ];
+ maintainers = with lib.maintainers; [ jgeerds ];
};
-}
\ No newline at end of file
+}
diff --git a/pkgs/development/python-modules/root_numpy/default.nix b/pkgs/development/python-modules/root_numpy/default.nix
index 008bafae9d7..10511952228 100644
--- a/pkgs/development/python-modules/root_numpy/default.nix
+++ b/pkgs/development/python-modules/root_numpy/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, root }:
+{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, root, nose }:
buildPythonPackage rec {
pname = "root_numpy";
@@ -11,6 +11,11 @@ buildPythonPackage rec {
};
disabled = isPy3k; # blocked by #27649
+ checkInputs = [ nose ];
+ checkPhase = ''
+ python setup.py install_lib -d .
+ nosetests -s -v root_numpy
+ '';
propagatedBuildInputs = [ numpy root ];
diff --git a/pkgs/development/python-modules/rootpy/default.nix b/pkgs/development/python-modules/rootpy/default.nix
index 0827786acfc..e9061b0a6a3 100644
--- a/pkgs/development/python-modules/rootpy/default.nix
+++ b/pkgs/development/python-modules/rootpy/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, matplotlib, root, root_numpy, tables }:
+{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, matplotlib, root, root_numpy, tables, pytest }:
buildPythonPackage rec {
pname = "rootpy";
@@ -14,6 +14,14 @@ buildPythonPackage rec {
propagatedBuildInputs = [ matplotlib numpy root root_numpy tables ];
+ checkInputs = [ pytest ];
+ checkPhase = ''
+ # tests fail with /homeless-shelter
+ export HOME=$PWD
+ # skip problematic tests
+ py.test rootpy -k "not test_stl and not test_cpp and not test_xrootd_glob_single and not test_xrootd_glob_multiple"
+ '';
+
meta = with lib; {
homepage = http://www.rootpy.org;
license = licenses.bsd3;
diff --git a/pkgs/development/python-modules/service_identity/default.nix b/pkgs/development/python-modules/service_identity/default.nix
index 779e974f15e..93e172a4f60 100644
--- a/pkgs/development/python-modules/service_identity/default.nix
+++ b/pkgs/development/python-modules/service_identity/default.nix
@@ -13,8 +13,6 @@
buildPythonPackage rec {
pname = "service_identity";
version = "17.0.0";
- name = "${pname}-${version}";
-
src = fetchFromGitHub {
owner = "pyca";
@@ -33,6 +31,6 @@ buildPythonPackage rec {
meta = with lib; {
description = "Service identity verification for pyOpenSSL";
license = licenses.mit;
- homepage = "https://service-identity.readthedocs.io";
+ homepage = https://service-identity.readthedocs.io;
};
}
diff --git a/pkgs/development/python-modules/smart_open/default.nix b/pkgs/development/python-modules/smart_open/default.nix
index 2e2020f61f0..c4992eb9d9b 100644
--- a/pkgs/development/python-modules/smart_open/default.nix
+++ b/pkgs/development/python-modules/smart_open/default.nix
@@ -3,7 +3,9 @@
, isPy3k
, fetchPypi
, boto
+, boto3
, bz2file
+, mock
, moto
, requests
, responses
@@ -12,14 +14,26 @@
buildPythonPackage rec {
pname = "smart_open";
name = "${pname}-${version}";
- version = "1.5.6";
+ version = "1.5.7";
src = fetchPypi {
inherit pname version;
- sha256 = "8fd2de1c359bd0074bd6d334a5b9820ae1c5b6ba563970b95052bace4b71baeb";
+ sha256 = "0y1c29pdxxgxkymr7g2n59siqqaq351zbx9vz8433dxvzy4qgd7p";
};
- propagatedBuildInputs = [ boto bz2file requests responses moto ];
+ # nixpkgs version of moto is >=1.2.0, remove version pin to fix build
+ postPatch = ''
+ substituteInPlace ./setup.py --replace "moto==0.4.31" "moto"
+ '';
+
+ # moto>=1.0.0 is backwards-incompatible and some tests fail with it,
+ # so disable tests for now
+ doCheck = false;
+
+ checkInputs = [ mock moto responses ];
+
+ # upstream code requires both boto and boto3
+ propagatedBuildInputs = [ boto boto3 bz2file requests ];
meta = {
license = lib.licenses.mit;
description = "smart_open is a Python 2 & Python 3 library for efficient streaming of very large file";
diff --git a/pkgs/development/python-modules/tensorflow/bin.nix b/pkgs/development/python-modules/tensorflow/bin.nix
new file mode 100644
index 00000000000..c9b89ff7616
--- /dev/null
+++ b/pkgs/development/python-modules/tensorflow/bin.nix
@@ -0,0 +1,51 @@
+{ stdenv
+, lib
+, fetchurl
+, buildPythonPackage
+, isPy3k, isPy36, pythonOlder
+, numpy
+, six
+, protobuf
+, absl-py
+, mock
+, backports_weakref
+, enum34
+, tensorflow-tensorboard
+, cudaSupport ? false
+}:
+
+# tensorflow is built from a downloaded wheel because the source
+# build doesn't yet work on Darwin.
+
+buildPythonPackage rec {
+ pname = "tensorflow";
+ version = "1.5.0";
+ format = "wheel";
+
+ src = fetchurl {
+ url = "https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-${version}-py3-none-any.whl";
+ sha256 = "1mapv45n9wmgcq3i3im0pv0gmhwkxw5z69nsnxb1gfxbj1mz5h9m";
+ };
+
+ propagatedBuildInputs = [ numpy six protobuf absl-py ]
+ ++ lib.optional (!isPy3k) mock
+ ++ lib.optionals (pythonOlder "3.4") [ backports_weakref enum34 ]
+ ++ lib.optional (pythonOlder "3.6") tensorflow-tensorboard;
+
+ # tensorflow depends on tensorflow_tensorboard, which cannot be
+ # built at the moment (some of its dependencies do not build
+ # [htlm5lib9999999 (seven nines) -> tensorboard], and it depends on an old version of
+ # bleach) Hence we disable dependency checking for now.
+ installFlags = lib.optional isPy36 "--no-dependencies";
+
+ meta = with stdenv.lib; {
+ description = "Computation using data flow graphs for scalable machine learning";
+ homepage = http://tensorflow.org;
+ license = licenses.asl20;
+ maintainers = with maintainers; [ jyp abbradar ];
+ platforms = platforms.darwin;
+ # Python 2.7 build uses different string encoding.
+ # See https://github.com/NixOS/nixpkgs/pull/37044#issuecomment-373452253
+ broken = cudaSupport || !isPy3k;
+ };
+}
diff --git a/pkgs/development/python-modules/tensorflow/default.nix b/pkgs/development/python-modules/tensorflow/default.nix
index 85dd30118cc..8d2d6fa9c14 100644
--- a/pkgs/development/python-modules/tensorflow/default.nix
+++ b/pkgs/development/python-modules/tensorflow/default.nix
@@ -149,7 +149,7 @@ in buildPythonPackage rec {
homepage = http://tensorflow.org;
license = licenses.asl20;
maintainers = with maintainers; [ jyp abbradar ];
- platforms = with platforms; if cudaSupport then linux else linux ++ darwin;
+ platforms = platforms.linux;
broken = !(xlaSupport -> cudaSupport);
};
}
diff --git a/pkgs/development/python-modules/vxi11/default.nix b/pkgs/development/python-modules/vxi11/default.nix
new file mode 100644
index 00000000000..7bae1e9860b
--- /dev/null
+++ b/pkgs/development/python-modules/vxi11/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, buildPythonPackage, fetchFromGitHub, nose }:
+
+buildPythonPackage rec {
+ pname = "python-vxi11";
+ version = "0.9";
+
+ # no tests in PyPI tarball
+ src = fetchFromGitHub {
+ owner = "python-ivi";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1xv7chp7rm0vrvbz6q57fpwhlgjz461h08q9zgmkcl2l0w96hmsn";
+ };
+
+ checkInputs = [ nose ];
+ checkPhase = ''
+ nosetests
+ '';
+
+ meta = with stdenv.lib; {
+ description = "VXI-11 driver for controlling instruments over Ethernet";
+ homepage = https://github.com/python-ivi/python-vxi11;
+ license = licenses.mit;
+ maintainers = with maintainers; [ bgamari ];
+ };
+}
diff --git a/pkgs/development/python-modules/wordfreq/default.nix b/pkgs/development/python-modules/wordfreq/default.nix
new file mode 100644
index 00000000000..9de1fd5b392
--- /dev/null
+++ b/pkgs/development/python-modules/wordfreq/default.nix
@@ -0,0 +1,48 @@
+{ lib
+, buildPythonPackage
+, regex
+, langcodes
+, ftfy
+, msgpack
+, mecab-python3
+, jieba
+, nose
+, pythonOlder
+, fetchFromGitHub
+}:
+
+buildPythonPackage rec {
+ pname = "wordfreq";
+ version = "2.0";
+
+ src = fetchFromGitHub {
+ owner = "LuminosoInsight";
+ repo = "wordfreq";
+ rev = "e3a1b470d9f8e0d82e9f179ffc41abba434b823b";
+ sha256 = "1wjkhhj7nxfnrghwvmvwc672s30lp4b7yr98gxdxgqcq6wdshxwv";
+ };
+
+ checkInputs = [ nose ];
+
+ checkPhase = ''
+ # These languages require additional dictionaries
+ nosetests -e test_japanese -e test_korean -e test_languages
+ '';
+
+ propagatedBuildInputs = [ regex langcodes ftfy msgpack mecab-python3 jieba ];
+
+ # patch to relax version requirements for regex
+ # dependency to prevent break in upgrade
+ postPatch = ''
+ substituteInPlace setup.py --replace "regex ==" "regex >="
+ '';
+
+ disabled = pythonOlder "3";
+
+ meta = with lib; {
+ description = "A library for looking up the frequencies of words in many languages, based on many sources of data";
+ homepage = https://github.com/LuminosoInsight/wordfreq/;
+ license = licenses.mit;
+ maintainers = with maintainers; [ ixxie ];
+ };
+}
diff --git a/pkgs/development/tools/analysis/checkstyle/default.nix b/pkgs/development/tools/analysis/checkstyle/default.nix
index 6043e2d289d..c06cd9c3eb5 100644
--- a/pkgs/development/tools/analysis/checkstyle/default.nix
+++ b/pkgs/development/tools/analysis/checkstyle/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- version = "8.8";
+ version = "8.9";
name = "checkstyle-${version}";
src = fetchurl {
url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz";
- sha256 = "0yawd6mbz6cqj0qlrh01vy33p30f4s3pfrvsxwg5l11p416zzrz4";
+ sha256 = "058lffmlzw7nqz5z89m2k640q7ffz6dz008bddvjsgpxbrdb89cd";
};
installPhase = ''
diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix
index 4a2d298495d..2104e532f28 100644
--- a/pkgs/development/tools/analysis/flow/default.nix
+++ b/pkgs/development/tools/analysis/flow/default.nix
@@ -1,17 +1,17 @@
{ stdenv, fetchFromGitHub, lib, ocaml, libelf, cf-private, CoreServices,
- findlib, camlp4, sedlex, ocamlbuild, ocaml_lwt, wtf8, dtoa }:
+ findlib, camlp4, sedlex, ocamlbuild, lwt_ppx, wtf8, dtoa }:
with lib;
stdenv.mkDerivation rec {
- version = "0.66.0";
+ version = "0.69.0";
name = "flow-${version}";
src = fetchFromGitHub {
owner = "facebook";
repo = "flow";
rev = "v${version}";
- sha256 = "0l1sdd1n0llmz8m81vym3zhcn824sr9w46h9jpb7i7wrcm4y410d";
+ sha256 = "11n8g471zgazcnzsxcw45gzzn63xanw91wj5xwsx8i2cp7wg9g7g";
};
installPhase = ''
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
'';
buildInputs = [
- ocaml libelf findlib camlp4 sedlex ocamlbuild ocaml_lwt wtf8 dtoa
+ ocaml libelf findlib camlp4 sedlex ocamlbuild lwt_ppx wtf8 dtoa
] ++ optionals stdenv.isDarwin [ cf-private CoreServices ];
meta = with stdenv.lib; {
diff --git a/pkgs/development/tools/analysis/panopticon/default.nix b/pkgs/development/tools/analysis/panopticon/default.nix
new file mode 100644
index 00000000000..a50f6993c33
--- /dev/null
+++ b/pkgs/development/tools/analysis/panopticon/default.nix
@@ -0,0 +1,52 @@
+{ stdenv, fetchFromGitHub, rustPlatform, qt5, git, cmake
+, pkgconfig, makeWrapper }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "panopticon";
+ version = "unstable-20171202";
+ name = "${pname}-${version}";
+
+ src = fetchFromGitHub {
+ owner = "das-labor";
+ repo = pname;
+ rev = "33ffec0d6d379d51b38d6ea00d040f54b1356ae4";
+ sha256 = "1zv87nqhrzsxx0m891df4vagzssj3kblfv9yp7j96dw0vn9950qa";
+ };
+
+ nativeBuildInputs = [ cmake ];
+ buildInputs = [ makeWrapper ];
+ propagatedBuildInputs = with qt5; [
+ qt5.qtbase
+ qtdeclarative
+ qtsvg
+ qtquickcontrols2
+ qtgraphicaleffects
+ pkgconfig
+ git
+ ];
+
+ cargoSha256 = "02k21mh0jyc6vz52jx1qijsfk07pkdv1g2hqx7gyvmm4v10vbfna";
+ doCheck = false;
+
+ postInstall = ''
+ mkdir -p $out/share/${pname} $out/bin
+ cp -R qml $out/share/${pname}
+ mv $out/bin/${pname} $out/share/${pname}
+ chmod +x $out/share/${pname}
+ makeWrapper $out/share/${pname}/${pname} $out/bin/${pname}
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A libre cross-platform disassembler";
+ longDescription = ''
+ Panopticon is a cross platform disassembler for reverse
+ engineering written in Rust. It can disassemble AMD64,
+ x86, AVR and MOS 6502 instruction sets and open ELF files.
+ Panopticon comes with Qt GUI for browsing and annotating
+ control flow graphs.
+ '';
+ license = with licenses; [ gpl3 ];
+ maintainers = with maintainers; [ leenaars ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/development/tools/analysis/pmd/default.nix b/pkgs/development/tools/analysis/pmd/default.nix
index a8d4c517a90..83da9926170 100644
--- a/pkgs/development/tools/analysis/pmd/default.nix
+++ b/pkgs/development/tools/analysis/pmd/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "pmd-${version}";
- version = "6.1.0";
+ version = "6.2.0";
buildInputs = [ unzip ];
src = fetchurl {
url = "mirror://sourceforge/pmd/pmd-bin-${version}.zip";
- sha256 = "1d2hbsnyvwvawhfh832yy3w93kr4whrk99zpg4q5ws2b2hhdvzv8";
+ sha256 = "12j6m6lhp4xw27x0x8jcy0vlwbanjwks7w6zl56xihv6r8cm40fz";
};
installPhase = ''
diff --git a/pkgs/development/tools/analysis/spin/default.nix b/pkgs/development/tools/analysis/spin/default.nix
index 1be5655b1e5..a59b452b432 100644
--- a/pkgs/development/tools/analysis/spin/default.nix
+++ b/pkgs/development/tools/analysis/spin/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, requireFile, makeWrapper, yacc, gcc
+{ stdenv, lib, fetchurl, makeWrapper, yacc, gcc
, withISpin ? true, tk, swarm, graphviz }:
let
@@ -10,14 +10,12 @@ in stdenv.mkDerivation rec {
version = "6.4.8";
url-version = stdenv.lib.replaceChars ["."] [""] version;
- src = requireFile {
- name = "spin${url-version}.tar.gz";
- sha256 = "1rpazi5fj772121cn7r85fxypmaiv0x6x2l82b5y1xqzyf0fi4ph";
- message = ''
- reCAPTCHA is preventing us to download the file for you.
- Please download it at http://spinroot.com/spin/Src/index.html
- and add it to the nix-store using nix-prefetch-url.
- '';
+ src = fetchurl {
+ # The homepage is behind CloudFlare anti-DDoS protection, which blocks cURL.
+ # Dropbox mirror from developers:
+ # https://www.dropbox.com/sh/fgzipzp4wpo3qc1/AADZPqS4aoR-pjNF6OQXRLQHa
+ url = "https://www.dropbox.com/sh/fgzipzp4wpo3qc1/AADya1lOBJZDbgWGrUSq-dfHa/spin${url-version}.tar.gz?raw=1";
+ sha256 = "1rvamdsf0igzpndlr4ck7004jw9x1bg4xyf78zh5k9sp848vnd80";
};
nativeBuildInputs = [ makeWrapper ];
@@ -25,12 +23,6 @@ in stdenv.mkDerivation rec {
sourceRoot = "Spin/Src${version}";
- unpackPhase = ''
- # The archive is compressed twice
- gunzip -c $src > spin.tar.gz
- tar -xzf spin.tar.gz
- '';
-
installPhase = ''
install -Dm755 spin $out/bin/spin
wrapProgram $out/bin/spin \
diff --git a/pkgs/development/tools/build-managers/bazel/default.nix b/pkgs/development/tools/build-managers/bazel/default.nix
index 6e974b7e93d..593fe6c159b 100644
--- a/pkgs/development/tools/build-managers/bazel/default.nix
+++ b/pkgs/development/tools/build-managers/bazel/default.nix
@@ -6,7 +6,7 @@
stdenv.mkDerivation rec {
- version = "0.10.1";
+ version = "0.11.1";
meta = with stdenv.lib; {
homepage = "https://github.com/bazelbuild/bazel/";
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "https://github.com/bazelbuild/bazel/releases/download/${version}/bazel-${version}-dist.zip";
- sha256 = "0rz6zvkzyglf0mmc178avf52zynz487m4v0089ilsbrgv7v4i0kh";
+ sha256 = "e8d762bcc01566fa50952c8028e95cfbe7545a39b8ceb3a0d0d6df33b25b333f";
};
sourceRoot = ".";
diff --git a/pkgs/development/tools/build-managers/doit/default.nix b/pkgs/development/tools/build-managers/doit/default.nix
index aeeb4dbd779..e6ec8c2a80c 100644
--- a/pkgs/development/tools/build-managers/doit/default.nix
+++ b/pkgs/development/tools/build-managers/doit/default.nix
@@ -3,14 +3,14 @@
let
name = "doit";
- version = "0.31.0";
+ version = "0.31.1";
in python3Packages.buildPythonApplication {
name = "${name}-${version}";
src = fetchurl {
url = "mirror://pypi/d/${name}/${name}-${version}.tar.gz";
- sha256 = "0v1yr04bfqnz3sp261np3zhf0y1b3a1daxc83iq308lscf39fdgx";
+ sha256 = "1spm8vfjh4kvalaj0i2ggbdln1yy5k68d8mfwfnpqlzxxx4ikl5s";
};
buildInputs = with python3Packages; [ mock pytest ];
diff --git a/pkgs/development/tools/build-managers/pants/default.nix b/pkgs/development/tools/build-managers/pants/default.nix
index abb32f25760..0b40353ffef 100644
--- a/pkgs/development/tools/build-managers/pants/default.nix
+++ b/pkgs/development/tools/build-managers/pants/default.nix
@@ -4,7 +4,7 @@ with stdenv.lib;
with pythonPackages;
let
- version = "1.3.0";
+ version = "1.4.0";
in buildPythonApplication rec {
inherit version;
pname = "pantsbuild.pants";
@@ -12,7 +12,7 @@ in buildPythonApplication rec {
src = fetchPypi {
inherit pname version;
- sha256 = "18fcf9047l9k006wz21g525p1w5avyjabmabh0giyz22xnm8g5gp";
+ sha256 = "1jd041av1kipg4psbcwk70nwh0bsh5mkbjjcmnw4vrqdd09vg1gz";
};
prePatch = ''
@@ -24,10 +24,10 @@ in buildPythonApplication rec {
dontStrip = true;
propagatedBuildInputs = [
- twitter-common-collections setproctitle setuptools six ansicolors
- packaging pathspec scandir twitter-common-dirutil psutil requests
- pystache pex docutils markdown pygments twitter-common-confluence
- fasteners coverage pywatchman futures cffi
+ twitter-common-collections setproctitle ansicolors packaging pathspec
+ scandir twitter-common-dirutil psutil requests pystache pex docutils
+ markdown pygments twitter-common-confluence fasteners pywatchman
+ futures cffi subprocess32 contextlib2 faulthandler pyopenssl
];
meta = {
diff --git a/pkgs/development/tools/build-managers/remake/default.nix b/pkgs/development/tools/build-managers/remake/default.nix
index 7a199cc925a..926cc83cd97 100644
--- a/pkgs/development/tools/build-managers/remake/default.nix
+++ b/pkgs/development/tools/build-managers/remake/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
homepage = http://bashdb.sourceforge.net/remake/;
license = stdenv.lib.licenses.gpl3;
description = "GNU Make with comprehensible tracing and a debugger";
- platforms = stdenv.lib.platforms.linux;
+ platforms = with stdenv.lib.platforms; linux ++ darwin;
maintainers = with stdenv.lib.maintainers; [ bjornfor ];
};
}
diff --git a/pkgs/development/tools/castxml/default.nix b/pkgs/development/tools/castxml/default.nix
new file mode 100644
index 00000000000..f8389786b9d
--- /dev/null
+++ b/pkgs/development/tools/castxml/default.nix
@@ -0,0 +1,49 @@
+{ stdenv, fetchFromGitHub
+, pythonPackages
+, pkgconfig
+, cmake
+, llvmPackages
+, withMan ? true
+}:
+stdenv.mkDerivation rec {
+
+ name = "${pname}-${version}";
+ pname = "CastXML";
+ version = "20180403";
+
+ src = fetchFromGitHub {
+ owner = "CastXML";
+ repo = "CastXML";
+ rev = "c2a44d06d9379718292b696f4e13a2725ff9d95e";
+ sha256 = "1hjh8ihjyp1m2jb5yypp5c45bpbz8k004f4p1cjw4gc7pxhjacdj";
+ };
+
+ buildInputs = [
+ cmake
+ llvmPackages.clang-unwrapped
+ llvmPackages.llvm
+ ] ++ stdenv.lib.optionals withMan [ pythonPackages.sphinx ];
+
+ propagatedbuildInputs = [ llvmPackages.libclang ];
+
+ preConfigure = ''
+ cmakeFlagsArray+=(
+ ${if withMan then "-DSPHINX_MAN=ON" else ""}
+ )'';
+
+ # 97% tests passed, 96 tests failed out of 2866
+ # mostly because it checks command line and nix append -isystem and all
+ doCheck=false;
+ checkPhase = ''
+ # -E exclude 4 tests based on names
+ # see https://github.com/CastXML/CastXML/issues/90
+ ctest -E 'cmd.cc-(gnu|msvc)-((c-src-c)|(src-cxx))-cmd'
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = http://www.kitware.com;
+ license = licenses.asl20;
+ description = "Abstract syntax tree XML output tool";
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/tools/security/bettercap/Gemfile b/pkgs/development/tools/cbor-diag/Gemfile
similarity index 65%
rename from pkgs/tools/security/bettercap/Gemfile
rename to pkgs/development/tools/cbor-diag/Gemfile
index 8fb2a1c300a..798e507460e 100644
--- a/pkgs/tools/security/bettercap/Gemfile
+++ b/pkgs/development/tools/cbor-diag/Gemfile
@@ -1,2 +1,2 @@
source 'https://rubygems.org'
-gem 'bettercap'
+gem 'cbor-diag'
diff --git a/pkgs/development/tools/cbor-diag/Gemfile.lock b/pkgs/development/tools/cbor-diag/Gemfile.lock
new file mode 100644
index 00000000000..0d129765aa4
--- /dev/null
+++ b/pkgs/development/tools/cbor-diag/Gemfile.lock
@@ -0,0 +1,19 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ cbor-diag (0.5.2)
+ json
+ treetop (~> 1)
+ json (2.1.0)
+ polyglot (0.3.5)
+ treetop (1.6.10)
+ polyglot (~> 0.3)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ cbor-diag
+
+BUNDLED WITH
+ 1.14.6
diff --git a/pkgs/development/tools/cbor-diag/default.nix b/pkgs/development/tools/cbor-diag/default.nix
new file mode 100644
index 00000000000..049d9f38c0c
--- /dev/null
+++ b/pkgs/development/tools/cbor-diag/default.nix
@@ -0,0 +1,30 @@
+{ lib, bundlerApp, ruby }:
+
+bundlerApp {
+ pname = "cbor-diag";
+
+ inherit ruby;
+ gemdir = ./.;
+
+ exes = [
+ "cbor2diag.rb"
+ "cbor2json.rb"
+ "cbor2pretty.rb"
+ "cbor2yaml.rb"
+ "diag2cbor.rb"
+ "diag2pretty.rb"
+ "json2cbor.rb"
+ "json2pretty.rb"
+ "pretty2cbor.rb"
+ "pretty2diag.rb"
+ "yaml2cbor.rb"
+ ];
+
+ meta = with lib; {
+ description = "CBOR diagnostic utilities";
+ homepage = https://github.com/cabo/cbor-diag;
+ license = with licenses; asl20;
+ maintainers = with maintainers; [ fdns ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/tools/cbor-diag/gemset.nix b/pkgs/development/tools/cbor-diag/gemset.nix
new file mode 100644
index 00000000000..2de0e9a647a
--- /dev/null
+++ b/pkgs/development/tools/cbor-diag/gemset.nix
@@ -0,0 +1,36 @@
+{
+ cbor-diag = {
+ dependencies = ["json" "treetop"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1g4pxf1ag4pyb351m06l08ig1smnf8w27ynqfxkgmwak5mh1z7w1";
+ type = "gem";
+ };
+ version = "0.5.2";
+ };
+ json = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "01v6jjpvh3gnq6sgllpfqahlgxzj50ailwhj9b3cd20hi2dx0vxp";
+ type = "gem";
+ };
+ version = "2.1.0";
+ };
+ polyglot = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1bqnxwyip623d8pr29rg6m8r0hdg08fpr2yb74f46rn1wgsnxmjr";
+ type = "gem";
+ };
+ version = "0.3.5";
+ };
+ treetop = {
+ dependencies = ["polyglot"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0g31pijhnv7z960sd09lckmw9h8rs3wmc8g4ihmppszxqm99zpv7";
+ type = "gem";
+ };
+ version = "1.6.10";
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/tools/cddl/Gemfile b/pkgs/development/tools/cddl/Gemfile
new file mode 100644
index 00000000000..2ba729084f1
--- /dev/null
+++ b/pkgs/development/tools/cddl/Gemfile
@@ -0,0 +1,2 @@
+source 'https://rubygems.org'
+gem 'cddl'
diff --git a/pkgs/development/tools/cddl/Gemfile.lock b/pkgs/development/tools/cddl/Gemfile.lock
new file mode 100644
index 00000000000..65701dd45bf
--- /dev/null
+++ b/pkgs/development/tools/cddl/Gemfile.lock
@@ -0,0 +1,28 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ abnc (0.1.0)
+ cbor-diag (0.5.2)
+ json
+ treetop (~> 1)
+ cddl (0.8.5)
+ abnc
+ cbor-diag
+ colorize
+ json
+ regexp-examples
+ colorize (0.8.1)
+ json (2.1.0)
+ polyglot (0.3.5)
+ regexp-examples (1.4.2)
+ treetop (1.6.10)
+ polyglot (~> 0.3)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ cddl
+
+BUNDLED WITH
+ 1.14.6
diff --git a/pkgs/development/tools/cddl/default.nix b/pkgs/development/tools/cddl/default.nix
new file mode 100644
index 00000000000..37ad593d796
--- /dev/null
+++ b/pkgs/development/tools/cddl/default.nix
@@ -0,0 +1,17 @@
+{ lib, bundlerApp, ruby }:
+
+bundlerApp {
+ pname = "cddl";
+
+ inherit ruby;
+ gemdir = ./.;
+ exes = [ "cddl" ];
+
+ meta = with lib; {
+ description = "A parser, generator, and validator for CDDL";
+ homepage = https://rubygems.org/gems/cddl;
+ license = with licenses; mit;
+ maintainers = with maintainers; [ fdns ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/tools/cddl/gemset.nix b/pkgs/development/tools/cddl/gemset.nix
new file mode 100644
index 00000000000..92aa4199505
--- /dev/null
+++ b/pkgs/development/tools/cddl/gemset.nix
@@ -0,0 +1,69 @@
+{
+ abnc = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "13nvzrk72nj130fs8bq8q3cfm48939rdzh7l31ncj5c4969hrbig";
+ type = "gem";
+ };
+ version = "0.1.0";
+ };
+ cbor-diag = {
+ dependencies = ["json" "treetop"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1g4pxf1ag4pyb351m06l08ig1smnf8w27ynqfxkgmwak5mh1z7w1";
+ type = "gem";
+ };
+ version = "0.5.2";
+ };
+ cddl = {
+ dependencies = ["abnc" "cbor-diag" "colorize" "json" "regexp-examples"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1pg91wrby0qgrdnf089ddy5yy2jalxd3bb9dljj16cpwv4gjx047";
+ type = "gem";
+ };
+ version = "0.8.5";
+ };
+ colorize = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "133rqj85n400qk6g3dhf2bmfws34mak1wqihvh3bgy9jhajw580b";
+ type = "gem";
+ };
+ version = "0.8.1";
+ };
+ json = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "01v6jjpvh3gnq6sgllpfqahlgxzj50ailwhj9b3cd20hi2dx0vxp";
+ type = "gem";
+ };
+ version = "2.1.0";
+ };
+ polyglot = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1bqnxwyip623d8pr29rg6m8r0hdg08fpr2yb74f46rn1wgsnxmjr";
+ type = "gem";
+ };
+ version = "0.3.5";
+ };
+ regexp-examples = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "104f0j0h2x5ijly7kyaj7zz0md65r2c03cpbi5cngm0hs2sr1qkz";
+ type = "gem";
+ };
+ version = "1.4.2";
+ };
+ treetop = {
+ dependencies = ["polyglot"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0g31pijhnv7z960sd09lckmw9h8rs3wmc8g4ihmppszxqm99zpv7";
+ type = "gem";
+ };
+ version = "1.6.10";
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/tools/container-linux-config-transpiler/default.nix b/pkgs/development/tools/container-linux-config-transpiler/default.nix
index 19181239278..8d43736d3a8 100644
--- a/pkgs/development/tools/container-linux-config-transpiler/default.nix
+++ b/pkgs/development/tools/container-linux-config-transpiler/default.nix
@@ -4,7 +4,7 @@ with lib;
buildGoPackage rec {
name = "ct-${version}";
- version = "0.5.0";
+ version = "0.7.0";
goPackagePath = "github.com/coreos/container-linux-config-transpiler";
@@ -12,7 +12,7 @@ buildGoPackage rec {
owner = "coreos";
repo = "container-linux-config-transpiler";
rev = "v${version}";
- sha256="1gchqvx5a2fhw9bw359azd9zg8d6h50gkzfz21c41vkjln2z6jq6";
+ sha256="058zjk9yqgdli55gc6y48455il6wjpslyz2r2ckk2ki9c5qc8b7c";
};
buildFlagsArray = ''
diff --git a/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix b/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
index 515e22788e5..7a5f2f44823 100644
--- a/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
+++ b/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
@@ -1,6 +1,6 @@
{ stdenv, buildGoPackage, fetchFromGitHub, makeWrapper, coreutils, git, openssh, bash, gnused, gnugrep }:
let
- version = "2.6.9";
+ version = "2.6.10";
goPackagePath = "github.com/buildkite/agent";
in
buildGoPackage {
@@ -12,7 +12,7 @@ buildGoPackage {
owner = "buildkite";
repo = "agent";
rev = "v${version}";
- sha256 = "0rlinj7dcr8vzl1pb15nfny8jkvvj50i8czf4ahv26avnfycm4pz";
+ sha256 = "07065hhhb418w5qlqnyiap45r59paysysbwz1l7dmaw3j4q8m8rg";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/development/tools/database/sqlitebrowser/default.nix b/pkgs/development/tools/database/sqlitebrowser/default.nix
index 74adac9f8a3..054eabdb5e4 100644
--- a/pkgs/development/tools/database/sqlitebrowser/default.nix
+++ b/pkgs/development/tools/database/sqlitebrowser/default.nix
@@ -33,7 +33,7 @@ mkDerivation rec {
description = "DB Browser for SQLite";
homepage = http://sqlitebrowser.org/;
license = licenses.gpl3;
- maintainers = with maintainers; [ matthiasbeyer ];
+ maintainers = with maintainers; [ ];
platforms = platforms.linux; # can only test on linux
};
}
diff --git a/pkgs/development/tools/godot/default.nix b/pkgs/development/tools/godot/default.nix
index e89b2f62b15..89cc7eb1bfe 100644
--- a/pkgs/development/tools/godot/default.nix
+++ b/pkgs/development/tools/godot/default.nix
@@ -42,6 +42,19 @@ in stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out/bin
cp bin/godot.x11.tools.* $out/bin/godot
+
+ mkdir -p "$out/share/applications"
+ cp misc/dist/linux/godot.desktop "$out/share/applications/"
+ substituteInPlace "$out/share/applications/godot.desktop" \
+ --replace "Exec=godot" \
+ "Exec=$out/bin/godot"
+
+ mkdir -p "$out/share/icons/hicolor/scalable/apps/"
+ cp icon.svg "$out/share/icons/hicolor/scalable/apps/godot.svg"
+ cp icon.png "$out/share/icons/godot.png"
+
+ mkdir -p "$out/share/man/man6"
+ cp misc/dist/linux/godot.6 "$out/share/man/man6/"
'';
meta = {
diff --git a/pkgs/development/tools/gron/default.nix b/pkgs/development/tools/gron/default.nix
new file mode 100644
index 00000000000..59f7360df2a
--- /dev/null
+++ b/pkgs/development/tools/gron/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+ name = "gron-${version}";
+ version = "0.5.1";
+
+ owner = "tomnomnom";
+ repo = "gron";
+ goPackagePath = "github.com/${owner}/${repo}";
+
+ src = fetchFromGitHub {
+ inherit owner repo;
+ rev = "v${version}";
+ sha256 = "1s688ynjddchviwbiggnfbw28s4wsff2941f4b1q1j7mfak7iym2";
+ };
+
+ goDeps = ./deps.nix;
+
+ meta = with stdenv.lib; {
+ description = "Make JSON greppable!";
+ longDescription = ''
+ gron transforms JSON into discrete assignments to make it easier to grep
+ for what you want and see the absolute 'path' to it. It eases the
+ exploration of APIs that return large blobs of JSON but have terrible
+ documentation.
+ '';
+ homepage = "https://github.com/tomnomnom/gron";
+ license = licenses.mit;
+ maintainers = [ maintainers.fgaz ];
+ platforms = with platforms; linux ++ darwin;
+ };
+}
diff --git a/pkgs/development/tools/gron/deps.nix b/pkgs/development/tools/gron/deps.nix
new file mode 100644
index 00000000000..c5b1feb888a
--- /dev/null
+++ b/pkgs/development/tools/gron/deps.nix
@@ -0,0 +1,35 @@
+[
+ rec {
+ owner = "fatih";
+ repo = "color";
+ goPackagePath = "github.com/${owner}/${repo}";
+ fetch = {
+ type = "git";
+ url = "https://github.com/${owner}/${repo}";
+ rev = "v1.6.0";
+ sha256 = "0k1v9dkhrxiqhg48yqkwzpd7x40xx38gv2pgknswbsy4r8w644i7";
+ };
+ }
+ rec {
+ owner = "nwidger";
+ repo = "jsoncolor";
+ goPackagePath = "github.com/${owner}/${repo}";
+ fetch = {
+ type = "git";
+ url = "https://github.com/${owner}/${repo}";
+ rev = "75a6de4340e59be95f0884b9cebdda246e0fdf40";
+ sha256 = "0aiv42xijrqgrxfx6pfyrndpwqv8i1qwsk190jdczyjxlnki2nki";
+ };
+ }
+ rec {
+ owner = "pkg";
+ repo = "errors";
+ goPackagePath = "github.com/${owner}/${repo}";
+ fetch = {
+ type = "git";
+ url = "https://github.com/${owner}/${repo}";
+ rev = "v0.8.0";
+ sha256 = "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5";
+ };
+ }
+]
diff --git a/pkgs/development/tools/jbake/default.nix b/pkgs/development/tools/jbake/default.nix
index 045ade6e0ed..70b8e7f2663 100644
--- a/pkgs/development/tools/jbake/default.nix
+++ b/pkgs/development/tools/jbake/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchzip, jre }:
stdenv.mkDerivation rec {
- version = "2.5.1";
+ version = "2.6.0";
name = "jbake-${version}";
src = fetchzip {
url = "https://dl.bintray.com/jbake/binary/${name}-bin.zip";
- sha256 = "1ib5gvz6sl7k0ywx22anhz69i40wc6jj5lxjxj2aa14qf4lrw912";
+ sha256 = "1k71rz82fwyi51xhyghg8laz794xyz06d5apmxa9psy7yz184ylk";
};
buildInputs = [ jre ];
diff --git a/pkgs/development/tools/jl/default.nix b/pkgs/development/tools/jl/default.nix
new file mode 100644
index 00000000000..ea621428458
--- /dev/null
+++ b/pkgs/development/tools/jl/default.nix
@@ -0,0 +1,28 @@
+{ mkDerivation, fetchFromGitHub
+, aeson, aeson-pretty, attoparsec, base, bytestring, conduit, conduit-extra
+, containers, exceptions, mtl, optparse-simple, parsec, scientific, stdenv
+, text, unordered-containers, vector
+}:
+mkDerivation rec {
+ pname = "jl";
+ version = "0.0.4";
+ src = fetchFromGitHub {
+ owner = "chrisdone";
+ repo = "jl";
+ rev = "v${version}";
+ sha256 = "0wsdfj4m729q0kjpkn0ywpncdhvpvvprd4rh45vcg6kjw20krm3r";
+ };
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson attoparsec base bytestring containers exceptions mtl parsec
+ scientific text unordered-containers vector
+ ];
+ executableHaskellDepends = [
+ aeson aeson-pretty base bytestring conduit conduit-extra containers
+ mtl optparse-simple text vector
+ ];
+ license = stdenv.lib.licenses.bsd3;
+ description = "Functional sed for JSON";
+ maintainers = with stdenv.lib.maintainers; [ fgaz ];
+}
diff --git a/pkgs/development/tools/misc/babeltrace/default.nix b/pkgs/development/tools/misc/babeltrace/default.nix
index d4a8d483e2e..48cf4b31a17 100644
--- a/pkgs/development/tools/misc/babeltrace/default.nix
+++ b/pkgs/development/tools/misc/babeltrace/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, pkgconfig, glib, libuuid, popt, elfutils }:
stdenv.mkDerivation rec {
- name = "babeltrace-1.5.4";
+ name = "babeltrace-1.5.5";
src = fetchurl {
url = "http://www.efficios.com/files/babeltrace/${name}.tar.bz2";
- sha256 = "1h8zi7afilbfx4jvdlhhgysj6x01w3799mdk4mdcgax04fch6hwn";
+ sha256 = "1b78fam1gbsalga5pppn8ka461q35a9svz3mlbv82ssakdw4d4a0";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/tools/misc/checkbashisms/default.nix b/pkgs/development/tools/misc/checkbashisms/default.nix
index 2564b42731b..6f4330ef0a9 100644
--- a/pkgs/development/tools/misc/checkbashisms/default.nix
+++ b/pkgs/development/tools/misc/checkbashisms/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
- version = "2.0.0.2";
+ version = "2.18.1";
name = "checkbashisms-${version}";
src = fetchurl {
- url = "mirror://sourceforge/project/checkbaskisms/${version}/checkbashisms";
- sha256 = "1vm0yykkg58ja9ianfpm3mgrpah109gj33b41kl0jmmm11zip9jd";
+ url = "mirror://debian/pool/main/d/devscripts/devscripts_${version}.tar.xz";
+ sha256 = "1yaygfzv5jzvcbahz6sdfnzhch9mxgsrlsym2ad62nk0svsnp24n";
};
buildInputs = [ perl ];
diff --git a/pkgs/development/tools/misc/cquery/default.nix b/pkgs/development/tools/misc/cquery/default.nix
new file mode 100644
index 00000000000..09220b2dc65
--- /dev/null
+++ b/pkgs/development/tools/misc/cquery/default.nix
@@ -0,0 +1,61 @@
+{ stdenv, fetchFromGitHub, makeWrapper
+, cmake, llvmPackages, ncurses }:
+
+let
+ src = fetchFromGitHub {
+ owner = "cquery-project";
+ repo = "cquery";
+ rev = "e45a9ebbb6d8bfaf8bf1a3135b6faa910afea37e";
+ sha256 = "049gkqbamq4r2nz9yjcwq369zrmwrikzbhfza2x2vndqzaavq5yg";
+ fetchSubmodules = true;
+ };
+
+ stdenv = llvmPackages.stdenv;
+
+in
+stdenv.mkDerivation rec {
+ name = "cquery-${version}";
+ version = "2018-03-25";
+
+ inherit src;
+
+ nativeBuildInputs = [ cmake makeWrapper ];
+ buildInputs = with llvmPackages; [ clang clang-unwrapped llvm ncurses ];
+
+ cmakeFlags = [
+ "-DSYSTEM_CLANG=ON"
+ "-DCLANG_CXX=ON"
+ ];
+
+ shell = stdenv.shell;
+ postFixup = ''
+ # We need to tell cquery where to find the standard library headers.
+
+ standard_library_includes="\\\"-isystem\\\", \\\"${if (stdenv.hostPlatform.libc == "glibc") then stdenv.cc.libc.dev else stdenv.cc.libc}/include\\\""
+ standard_library_includes+=", \\\"-isystem\\\", \\\"${llvmPackages.libcxx}/include/c++/v1\\\""
+ export standard_library_includes
+
+ wrapped=".cquery-wrapped"
+ export wrapped
+
+ mv $out/bin/cquery $out/bin/$wrapped
+ substituteAll ${./wrapper} $out/bin/cquery
+ chmod --reference=$out/bin/$wrapped $out/bin/cquery
+ '';
+
+ doInstallCheck = true;
+ installCheckPhase = ''
+ pushd ${src}
+ $out/bin/cquery --ci --clang-sanity-check && \
+ $out/bin/cquery --ci --test-unit
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A c/c++ language server powered by libclang";
+ homepage = https://github.com/cquery-project/cquery;
+ license = licenses.mit;
+ platforms = platforms.linux ++ platforms.darwin;
+ maintainers = [ maintainers.tobim ];
+ priority = 3;
+ };
+}
diff --git a/pkgs/development/tools/misc/cquery/wrapper b/pkgs/development/tools/misc/cquery/wrapper
new file mode 100644
index 00000000000..f0bea41536d
--- /dev/null
+++ b/pkgs/development/tools/misc/cquery/wrapper
@@ -0,0 +1,12 @@
+#! @shell@ -e
+
+initString="--init={\"extraClangArguments\": [@standard_library_includes@"
+
+if [ "${NIX_CFLAGS_COMPILE}" != "" ]; then
+ read -a cflags_array <<< ${NIX_CFLAGS_COMPILE}
+ initString+=$(printf ', \"%s\"' "${cflags_array[@]}")
+fi
+
+initString+="]}"
+
+exec -a "$0" "@out@/bin/@wrapped@" "${initString}" "${extraFlagsArray[@]}" "$@"
diff --git a/pkgs/development/tools/misc/d-feet/default.nix b/pkgs/development/tools/misc/d-feet/default.nix
index b20f63e2625..ae8f17c213a 100644
--- a/pkgs/development/tools/misc/d-feet/default.nix
+++ b/pkgs/development/tools/misc/d-feet/default.nix
@@ -2,14 +2,14 @@
, python3Packages, wrapGAppsHook, gnome3, libwnck3, gobjectIntrospection }:
let
- version = "${major}.13";
- major = "0.3";
+ pname = "d-feet";
+ version = "0.3.13";
in python3Packages.buildPythonApplication rec {
- name = "d-feet-${version}";
+ name = "${pname}-${version}";
format = "other";
src = fetchurl {
- url = "mirror://gnome/sources/d-feet/${major}/d-feet-${version}.tar.xz";
+ url = "mirror://gnome/sources/d-feet/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
sha256 = "1md3lzs55sg04ds69dbginpxqvgg3qnf1lfx3vmsxph6bbd2y6ll";
};
@@ -18,6 +18,14 @@ in python3Packages.buildPythonApplication rec {
propagatedBuildInputs = with python3Packages; [ pygobject3 pep8 ];
+ passthru = {
+ updateScript = gnome3.updateScript {
+ packageName = pname;
+ attrPath = "dfeet";
+ versionPolicy = "none";
+ };
+ };
+
meta = {
description = "D-Feet is an easy to use D-Bus debugger";
@@ -26,7 +34,7 @@ in python3Packages.buildPythonApplication rec {
and invoke methods on those interfaces.
'';
- homepage = https://wiki.gnome.org/action/show/Apps/DFeet;
+ homepage = https://wiki.gnome.org/Apps/DFeet;
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ ktosiek ];
diff --git a/pkgs/development/tools/misc/lttng-tools/default.nix b/pkgs/development/tools/misc/lttng-tools/default.nix
index 236402b5663..8294b68126f 100644
--- a/pkgs/development/tools/misc/lttng-tools/default.nix
+++ b/pkgs/development/tools/misc/lttng-tools/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "lttng-tools-${version}";
- version = "2.10.2";
+ version = "2.10.3";
src = fetchurl {
url = "https://lttng.org/files/lttng-tools/${name}.tar.bz2";
- sha256 = "17wsdhkw8c8gb0d1bcgw4dfx2ljrq4rzgpi8sb9y9hs6pbwqy0xk";
+ sha256 = "0x3b6jps053s9pxc7bslj5qsn2z53yf0fk9pcrmxjf9yri17n3qr";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/tools/misc/pwndbg/default.nix b/pkgs/development/tools/misc/pwndbg/default.nix
new file mode 100644
index 00000000000..df4b91a79b0
--- /dev/null
+++ b/pkgs/development/tools/misc/pwndbg/default.nix
@@ -0,0 +1,48 @@
+{ stdenv, fetchFromGitHub, pythonPackages, makeWrapper, gdb }:
+
+stdenv.mkDerivation rec {
+ name = "pwndbg-2018-04-06";
+
+ src = fetchFromGitHub {
+ owner = "pwndbg";
+ repo = "pwndbg";
+ rev = "e225ba9f647ab8f7f4871075529c0ec239f43300";
+ sha256 = "1s6m93qi3baclgqqii4fnmzjmg0c6ipkscg7xiljaj5z4bs371j4";
+ };
+
+ nativeBuildInputs = [ makeWrapper ];
+
+ propagatedBuildInputs = with pythonPackages; [
+ future
+ isort
+ psutil
+ pycparser
+ pyelftools
+ python-ptrace
+ ROPGadget
+ six
+ unicorn
+ pygments
+ enum34
+ ];
+
+ installPhase = ''
+ mkdir -p $out/share/pwndbg
+ cp -r *.py pwndbg $out/share/pwndbg
+ makeWrapper ${gdb}/bin/gdb $out/bin/pwndbg \
+ --add-flags "-q -x $out/share/pwndbg/gdbinit.py"
+ '';
+
+ preFixup = ''
+ sed -i "/import sys/a import sys; sys.path[0:0] = '$PYTHONPATH'.split(':')" \
+ $out/share/pwndbg/gdbinit.py
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Exploit Development and Reverse Engineering with GDB Made Easy";
+ homepage = http://pwndbg.com;
+ license = licenses.mit;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ mic92 ];
+ };
+}
diff --git a/pkgs/development/tools/misc/sysbench/default.nix b/pkgs/development/tools/misc/sysbench/default.nix
index d72fc86d7ee..dbd036d03fd 100644
--- a/pkgs/development/tools/misc/sysbench/default.nix
+++ b/pkgs/development/tools/misc/sysbench/default.nix
@@ -2,7 +2,7 @@
, libaio }:
stdenv.mkDerivation rec {
- name = "sysbench-1.0.13";
+ name = "sysbench-1.0.14";
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ vim mysql.connector-c libaio ];
@@ -10,8 +10,8 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "akopytov";
repo = "sysbench";
- rev = "1.0.13";
- sha256 = "1inxyjpcyv2ag3k5riwlaq91362y16yks75vs2crmhjxlxdspy8c";
+ rev = "1.0.14";
+ sha256 = "0mp1wqdm87zqyn55z23qf1izqz7ijgcbsysdwqndd98w6m5d86rp";
};
meta = {
diff --git a/pkgs/development/tools/mypy/default.nix b/pkgs/development/tools/mypy/default.nix
index 7e8725745c2..2fb6a8b7d4e 100644
--- a/pkgs/development/tools/mypy/default.nix
+++ b/pkgs/development/tools/mypy/default.nix
@@ -2,14 +2,14 @@
buildPythonApplication rec {
pname = "mypy";
- version = "0.570";
+ version = "0.580";
# Tests not included in pip package.
doCheck = false;
src = fetchPypi {
inherit pname version;
- sha256 = "09cz0h4d6xcdqlchw080nkjlwki3mgjrlvfnj5hxxwi3cgv9imw3";
+ sha256 = "1ng3j3nmsklrg8middvc9ycvv87hx5dxh4b96s9pc3w1d49mmn9v";
};
propagatedBuildInputs = [ lxml typed-ast psutil ];
diff --git a/pkgs/development/tools/ocaml/js_of_ocaml/compiler.nix b/pkgs/development/tools/ocaml/js_of_ocaml/compiler.nix
index 11df26818c1..6d269552f62 100644
--- a/pkgs/development/tools/ocaml/js_of_ocaml/compiler.nix
+++ b/pkgs/development/tools/ocaml/js_of_ocaml/compiler.nix
@@ -8,13 +8,13 @@ else
stdenv.mkDerivation rec {
name = "js_of_ocaml-compiler-${version}";
- version = "3.0.0";
+ version = "3.1.0";
src = fetchFromGitHub {
owner = "ocsigen";
repo = "js_of_ocaml";
rev = version;
- sha256 = "17w1pqjk521jd4yp34miyif0cxjxchnw59xhj188qfl635ykb4k8";
+ sha256 = "17a0kb39bcx2qq41cq7kjrxghm67l1yahrs47yakgb1avna0pqd9";
};
buildInputs = [ ocaml findlib jbuilder cmdliner cppo ];
diff --git a/pkgs/development/tools/ocaml/js_of_ocaml/ppx_deriving_json.nix b/pkgs/development/tools/ocaml/js_of_ocaml/ppx_deriving_json.nix
new file mode 100644
index 00000000000..8f32887c5bf
--- /dev/null
+++ b/pkgs/development/tools/ocaml/js_of_ocaml/ppx_deriving_json.nix
@@ -0,0 +1,15 @@
+{ stdenv, ocaml, findlib, jbuilder, js_of_ocaml-compiler
+, js_of_ocaml, ppx_deriving
+}:
+
+stdenv.mkDerivation rec {
+ name = "js_of_ocaml-ppx_deriving_json-${version}";
+
+ inherit (js_of_ocaml-compiler) version src installPhase meta;
+
+ buildInputs = [ ocaml findlib jbuilder ];
+
+ propagatedBuildInputs = [ js_of_ocaml ppx_deriving ];
+
+ buildPhase = "jbuilder build -p js_of_ocaml-ppx_deriving_json";
+}
diff --git a/pkgs/development/tools/rust/bindgen/default.nix b/pkgs/development/tools/rust/bindgen/default.nix
index 73e64c83696..61adb0b73fb 100644
--- a/pkgs/development/tools/rust/bindgen/default.nix
+++ b/pkgs/development/tools/rust/bindgen/default.nix
@@ -4,27 +4,27 @@
rustPlatform.buildRustPackage rec {
name = "rust-bindgen-${version}";
- version = "0.32.1";
+ version = "0.35.0";
src = fetchFromGitHub {
owner = "rust-lang-nursery";
repo = "rust-bindgen";
- rev = version;
- sha256 = "15m1y468c7ixzxwx29wazag0i19a3bmzjp53np6b62sf9wfzbsfa";
+ rev = "v${version}";
+ sha256 = "1qs67mkvrzwzi69rlq49p098h247197f2jiq1f4ivw9naggq5c7v";
};
nativeBuildInputs = [ makeWrapper ];
- buildInputs = [ llvmPackages.clang-unwrapped ];
+ buildInputs = [ llvmPackages.clang-unwrapped.lib ];
configurePhase = ''
- export LIBCLANG_PATH="${llvmPackages.clang-unwrapped}/lib"
+ export LIBCLANG_PATH="${llvmPackages.clang-unwrapped.lib}/lib"
'';
postInstall = ''
- wrapProgram $out/bin/bindgen --set LIBCLANG_PATH "${llvmPackages.clang-unwrapped}/lib"
+ wrapProgram $out/bin/bindgen --set LIBCLANG_PATH "${llvmPackages.clang-unwrapped.lib}/lib"
'';
- cargoSha256 = "01h0y5phdv3ab8mk2yxw8lgg9783pjjnjl4087iddqhqanlv600d";
+ cargoSha256 = "0bh22fkynn1z83230pbj0gg5k3948f6m0idzyqjyfg1f3qmnzdi6";
doCheck = false; # A test fails because it can't find standard headers in NixOS
diff --git a/pkgs/development/tools/skopeo/default.nix b/pkgs/development/tools/skopeo/default.nix
index de0d7fc54de..bb99e887ac6 100644
--- a/pkgs/development/tools/skopeo/default.nix
+++ b/pkgs/development/tools/skopeo/default.nix
@@ -1,29 +1,33 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub, runCommand
-, gpgme, libgpgerror, devicemapper, btrfs-progs, pkgconfig, ostree, libselinux }:
+, gpgme, libgpgerror, devicemapper, btrfs-progs, pkgconfig, ostree, libselinux
+, go-md2man }:
with stdenv.lib;
let
- version = "0.1.28";
+ version = "0.1.29";
src = fetchFromGitHub {
rev = "v${version}";
owner = "projectatomic";
repo = "skopeo";
- sha256 = "068nwrr3nr27alravcq1sxyhdd5jjr24213vdgn1dqva3885gbi0";
+ sha256 = "1lhzbyj2mm25x12s7g2jx4v8w19izjwlgx4lml13r5yy1spn65k2";
};
defaultPolicyFile = runCommand "skopeo-default-policy.json" {} "cp ${src}/default-policy.json $out";
+ goPackagePath = "github.com/projectatomic/skopeo";
+
in
buildGoPackage rec {
name = "skopeo-${version}";
- inherit src;
+ inherit src goPackagePath;
+
+ outputs = [ "bin" "man" "out" ];
- goPackagePath = "github.com/projectatomic/skopeo";
excludedPackages = "integration";
- nativeBuildInputs = [ pkgconfig ];
+ nativeBuildInputs = [ pkgconfig (lib.getBin go-md2man) ];
buildInputs = [ gpgme libgpgerror devicemapper btrfs-progs ostree libselinux ];
buildFlagsArray = "-ldflags= -X github.com/projectatomic/skopeo/vendor/github.com/containers/image/signature.systemDefaultPolicyPath=${defaultPolicyFile}";
@@ -33,10 +37,17 @@ buildGoPackage rec {
export CGO_LDFLAGS="-L${getLib gpgme}/lib -L${getLib libgpgerror}/lib -L${getLib devicemapper}/lib"
'';
+ postBuild = ''
+ # depends on buildGoPackage not changing …
+ pushd ./go/src/${goPackagePath}
+ make install-docs MANINSTALLDIR="$man"
+ popd
+ '';
+
meta = {
description = "A command line utility for various operations on container images and image repositories";
homepage = https://github.com/projectatomic/skopeo;
- maintainers = with stdenv.lib.maintainers; [ vdemeester ];
+ maintainers = with stdenv.lib.maintainers; [ vdemeester lewo ];
license = stdenv.lib.licenses.asl20;
};
}
diff --git a/pkgs/development/tools/spirv-tools/default.nix b/pkgs/development/tools/spirv-tools/default.nix
index fc6bf1921e2..35e0d276101 100644
--- a/pkgs/development/tools/spirv-tools/default.nix
+++ b/pkgs/development/tools/spirv-tools/default.nix
@@ -3,19 +3,18 @@
let
spirv_sources = {
- # `vulkan-loader` requires a specific version of `spirv-tools` and `spirv-headers` as specified in
- # `/external_revisions/spirv-tools_revision`.
+ # `glslang` requires a specific version of `spirv-tools` and `spirv-headers` as specified in `known-good.json`.
tools = fetchFromGitHub {
owner = "KhronosGroup";
repo = "SPIRV-Tools";
- rev = "7e2d26c77b606b21af839b37fd21381c4a669f23";
- sha256 = "1nlzj081v1xdyfz30nfs8hfcnqd072fra127h46gav179f04kss2";
+ rev = "9e19fc0f31ceaf1f6bc907dbf17dcfded85f2ce8";
+ sha256 = "1zpwznq0fyvkzs5h9nnkr7g6svr0w8z6zx62xgnss17c2a5cz0lk";
};
headers = fetchFromGitHub {
owner = "KhronosGroup";
repo = "SPIRV-Headers";
- rev = "2bb92e6fe2c6aa410152fc6c63443f452acb1a65";
- sha256 = "1rgjd7kpa7xpbwpzd6m3f6yq44s9xn5ddhz135213pxwbi5c0c26";
+ rev = "ce309203d7eceaf908bea8862c27f3e0749f7d00";
+ sha256 = "1sv1iy2d46sg7r3xy591db6fn9h78wd079yvfa87vwmwsdkhiqhm";
};
};
@@ -23,7 +22,7 @@ in
stdenv.mkDerivation rec {
name = "spirv-tools-${version}";
- version = "2017-09-01";
+ version = "2018-02-05";
src = spirv_sources.tools;
patchPhase = ''ln -sv ${spirv_sources.headers} external/spirv-headers'';
diff --git a/pkgs/development/tools/toxiproxy/default.nix b/pkgs/development/tools/toxiproxy/default.nix
new file mode 100644
index 00000000000..10a27e2e3b8
--- /dev/null
+++ b/pkgs/development/tools/toxiproxy/default.nix
@@ -0,0 +1,26 @@
+{ lib, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+ name = "toxiproxy-${version}";
+ version = "2.1.3";
+ src = fetchFromGitHub {
+ owner = "Shopify";
+ repo = "toxiproxy";
+ rev = "v${version}";
+ sha256 = "1a7yry846iwi9cs9xam2vjbw73fjy45agjrwk214k0n1ziaawz2f";
+ };
+
+ goPackagePath = "github.com/Shopify/toxiproxy";
+ subPackages = ["cmd" "cli"];
+ buildFlagsArray = "-ldflags=-X github.com/Shopify/toxiproxy.Version=v${version}";
+
+ postInstall = ''
+ mv $bin/bin/cli $bin/bin/toxiproxy-cli
+ mv $bin/bin/cmd $bin/bin/toxiproxy-cmd
+ '';
+
+ meta = {
+ description = "Proxy for for simulating network conditions.";
+ maintainers = with lib.maintainers; [ avnik ];
+ };
+}
diff --git a/pkgs/development/web/grails/default.nix b/pkgs/development/web/grails/default.nix
index b15109757f2..80731de84fb 100644
--- a/pkgs/development/web/grails/default.nix
+++ b/pkgs/development/web/grails/default.nix
@@ -11,11 +11,11 @@ let
in
stdenv.mkDerivation rec {
name = "grails-${version}";
- version = "3.3.2";
+ version = "3.3.3";
src = fetchurl {
url = "https://github.com/grails/grails-core/releases/download/v${version}/grails-${version}.zip";
- sha256 = "0rr1q84zgr8xvy40w0wq9ai9gilyn6by4j6av02aszjxciqblvzd";
+ sha256 = "087bd1vjpg0wghqbkyldmzma7ziqi7hf745chfr31x8cn5ys0jji";
};
buildInputs = [ unzip ];
diff --git a/pkgs/development/web/nodejs/v6.nix b/pkgs/development/web/nodejs/v6.nix
index d3e43371c6d..6dd9dd6f8e1 100644
--- a/pkgs/development/web/nodejs/v6.nix
+++ b/pkgs/development/web/nodejs/v6.nix
@@ -5,7 +5,7 @@ let
in
buildNodejs {
inherit enableNpm;
- version = "6.13.1";
- sha256 = "0ikasm20wq56gvn3j28hxjwbvqqzqj5w0p2sc3ss00v58w5kady4";
+ version = "6.14.1";
+ sha256 = "1hxyasy42ih9brgp37n9j85s5vwir3g32k5i3j0vx2kizy4xlphi";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode.patch ./no-xcodebuild.patch ];
}
diff --git a/pkgs/development/web/nodejs/v8.nix b/pkgs/development/web/nodejs/v8.nix
index 939322a1bc9..942c6cc3fd8 100644
--- a/pkgs/development/web/nodejs/v8.nix
+++ b/pkgs/development/web/nodejs/v8.nix
@@ -5,7 +5,7 @@ let
in
buildNodejs {
inherit enableNpm;
- version = "8.10.0";
- sha256 = "06lhnasmbpwvyv5dfc9kmjj32djllwgvb1xl778cnswdc5qlwbdp";
+ version = "8.11.1";
+ sha256 = "12kmsh5cl72dq5hzik1cczn2n5crbfqqd1xmrzqgryipx98yp9j0";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ./no-xcodebuild.patch ];
}
diff --git a/pkgs/development/web/nodejs/v9.nix b/pkgs/development/web/nodejs/v9.nix
index 71d0f6e21f9..85d6dd7493e 100644
--- a/pkgs/development/web/nodejs/v9.nix
+++ b/pkgs/development/web/nodejs/v9.nix
@@ -5,7 +5,7 @@ let
in
buildNodejs {
inherit enableNpm;
- version = "9.8.0";
- sha256 = "1b0ynhvnq25w29rmshim0dn4m1dknkn1p52idi6acpzswi4vn1h7";
+ version = "9.10.1";
+ sha256 = "1widvxbc8sp8p8vp7q38b3zy0w1nx4iaqmp81s6bvaqs08h7wfy9";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
}
diff --git a/pkgs/games/anki/default.nix b/pkgs/games/anki/default.nix
index 673ad585dbf..efc30c1bbf3 100644
--- a/pkgs/games/anki/default.nix
+++ b/pkgs/games/anki/default.nix
@@ -28,7 +28,7 @@ let
qt4 = pyqt4.qt;
in buildPythonApplication rec {
- version = "2.0.50";
+ version = "2.0.51";
name = "anki-${version}";
src = fetchurl {
@@ -37,7 +37,7 @@ in buildPythonApplication rec {
# "http://ankisrs.net/download/mirror/${name}.tgz"
# "http://ankisrs.net/download/mirror/archive/${name}.tgz"
];
- sha256 = "05hq1f9m4vv3zpv7d05m4y6d82ibp1kk0gpwp73vza1ffq0wdcip";
+ sha256 = "17prfkz9hbz1sdb62ddi6m4jwsb50n08myhai997x8d0r0xxilw0";
};
propagatedBuildInputs = [ pyqt4 sqlalchemy pyaudio beautifulsoup httplib2 ]
diff --git a/pkgs/games/commandergenius/default.nix b/pkgs/games/commandergenius/default.nix
index f77dfe8ba94..70413f0f941 100644
--- a/pkgs/games/commandergenius/default.nix
+++ b/pkgs/games/commandergenius/default.nix
@@ -1,19 +1,24 @@
{ lib, stdenv, fetchFromGitHub, SDL2, SDL2_image, pkgconfig
-, libvorbis, libGL, boost, cmake }:
-
+, libvorbis, libGL, boost, cmake, zlib, curl, SDL2_mixer, python3
+}:
stdenv.mkDerivation rec {
name = "commandergenius-${version}";
- version = "1822release";
+ version = "2.2.0";
src = fetchFromGitHub {
owner = "gerstrong";
repo = "Commander-Genius";
rev = "v${version}";
- sha256 = "07vxg8p1dnnkajzs5nifxpwn4mdd1hxsw05jl25gvaimpl9p2qc8";
+ sha256 = "1hjx4j325vj1ayxi3j2dpplpd3x0iqx98gyb093ld7dfnsyilbph";
};
- buildInputs = [ SDL2 SDL2_image libGL boost libvorbis ];
+ buildInputs = [ SDL2 SDL2_image SDL2_mixer libGL boost libvorbis zlib curl python3 ];
+
+ preConfigure = ''
+ export cmakeFlags="$cmakeFlags -DCMAKE_INSTALL_PREFIX=$out -DSHAREDIR=$out/share"
+ export makeFlags="$makeFlags DESTDIR=$(out)"
+ '';
nativeBuildInputs = [ cmake pkgconfig ];
diff --git a/pkgs/games/factorio/default.nix b/pkgs/games/factorio/default.nix
index b3319bae973..2cc63e9ecde 100644
--- a/pkgs/games/factorio/default.nix
+++ b/pkgs/games/factorio/default.nix
@@ -19,15 +19,15 @@ let
binDists = {
x86_64-linux = let bdist = bdistForArch { inUrl = "linux64"; inTar = "x64"; }; in {
alpha = {
- stable = bdist { sha256 = "1i25q8x80qdpmf00lvml67gyklrfvmr4gfyakrx954bq8giiy4ll"; fetcher = authenticatedFetch; };
- experimental = bdist { sha256 = "0s7cn5xhzwn793bmvlhlmibhbxdpfmpnpn33k5a4hdprc5gc27rg"; version = "0.16.24"; fetcher = authenticatedFetch; };
+ stable = bdist { sha256 = "0gxa8wh0py4l1ym57sfq792kfh00khi0f9ykjlmjqqkdksyxgddf"; fetcher = authenticatedFetch; };
+ experimental = bdist { sha256 = "1iy3k9zrw3za9mabf89lfl8i20xfij66ih5vngz5xfyy99mwxiy6"; version = "0.16.35"; fetcher = authenticatedFetch; };
};
headless = {
- stable = bdist { sha256 = "0v5sypz1q6x6hi6k5cyi06f9ld0cky80l0z64psd3v2ax9hyyh8h"; };
- experimental = bdist { sha256 = "1ff4yjybiqr5kw583hmxkbrbxa3haj4bkjj8sx811c3s269gspi2"; version = "0.16.24"; };
+ stable = bdist { sha256 = "0n2j86af41dkbsyyy5lawjpdd7c0lvfdwxpwbj1m8v470i1g8zq4"; };
+ experimental = bdist { sha256 = "0x4miyva1lmiyv3lb4savdlycia1kzw6bri4qj9b2jmyw1dr8x8h"; version = "0.16.35"; };
};
demo = {
- stable = bdist { sha256 = "0aca8gks7wl7yi821bcca16c94zcc41agin5j0vfz500i0sngzzw"; version = "0.15.36"; };
+ stable = bdist { sha256 = "1z04rdlcxnfwami0l5nm292w4ydfhr1s6rcl8hxrsa73d4xk5lch"; version = "0.16.36"; };
experimental = bdist { };
};
};
@@ -49,7 +49,7 @@ let
actual = binDists.${stdenv.system}.${releaseType}.${branch} or (throw "Factorio: unsupported platform");
bdistForArch = arch: { sha256 ? null
- , version ? "0.15.40"
+ , version ? "0.16.36"
, fetcher ? fetchurl
, nameMut ? x: x
}:
diff --git a/pkgs/games/freecell-solver/default.nix b/pkgs/games/freecell-solver/default.nix
index 263bf5c29df..a096b17b71a 100644
--- a/pkgs/games/freecell-solver/default.nix
+++ b/pkgs/games/freecell-solver/default.nix
@@ -6,11 +6,11 @@ with stdenv.lib;
stdenv.mkDerivation rec{
name = "freecell-solver-${version}";
- version = "4.16.0";
+ version = "4.18.0";
src = fetchurl {
url = "http://fc-solve.shlomifish.org/downloads/fc-solve/${name}.tar.xz";
- sha256 = "1ihrmxbsli7c1lm5gw9xgrakyn4nsmaj1zgk5gza2ywnfpgdb0ac";
+ sha256 = "1cmaib69pijmcpvgjvrdry8j4xys8l906l80b8z21vvyhdwrfdnn";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/games/freeciv/default.nix b/pkgs/games/freeciv/default.nix
index 82d573e47a2..b0bead7bbf9 100644
--- a/pkgs/games/freeciv/default.nix
+++ b/pkgs/games/freeciv/default.nix
@@ -12,7 +12,7 @@ let
gtkName = if gtkClient then "-gtk" else "";
name = "freeciv";
- version = "2.5.10";
+ version = "2.5.11";
in
stdenv.mkDerivation {
name = "${name}${sdlName}${gtkName}-${version}";
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "mirror://sourceforge/freeciv/${name}-${version}.tar.bz2";
- sha256 = "00mkzhfcbc27d8m7hj644h8lyc9mb8nhqfcngc52zkidarb438f8";
+ sha256 = "1bcs4mj4kzkpyrr0yryydmn0dzcqazvwrf02nfs7r5zya9lm572c";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/games/gcompris/default.nix b/pkgs/games/gcompris/default.nix
new file mode 100644
index 00000000000..89b9fca06ea
--- /dev/null
+++ b/pkgs/games/gcompris/default.nix
@@ -0,0 +1,37 @@
+{stdenv, cmake, qtbase, fetchurl, qtdeclarative, qtmultimedia, qttools, qtsensors, qmlbox2d, gettext, qtquickcontrols, qtgraphicaleffects, makeWrapper,
+ gst_all_1, ninja
+}:
+stdenv.mkDerivation rec {
+ version = "0.90";
+ name = "gcompris-${version}";
+
+ src = fetchurl {
+ url = "http://gcompris.net/download/qt/src/gcompris-qt-${version}.tar.xz";
+ sha256 = "1i5adxnhig849qxwi3c4v7r84q6agx1zxkd69fh4y7lcmq2qiaza";
+ };
+
+ cmakeFlags = "-DQML_BOX2D_LIBRARY=${qmlbox2d}/${qtbase.qtQmlPrefix}/Box2D.2.0";
+
+ nativeBuildInputs = [ cmake ninja makeWrapper ];
+ buildInputs = [ qtbase qtdeclarative qttools qtsensors qmlbox2d gettext qtquickcontrols qtmultimedia qtgraphicaleffects] ++ soundPlugins;
+ soundPlugins = with gst_all_1; [gst-plugins-good gstreamer gst-plugins-base gst-plugins-bad];
+
+ postInstall = ''
+ # install .desktop and icon file
+ mkdir -p $out/share/applications/
+ mkdir -p $out/share/icons/hicolor/256x256/apps/
+ cp ../org.kde.gcompris.desktop $out/share/applications/gcompris.desktop
+ cp -r ../images/256-apps-gcompris-qt.png $out/share/icons/hicolor/256x256/apps/gcompris-qt.png
+
+ wrapProgram "$out/bin/gcompris-qt" \
+ --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A high quality educational software suite, including a large number of activities for children aged 2 to 10";
+ homepage = "https://gcompris.net/";
+ maintainers = [ maintainers.guibou ];
+ platforms = [ "i686-linux" "x86_64-linux" ];
+ license = licenses.gpl3Plus;
+ };
+}
diff --git a/pkgs/games/gzdoom/default.nix b/pkgs/games/gzdoom/default.nix
index 62ab349afa8..d622299cf0f 100644
--- a/pkgs/games/gzdoom/default.nix
+++ b/pkgs/games/gzdoom/default.nix
@@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
name = "gzdoom-${version}";
- version = "3.2.5";
+ version = "3.3.0";
src = fetchFromGitHub {
owner = "coelckers";
repo = "gzdoom";
rev = "g${version}";
- sha256 = "1x4v3cv448wqx4cdhs28nxrv0lm2c2pd9i2hm92q9lg5yw8vv19q";
+ sha256 = "1q1hjfxhksny236a058ys36mpdl434vbmgapqr51n82pia838h2l";
};
nativeBuildInputs = [ cmake makeWrapper ];
diff --git a/pkgs/games/tome4/default.nix b/pkgs/games/tome4/default.nix
index 83f34f5b04a..19cf026933e 100644
--- a/pkgs/games/tome4/default.nix
+++ b/pkgs/games/tome4/default.nix
@@ -32,7 +32,8 @@ in stdenv.mkDerivation rec {
libGLU openal libpng libvorbis SDL2 SDL2_ttf SDL2_image
];
- enableParallelBuilding = true;
+ # disable parallel building as it caused sporadic build failures
+ enableParallelBuilding = false;
NIX_CFLAGS_COMPILE = [
"-I${SDL2_image}/include/SDL2"
@@ -81,6 +82,6 @@ in stdenv.mkDerivation rec {
homepage = https://te4.org/;
license = licenses.gpl3;
maintainers = with maintainers; [ chattered peterhoeg ];
- platforms = platforms.linux;
+ platforms = subtractLists ["aarch64-linux"] platforms.linux;
};
}
diff --git a/pkgs/misc/cups/default.nix b/pkgs/misc/cups/default.nix
index a82afc1e472..feeb73a27e9 100644
--- a/pkgs/misc/cups/default.nix
+++ b/pkgs/misc/cups/default.nix
@@ -22,7 +22,9 @@ stdenv.mkDerivation rec {
patches = [
(fetchpatch {
- url = "https://git.archlinux.org/svntogit/packages.git/plain/trunk/cups-systemd-socket.patch?h=packages/cups";
+ name = "cups"; # weird name to avoid change (for now)
+ url = "https://git.archlinux.org/svntogit/packages.git/plain/trunk/cups-systemd-socket.patch"
+ + "?h=packages/cups&id=41fefa22ac518";
sha256 = "1ddgdlg9s0l2ph6l8lx1m1lx6k50gyxqi3qiwr44ppq1rxs80ny5";
})
./cups-clean-dirty.patch
diff --git a/pkgs/misc/cups/filters.nix b/pkgs/misc/cups/filters.nix
index 72e265360bf..287451d338d 100644
--- a/pkgs/misc/cups/filters.nix
+++ b/pkgs/misc/cups/filters.nix
@@ -9,11 +9,11 @@ let
in stdenv.mkDerivation rec {
name = "cups-filters-${version}";
- version = "1.20.1";
+ version = "1.20.2";
src = fetchurl {
url = "http://openprinting.org/download/cups-filters/${name}.tar.xz";
- sha256 = "0qix1whz5n4ijnl6d44f1v8nzkpv99wqjyrby8vx6xnpskw5hsxk";
+ sha256 = "1f6dw476m9gc94jy38f79a5aa40mk91yc81cdwrsz42wlz3nbdq2";
};
nativeBuildInputs = [ pkgconfig makeWrapper ];
@@ -62,6 +62,5 @@ in stdenv.mkDerivation rec {
description = "Backends, filters, and other software that was once part of the core CUPS distribution but is no longer maintained by Apple Inc";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
- maintainers = with stdenv.lib.maintainers; [ layus ];
};
}
diff --git a/pkgs/misc/documentation-highlighter/loader.js b/pkgs/misc/documentation-highlighter/loader.js
new file mode 100644
index 00000000000..4ad7dbf24b5
--- /dev/null
+++ b/pkgs/misc/documentation-highlighter/loader.js
@@ -0,0 +1,7 @@
+/* This file is NOT part of highlight.js */
+document.onreadystatechange = function () {
+ var listings = document.querySelectorAll('.programlisting, .screen');
+ for (i = 0; i < listings.length; ++i) {
+ hljs.highlightBlock(listings[i]);
+ }
+}
diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix
index ed29ee1575c..b18ae7762df 100644
--- a/pkgs/misc/drivers/hplip/default.nix
+++ b/pkgs/misc/drivers/hplip/default.nix
@@ -70,6 +70,7 @@ pythonPackages.buildPythonApplication {
pygobject2
reportlab
usbutils
+ sip
] ++ stdenv.lib.optionals withQt5 [
pyqt5
];
diff --git a/pkgs/misc/emulators/retroarch/cores.nix b/pkgs/misc/emulators/retroarch/cores.nix
index d6b3b6a9870..8a3f7796aef 100644
--- a/pkgs/misc/emulators/retroarch/cores.nix
+++ b/pkgs/misc/emulators/retroarch/cores.nix
@@ -232,10 +232,11 @@ in with stdenv.lib.licenses;
mame = (mkLibRetroCore {
core = "mame";
+ version = "2018-03-02";
src = fetchRetro {
repo = "mame";
- rev = "9f8a36adeb4dc54ec2ecac992ce91bcdb377519e";
- sha256 = "0blfvq28hgv9kkpijd8c9d9sa5g2qr448clwi7wrj8kqfdnrr8m1";
+ rev = "893f1ac2231b348b63209fd5b2545f770458ae8f";
+ sha256 = "1j9p82q9jhf5lf4w392zd09bq0j4iw1afhznymg0v60jv592h3gz";
};
description = "Port of MAME to libretro";
license = gpl2Plus;
diff --git a/pkgs/misc/frescobaldi/default.nix b/pkgs/misc/frescobaldi/default.nix
index 84272992f2b..af4c54d9d0d 100644
--- a/pkgs/misc/frescobaldi/default.nix
+++ b/pkgs/misc/frescobaldi/default.nix
@@ -1,21 +1,22 @@
-{ stdenv, fetchurl, pythonPackages, lilypond}:
+{ lib, fetchFromGitHub, python3Packages, lilypond }:
-pythonPackages.buildPythonApplication rec {
+python3Packages.buildPythonApplication rec {
name = "frescobaldi-${version}";
- version = "2.0.16";
+ version = "3.0.0";
- src = fetchurl {
- url = "https://github.com/wbsoft/frescobaldi/releases/download/"
- + "v2.0.16/${name}.tar.gz";
- sha256 = "12pabvq5b2lq84q3kx8lh02zh6ali6v4wnin2k2ycnm45mk9ms6q";
+ src = fetchFromGitHub {
+ owner = "wbsoft";
+ repo = "frescobaldi";
+ rev = "v${version}";
+ sha256 = "1yn18pwsjxpxz5j3yfysmaif8k0vqahj5c7ays9cxsylpg9hl7jd";
};
- propagatedBuildInputs = with pythonPackages; [ lilypond
- pyqt4 poppler-qt4 pygame ];
+ propagatedBuildInputs = with python3Packages; [ lilypond pygame python-ly poppler-qt5 ];
- patches = [ ./setup.cfg.patch ./python-path.patch ];
+ # no tests in shipped with upstream
+ doCheck = false;
- meta = with stdenv.lib; {
+ meta = with lib; {
homepage = http://frescobaldi.org/;
description = ''Frescobaldi is a LilyPond sheet music text editor'';
longDescription = ''
@@ -31,7 +32,7 @@ pythonPackages.buildPythonApplication rec {
fonts and keyboard shortcuts
'';
license = licenses.gpl2Plus;
- maintainers = [ maintainers.sepi ];
+ maintainers = with maintainers; [ sepi ma27 ];
platforms = platforms.all;
};
}
diff --git a/pkgs/misc/frescobaldi/python-path.patch b/pkgs/misc/frescobaldi/python-path.patch
deleted file mode 100644
index 6c54d9f208e..00000000000
--- a/pkgs/misc/frescobaldi/python-path.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -u frescobaldi-2.0.16.old/frescobaldi frescobaldi-2.0.16/frescobaldi
---- frescobaldi-2.0.16/frescobaldi 2014-10-24 11:29:28.705687224 +0200
-+++ frescobaldi-2.0.16.new/frescobaldi 2014-10-24 11:31:08.086444793 +0200
-@@ -1,4 +1,4 @@
--#!/usr/bin/python
-+#!/usr/bin/env python
- import sys
- import frescobaldi_app.main
- import app
-Common subdirectories: frescobaldi-2.0.16/frescobaldi_app and frescobaldi-2.0.16.new/frescobaldi_app
-Common subdirectories: frescobaldi-2.0.16/macosx and frescobaldi-2.0.16.new/macosx
diff --git a/pkgs/misc/frescobaldi/setup.cfg.patch b/pkgs/misc/frescobaldi/setup.cfg.patch
deleted file mode 100644
index 502cdd61966..00000000000
--- a/pkgs/misc/frescobaldi/setup.cfg.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Common subdirectories: frescobaldi-2.0.16.old/build and frescobaldi-2.0.16/build
-Common subdirectories: frescobaldi-2.0.16.old/frescobaldi_app and frescobaldi-2.0.16/frescobaldi_app
-Common subdirectories: frescobaldi-2.0.16.old/macosx and frescobaldi-2.0.16/macosx
-diff -u frescobaldi-2.0.16.old/setup.cfg frescobaldi-2.0.16/setup.cfg
---- frescobaldi-2.0.16.old/setup.cfg 2012-02-05 07:08:24.000000000 +0100
-+++ frescobaldi-2.0.16/setup.cfg 2014-10-24 15:08:48.141335620 +0200
-@@ -1,6 +1,2 @@
--[bdist_wininst]
--bitmap=frescobaldi-wininst.bmp
--install-script=frescobaldi-wininst.py
--
- [sdist]
- force-manifest=1
diff --git a/pkgs/misc/screensavers/light-locker/default.nix b/pkgs/misc/screensavers/light-locker/default.nix
index d081581d255..f38851d6fa0 100644
--- a/pkgs/misc/screensavers/light-locker/default.nix
+++ b/pkgs/misc/screensavers/light-locker/default.nix
@@ -16,18 +16,15 @@
stdenv.mkDerivation rec {
name = "${basename}-${version}";
basename = "light-locker";
- version = "1.7.0";
+ version = "1.8.0";
src = fetchFromGitHub {
owner = "the-cavalry";
repo = basename;
rev = "v${version}";
- sha256 = "0ygkp5vgkx2nfhfql6j2jsfay394gda23ir3sx4f72j4agsirjvj";
+ sha256 = "1zsafc10bmliknf12h3mgy7f73lvgph0q0wkaqp42iagmw11yaj8";
};
- # Patch so that systemd is "found" when configuring.
- patches = [ ./systemd.patch ];
-
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ which xfce.xfce4-dev-tools glib systemd
libX11 libXScrnSaver libXxf86misc gtk3 dbus-glib wrapGAppsHook ];
diff --git a/pkgs/misc/screensavers/light-locker/systemd.patch b/pkgs/misc/screensavers/light-locker/systemd.patch
deleted file mode 100644
index 9cba8b9c0d2..00000000000
--- a/pkgs/misc/screensavers/light-locker/systemd.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/configure.ac.in b/configure.ac.in
-index f7d5f5d..341bc83 100644
---- a/configure.ac.in
-+++ b/configure.ac.in
-@@ -424,7 +424,7 @@ AC_ARG_WITH(systemd,
- [with_systemd=$withval], [with_systemd=auto])
-
- PKG_CHECK_MODULES(SYSTEMD,
-- [libsystemd-login],
-+ [libsystemd],
- [have_systemd=yes], [have_systemd=no])
-
- if test "x$with_systemd" = "xauto" ; then
diff --git a/pkgs/misc/screensavers/pipes/default.nix b/pkgs/misc/screensavers/pipes/default.nix
index 8539db5e002..6e4ae16e9c8 100644
--- a/pkgs/misc/screensavers/pipes/default.nix
+++ b/pkgs/misc/screensavers/pipes/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
homepage = https://github.com/pipeseroni/pipes.sh;
description = "Animated pipes terminal screensaver";
license = licenses.mit;
- maintainers = [ maintainers.matthiasbeyer ];
+ maintainers = [ ];
platforms = platforms.unix;
};
}
diff --git a/pkgs/misc/themes/greybird/default.nix b/pkgs/misc/themes/greybird/default.nix
index 26c37171642..1221c660687 100644
--- a/pkgs/misc/themes/greybird/default.nix
+++ b/pkgs/misc/themes/greybird/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "greybird";
- version = "3.22.6";
+ version = "3.22.7";
src = fetchFromGitHub {
owner = "shimmerproject";
repo = "${pname}";
rev = "v${version}";
- sha256 = "16rifkyy8l4v03rx85j7m6rfdal99l1xdmghysh95r6lx4y6r01i";
+ sha256 = "118k0bb780h54i2vn5my5r6vbkk134899xwp4aigw5a289xzryvb";
};
nativeBuildInputs = [ autoreconfHook sass glib libxml2 gdk_pixbuf librsvg ];
diff --git a/pkgs/misc/themes/materia-theme/default.nix b/pkgs/misc/themes/materia-theme/default.nix
index 58001183bd9..69a874d07c3 100644
--- a/pkgs/misc/themes/materia-theme/default.nix
+++ b/pkgs/misc/themes/materia-theme/default.nix
@@ -1,17 +1,17 @@
-{ stdenv, fetchFromGitHub, gnome3, libxml2, gtk-engine-murrine, gdk_pixbuf, librsvg }:
+{ stdenv, fetchFromGitHub, gnome3, libxml2, gtk-engine-murrine, gdk_pixbuf, librsvg, bc }:
stdenv.mkDerivation rec {
name = "materia-theme-${version}";
- version = "20180110";
+ version = "20180321";
src = fetchFromGitHub {
owner = "nana-4";
repo = "materia-theme";
rev = "v${version}";
- sha256 = "1knfcc4bqibshbk5s4461brzw780gj7c1i42b168c6jw9p6br6bf";
+ sha256 = "1nj9ylg9g74smd2kdyzlamdw9cg0f3jz77vn5898drjyscw5qpp6";
};
- nativeBuildInputs = [ gnome3.glib libxml2 ];
+ nativeBuildInputs = [ gnome3.glib libxml2 bc ];
buildInputs = [ gnome3.gnome-themes-standard gdk_pixbuf librsvg ];
@@ -22,14 +22,15 @@ stdenv.mkDerivation rec {
installPhase = ''
patchShebangs install.sh
sed -i install.sh \
- -e "s|^gnomever=.*$|gnomever=${gnome3.version}|" \
- -e "s|/usr||"
- destdir="$out" ./install.sh
+ -e "s|if .*which gnome-shell.*;|if true;|" \
+ -e "s|CURRENT_GS_VERSION=.*$|CURRENT_GS_VERSION=${gnome3.version}|"
+ mkdir -p $out/share/themes
+ ./install.sh --dest $out/share/themes
rm $out/share/themes/*/COPYING
'';
meta = with stdenv.lib; {
- description = "A Material Design theme for GNOME/GTK+ based desktop environments (formerly Flat-Plat)";
+ description = "A Material Design theme for GNOME/GTK+ based desktop environments";
homepage = https://github.com/nana-4/materia-theme;
license = licenses.gpl2;
platforms = platforms.all;
diff --git a/pkgs/os-specific/darwin/apple-sdk/frameworks.nix b/pkgs/os-specific/darwin/apple-sdk/frameworks.nix
index 081f713d054..f8c424089f0 100644
--- a/pkgs/os-specific/darwin/apple-sdk/frameworks.nix
+++ b/pkgs/os-specific/darwin/apple-sdk/frameworks.nix
@@ -14,7 +14,6 @@ with frameworks; with libs; {
AppKitScripting = [];
AppleScriptKit = [];
AppleScriptObjC = [];
- AppleShareClientCore = [ CoreServices ];
AudioToolbox = [ AudioUnit CoreAudio CF CoreMIDI ];
AudioUnit = [ Carbon CoreAudio CF ];
AudioVideoBridging = [ Foundation ];
@@ -84,12 +83,10 @@ with frameworks; with libs; {
PCSC = [ CoreData ];
PreferencePanes = [];
PubSub = [];
- Python = [ ApplicationServices ];
QTKit = [ CoreMediaIO CoreMedia MediaToolbox QuickTime VideoToolbox ];
QuickLook = [ ApplicationServices CF ];
QuickTime = [ ApplicationServices AudioUnit Carbon CoreAudio CoreServices OpenGL QuartzCore ];
Ruby = [];
- RubyCocoa = [];
SceneKit = [];
ScreenSaver = [];
Scripting = [];
@@ -105,11 +102,9 @@ with frameworks; with libs; {
SystemConfiguration = [ CF Security ];
TWAIN = [ Carbon ];
Tcl = [];
- Tk = [ ApplicationServices Carbon X11 ];
VideoDecodeAcceleration = [ CF CoreVideo ];
VideoToolbox = [ CF CoreMedia CoreVideo ];
WebKit = [ ApplicationServices Carbon JavaScriptCore OpenGL ];
- X11 = []; # used by Tk, should this exist?
# Umbrellas
Accelerate = [ CoreWLAN IOBluetooth ];
diff --git a/pkgs/os-specific/linux/criu/default.nix b/pkgs/os-specific/linux/criu/default.nix
index 42ab0092f7d..fc7a66dcf1b 100644
--- a/pkgs/os-specific/linux/criu/default.nix
+++ b/pkgs/os-specific/linux/criu/default.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
name = "criu-${version}";
- version = "3.8";
+ version = "3.8.1";
src = fetchurl {
url = "http://download.openvz.org/criu/${name}.tar.bz2";
- sha256 = "0gmvbnb5wa3f4nzam7gssclfai8g5363dhp8qc7q32dcx4wxbgam";
+ sha256 = "0csyhsc5d6wkcjyvsp6h9x8zxn3zk574s84gfmy3gjagv3nwqd51";
};
enableParallelBuilding = true;
diff --git a/pkgs/os-specific/linux/ena/default.nix b/pkgs/os-specific/linux/ena/default.nix
index 9ed691d69f0..e3f382ababc 100644
--- a/pkgs/os-specific/linux/ena/default.nix
+++ b/pkgs/os-specific/linux/ena/default.nix
@@ -1,14 +1,14 @@
{ lib, stdenv, fetchFromGitHub, kernel, kmod }:
stdenv.mkDerivation rec {
- version = "1.5.0";
+ version = "1.5.2";
name = "ena-${version}-${kernel.version}";
src = fetchFromGitHub {
owner = "amzn";
repo = "amzn-drivers";
rev = "ena_linux_${version}";
- sha256 = "1h3vnwa2129advyws69n0sqyra4nz68mng6g84whbvhzjyx810sj";
+ sha256 = "18wf36092kr3zlpnqdkcdlim3vvjxy5f24zzsv4fwa7xg12mcfjm";
};
hardeningDisable = [ "pic" ];
diff --git a/pkgs/os-specific/linux/fatrace/default.nix b/pkgs/os-specific/linux/fatrace/default.nix
index fd955676775..6f6418edc3e 100644
--- a/pkgs/os-specific/linux/fatrace/default.nix
+++ b/pkgs/os-specific/linux/fatrace/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "fatrace-${version}";
- version = "0.12";
+ version = "0.13";
src = fetchurl {
url = "http://launchpad.net/fatrace/trunk/${version}/+download/${name}.tar.bz2";
- sha256 = "0szn86rbbvmjcw192vjhhgc3v99s5lm2kg93gk1yzm6ay831grsh";
+ sha256 = "0hrh45bpzncw0jkxw3x2smh748r65k2yxvfai466043bi5q0d2vx";
};
buildInputs = [ python3 which ];
diff --git a/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix b/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix
index acdba5987bb..724498b960c 100644
--- a/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix
+++ b/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix
@@ -2,51 +2,13 @@
stdenv.mkDerivation rec {
name = "firmware-linux-nonfree-${version}";
- version = "2018-01-04-${src.iwlRev}";
+ version = "2018-03-20";
- # The src runCommand automates the process of building a merged repository of both
- #
- # https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/
- # https://git.kernel.org/cgit/linux/kernel/git/iwlwifi/linux-firmware.git/
- #
- # This gives us up to date iwlwifi firmware as well as
- # the usual set of firmware. firmware/linux-firmware usually lags kernel releases
- # so iwlwifi cards will fail to load on newly released kernels.
- #
- # To update, go to the above repositories and look for latest tags / commits, then
- # update version to the more recent commit date
-
- src = runCommand "firmware-linux-nonfree-src-merged-${version}" {
- shallowSince = "2017-10-01";
- baseRev = "65b1c68c63f974d72610db38dfae49861117cae2";
- iwlRev = "iwlwifi-fw-2017-11-15";
-
- # When updating this, you need to let it run with a wrong hash, in order to find out the desired hash
- # randomly mutate the hash to break out of fixed hash, when updating
- outputHash = "1anr7fblxfcrfrrgq98kzy64yrwygc2wdgi47skdmjxhi3wbrvxz";
-
- outputHashAlgo = "sha256";
- outputHashMode = "recursive";
-
- # Doing the download on a remote machine just duplicates network
- # traffic, so don't do that.
- preferLocalBuild = true;
-
- nativeBuildInputs = [ cacert git gnupg ];
- } ''
- git init src && (
- cd src
- git config user.email "build-daemon@nixos.org"
- git config user.name "Nixos Build Daemon $name"
- git remote add base https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
- git remote add iwl https://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/linux-firmware.git
- git fetch --shallow-since=$shallowSince base
- git fetch --shallow-since=$shallowSince iwl
- git checkout -b work $baseRev
- git merge $iwlRev)
- rm -rf src/.git
- cp -a src $out
- '';
+ src = fetchgit {
+ url = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git";
+ rev = "8c1e439c967a50f0698d61aafdba3841aff10db0";
+ sha256 = "110vxgahyx5dvylqrxsm5cmx4a32cl2zchvm6cgc270jz75fg7wd";
+ };
preInstall = ''
mkdir -p $out
diff --git a/pkgs/os-specific/linux/firmware/raspberrypi/default.nix b/pkgs/os-specific/linux/firmware/raspberrypi/default.nix
index c71f1c0ea2e..d00f1b14837 100644
--- a/pkgs/os-specific/linux/firmware/raspberrypi/default.nix
+++ b/pkgs/os-specific/linux/firmware/raspberrypi/default.nix
@@ -2,36 +2,25 @@
stdenv.mkDerivation rec {
name = "raspberrypi-firmware-${version}";
- version = "1.20171029";
+ version = "1.20180328";
src = fetchFromGitHub {
owner = "raspberrypi";
repo = "firmware";
rev = version;
- sha256 = "12aisha8rlr28310hakps04z9p45kd2wvks0w1vxw1kwfh1ncy9s";
+ sha256 = "19h4lv11idy268pyrq21c5gsff77d5xr9xjkpmzfpcq34gjh3x21";
};
- dontStrip = true; # Stripping breaks some of the binaries
-
installPhase = ''
mkdir -p $out/share/raspberrypi/boot
cp -R boot/* $out/share/raspberrypi/boot
- cp -R hardfp/opt/vc/* $out
- cp opt/vc/LICENCE $out/share/raspberrypi
-
- for f in $out/bin/*; do
- if isELF "$f"; then
- patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$f"
- patchelf --set-rpath "$out/lib" "$f"
- fi
- done
'';
meta = with stdenv.lib; {
description = "Firmware for the Raspberry Pi board";
- homepage = https://github.com/raspberrypi;
- license = licenses.unfree;
+ homepage = https://github.com/raspberrypi/firmware;
+ license = licenses.unfreeRedistributableFirmware; # See https://github.com/raspberrypi/firmware/blob/master/boot/LICENCE.broadcom
platforms = [ "armv6l-linux" "armv7l-linux" "aarch64-linux" ];
- maintainers = with maintainers; [ viric tavyc ];
+ maintainers = with maintainers; [ dezgeg viric tavyc ];
};
}
diff --git a/pkgs/os-specific/linux/firmware/raspberrypi/tools-dont-install-sysv-init-scripts.patch b/pkgs/os-specific/linux/firmware/raspberrypi/tools-dont-install-sysv-init-scripts.patch
new file mode 100644
index 00000000000..e12aeeb0cdb
--- /dev/null
+++ b/pkgs/os-specific/linux/firmware/raspberrypi/tools-dont-install-sysv-init-scripts.patch
@@ -0,0 +1,20 @@
+diff --git a/interface/vmcs_host/linux/vcfiled/CMakeLists.txt b/interface/vmcs_host/linux/vcfiled/CMakeLists.txt
+index aed0e83..b325676 100644
+--- a/interface/vmcs_host/linux/vcfiled/CMakeLists.txt
++++ b/interface/vmcs_host/linux/vcfiled/CMakeLists.txt
+@@ -17,15 +17,6 @@ target_link_libraries(vcfiled
+ install(TARGETS vcfiled
+ RUNTIME DESTINATION sbin)
+
+-configure_file (etc/init.d/vcfiled ${PROJECT_BINARY_DIR}/etc/init.d/vcfiled)
+-
+-# script to start up vcfiled at start of day
+-install(PROGRAMS ${PROJECT_BINARY_DIR}/etc/init.d/vcfiled
+- DESTINATION /etc/init.d)
+-# install locally to the installation directory too
+-install(PROGRAMS ${PROJECT_BINARY_DIR}/etc/init.d/vcfiled
+- DESTINATION ${VMCS_INSTALL_PREFIX}/share/install)
+-
+ # test program for vcfiled_check library
+ add_executable(vcfiled_lock_test vcfiled_lock_test.c)
+ target_link_libraries(vcfiled_lock_test vcfiled_check)
diff --git a/pkgs/os-specific/linux/firmware/raspberrypi/tools.nix b/pkgs/os-specific/linux/firmware/raspberrypi/tools.nix
new file mode 100644
index 00000000000..7f4c9dae166
--- /dev/null
+++ b/pkgs/os-specific/linux/firmware/raspberrypi/tools.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub, cmake, pkgconfig }:
+
+stdenv.mkDerivation rec {
+ name = "raspberrypi-tools-${version}";
+ version = "2018-02-05";
+
+ src = fetchFromGitHub {
+ owner = "raspberrypi";
+ repo = "userland";
+ rev = "a343dcad1dae4e93f4bfb99496697e207f91027e";
+ sha256 = "1z4qrwjb7x3a45mx978q8vyhnx068sgzhymm4z0ayhckji4ngal1";
+ };
+
+ patches = [ ./tools-dont-install-sysv-init-scripts.patch ];
+
+ nativeBuildInputs = [ cmake pkgconfig ];
+
+ preConfigure = ''
+ cmakeFlagsArray+=("-DVMCS_INSTALL_PREFIX=$out")
+ '' + stdenv.lib.optionalString stdenv.isAarch64 ''
+ cmakeFlagsArray+=("-DARM64=1")
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Userland tools for the Raspberry Pi board";
+ homepage = https://github.com/raspberrypi/userland;
+ license = licenses.bsd3;
+ platforms = [ "armv6l-linux" "armv7l-linux" "aarch64-linux" ];
+ maintainers = with maintainers; [ dezgeg viric tavyc ];
+ };
+}
diff --git a/pkgs/os-specific/linux/fuse/common.nix b/pkgs/os-specific/linux/fuse/common.nix
index a10a4f466c7..95011653ad0 100644
--- a/pkgs/os-specific/linux/fuse/common.nix
+++ b/pkgs/os-specific/linux/fuse/common.nix
@@ -28,7 +28,9 @@ in stdenv.mkDerivation rec {
url = "https://github.com/libfuse/libfuse/commit/914871b20a901e3e1e981c92bc42b1c93b7ab81b.patch";
sha256 = "1w4j6f1awjrycycpvmlv0x5v9gprllh4dnbjxl4dyl2jgbkaw6pa";
})
- ++ stdenv.lib.optional isFuse3 ./fuse3-install.patch;
+ ++ stdenv.lib.optional isFuse3 ./fuse3-install.patch
+ # TODO: Only relevant for 3.2.2 (opened an upstream issue)
+ ++ stdenv.lib.optional isFuse3 ./fuse3-fix-version.patch;
nativeBuildInputs = if isFuse3
@@ -63,11 +65,11 @@ in stdenv.mkDerivation rec {
postFixup = "cd $out\n" + (if isFuse3 then ''
mv bin/mount.fuse3 bin/mount.fuse
- install -D -m555 bin/mount.fuse $common/bin/mount.fuse
- install -D -m444 etc/udev/rules.d/99-fuse.rules $common/etc/udev/rules.d/99-fuse.rules
+ install -D -m444 etc/fuse.conf $common/etc/fuse.conf
+ install -D -m444 etc/udev/rules.d/99-fuse3.rules $common/etc/udev/rules.d/99-fuse.rules
install -D -m444 share/man/man8/mount.fuse.8.gz $common/share/man/man8/mount.fuse.8.gz
'' else ''
- cp ${fusePackages.fuse_3.common}/bin/mount.fuse bin/mount.fuse
+ cp ${fusePackages.fuse_3.common}/etc/fuse.conf etc/fuse.conf
cp ${fusePackages.fuse_3.common}/etc/udev/rules.d/99-fuse.rules etc/udev/rules.d/99-fuse.rules
cp ${fusePackages.fuse_3.common}/share/man/man8/mount.fuse.8.gz share/man/man8/mount.fuse.8.gz
'');
diff --git a/pkgs/os-specific/linux/fuse/default.nix b/pkgs/os-specific/linux/fuse/default.nix
index 97744968d7b..ddf280bbe2f 100644
--- a/pkgs/os-specific/linux/fuse/default.nix
+++ b/pkgs/os-specific/linux/fuse/default.nix
@@ -13,8 +13,8 @@ in {
};
fuse_3 = mkFuse {
- version = "3.2.1";
- sha256Hash = "19bsvb5lc8k1i0h5ld109kixn6mdshzvg3y7820k9mnw34kh09y0";
+ version = "3.2.2";
+ sha256Hash = "1a0x4vpyg9lc6clwvx995mk0v6jqd37xabzp9rpdir37x814g3wh";
maintainers = [ maintainers.primeos ];
};
}
diff --git a/pkgs/os-specific/linux/fuse/fuse3-fix-version.patch b/pkgs/os-specific/linux/fuse/fuse3-fix-version.patch
new file mode 100644
index 00000000000..b6351aab3c0
--- /dev/null
+++ b/pkgs/os-specific/linux/fuse/fuse3-fix-version.patch
@@ -0,0 +1,8 @@
+--- a/meson.build 2018-04-01 01:05:19.612723597 +0200
++++ b/meson.build 2018-04-01 01:40:58.171109615 +0200
+@@ -1,4 +1,4 @@
+-project('libfuse3', 'c', version: '3.2.1',
++project('libfuse3', 'c', version: '3.2.2',
+ meson_version: '>= 0.38',
+ default_options: [ 'buildtype=debugoptimized' ])
+
diff --git a/pkgs/os-specific/linux/fuse/fuse3-install.patch b/pkgs/os-specific/linux/fuse/fuse3-install.patch
index f77639367ac..639dc7e07a4 100644
--- a/pkgs/os-specific/linux/fuse/fuse3-install.patch
+++ b/pkgs/os-specific/linux/fuse/fuse3-install.patch
@@ -1,6 +1,6 @@
---- a/util/install_helper.sh 1970-01-01 01:00:01.000000000 +0100
-+++ b/util/install_helper.sh 2017-09-21 23:43:50.703942577 +0200
-@@ -11,19 +11,11 @@
+--- a/util/install_helper.sh 2018-04-01 01:05:19.613723599 +0200
++++ b/util/install_helper.sh 2018-04-01 01:06:02.952845382 +0200
+@@ -11,22 +11,14 @@
udevrulesdir="$3"
prefix="${MESON_INSTALL_DESTDIR_PREFIX}"
@@ -14,11 +14,15 @@
-
install -D -m 644 "${MESON_SOURCE_ROOT}/util/udev.rules" \
- "${DESTDIR}/${udevrulesdir}/99-fuse3.rules"
-+ "${prefix}/${udevrulesdir}/99-fuse.rules"
++ "${prefix}/${udevrulesdir}/99-fuse3.rules"
install -D -m 755 "${MESON_SOURCE_ROOT}/util/init_script" \
- "${DESTDIR}/etc/init.d/fuse3"
+ "${prefix}/etc/init.d/fuse3"
+ install -D -m 644 "${MESON_SOURCE_ROOT}/util/fuse.conf" \
+- "${DESTDIR}/etc/fuse.conf"
++ "${prefix}/etc/fuse.conf"
+
if test -x /usr/sbin/update-rc.d && test -z "${DESTDIR}"; then
/usr/sbin/update-rc.d fuse3 start 34 S . start 41 0 6 . || /bin/true
diff --git a/pkgs/os-specific/linux/fwts/default.nix b/pkgs/os-specific/linux/fwts/default.nix
index c4c49515f04..c02bfb1615c 100644
--- a/pkgs/os-specific/linux/fwts/default.nix
+++ b/pkgs/os-specific/linux/fwts/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "fwts-${version}";
- version = "18.02.00";
+ version = "18.03.00";
src = fetchzip {
url = "http://fwts.ubuntu.com/release/fwts-V${version}.tar.gz";
- sha256 = "0z8yvicp4qk1xi8xmbrngnc294fjdnb9qn5d9lnyls4i6mmvpr2d";
+ sha256 = "1f2gdnaygsj0spd6a559bzf3wii7l59k3sk49rjbbdb9g77nkhg2";
stripRoot = false;
};
diff --git a/pkgs/os-specific/linux/hdparm/default.nix b/pkgs/os-specific/linux/hdparm/default.nix
index 2c5fd70ac95..cbdbefeb2a0 100644
--- a/pkgs/os-specific/linux/hdparm/default.nix
+++ b/pkgs/os-specific/linux/hdparm/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "hdparm-9.55";
+ name = "hdparm-9.56";
src = fetchurl {
url = "mirror://sourceforge/hdparm/${name}.tar.gz";
- sha256 = "1ivdvrzimaayiq03by8mcq0mhmdljndj06h012zkdpw34irnpixm";
+ sha256 = "1np42qyhb503khvacnjcl3hb1dqly68gj0a1xip3j5qhbxlyvybg";
};
diff --git a/pkgs/os-specific/linux/i2c-tools/default.nix b/pkgs/os-specific/linux/i2c-tools/default.nix
index 1f67743af0d..eacac156c97 100644
--- a/pkgs/os-specific/linux/i2c-tools/default.nix
+++ b/pkgs/os-specific/linux/i2c-tools/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "i2c-tools-${version}";
- version = "3.1.2";
+ version = "4.0";
src = fetchurl {
- url = "http://http.debian.net/debian/pool/main/i/i2c-tools/i2c-tools_${version}.orig.tar.bz2";
- sha256 = "0hd4c1w8lnwc3j95h3vpd125170l1d4myspyrlpamqx6wbr6jpnv";
+ url = "https://www.kernel.org/pub/software/utils/i2c-tools/${name}.tar.xz";
+ sha256 = "1mi8mykvl89y6liinc9jv1x8m2q093wrdc2hm86a47n524fcl06r";
};
buildInputs = [ perl ];
diff --git a/pkgs/os-specific/linux/ixgbevf/default.nix b/pkgs/os-specific/linux/ixgbevf/default.nix
index ffdf0d678d7..6bcc548ba52 100644
--- a/pkgs/os-specific/linux/ixgbevf/default.nix
+++ b/pkgs/os-specific/linux/ixgbevf/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "ixgbevf-${version}-${kernel.version}";
- version = "4.3.3";
+ version = "4.3.4";
src = fetchurl {
url = "mirror://sourceforge/e1000/ixgbevf-${version}.tar.gz";
- sha256 = "0kq8y0944kaprw445wb8iswdck2jmc0xpkx0iv6idy3r5cc4hvyg";
+ sha256 = "122zn9nd8f95bpidiiinc8xaizypkirqs8vlmsdy2iv3w65md9k3";
};
nativeBuildInputs = kernel.moduleBuildDependencies;
diff --git a/pkgs/os-specific/linux/jfbview/default.nix b/pkgs/os-specific/linux/jfbview/default.nix
index fdec72dd09c..dafe9069b5a 100644
--- a/pkgs/os-specific/linux/jfbview/default.nix
+++ b/pkgs/os-specific/linux/jfbview/default.nix
@@ -15,13 +15,13 @@ in
stdenv.mkDerivation rec {
name = "${package}-${version}";
- version = "0.5.4";
+ version = "0.5.5";
src = fetchFromGitHub {
repo = "JFBView";
owner = "jichu4n";
rev = version;
- sha256 = "0p12b5n07yfkmfswjdb3a4c5c50jcphl030n3i71djcq4jjvrxlw";
+ sha256 = "1w844ha9lp49ik79yfislib34455nl9gcksbx22hiz30gmqwzakz";
};
hardeningDisable = [ "format" ];
@@ -64,7 +64,5 @@ stdenv.mkDerivation rec {
homepage = https://seasonofcode.com/pages/jfbview.html;
license = licenses.asl20;
platforms = platforms.linux;
- # incompatible with latest mupdf, see https://github.com/jichu4n/JFBView/issues/17
- broken = true;
};
}
diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix
index faf15156458..a53786ebcbd 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.14.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix
@@ -3,13 +3,13 @@
with stdenv.lib;
buildLinux (args // rec {
- version = "4.14.30";
+ version = "4.14.32";
# branchVersion needs to be x.y
extraMeta.branch = concatStrings (intersperse "." (take 2 (splitString "." version)));
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "0ib6zqn1psffgffmvqmh9x3wdh15yd8z0gwwkamvgwa8xcpv0nvw";
+ sha256 = "105n8c7yq576xlrqr5pm1x5m8wwnrzhfmyqcn51rl233qsz7j2fb";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-4.15.nix b/pkgs/os-specific/linux/kernel/linux-4.15.nix
index f88ddadca8f..bc22563bed9 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.15.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.15.nix
@@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
- version = "4.15.13";
+ version = "4.15.15";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = concatStrings (intersperse "." (take 3 (splitString "." "${version}.0")));
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "1iam2adh6ghzv0lgh60c03pzrhv4axxw6k78xh209v889xdfjbhx";
+ sha256 = "1pys0gcc1x01scfqc1d25k64bqf264vfn3pybfcnmvkggvpyhmhb";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-4.16.nix b/pkgs/os-specific/linux/kernel/linux-4.16.nix
new file mode 100644
index 00000000000..26b69f896c9
--- /dev/null
+++ b/pkgs/os-specific/linux/kernel/linux-4.16.nix
@@ -0,0 +1,18 @@
+{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
+
+with stdenv.lib;
+
+buildLinux (args // rec {
+ version = "4.16";
+
+ # modDirVersion needs to be x.y.z, will automatically add .0 if needed
+ modDirVersion = concatStrings (intersperse "." (take 3 (splitString "." "${version}.0")));
+
+ # branchVersion needs to be x.y
+ extraMeta.branch = concatStrings (intersperse "." (take 2 (splitString "." version)));
+
+ src = fetchurl {
+ url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
+ sha256 = "1f91pf3lq3kmbg82k4v8bwxcl4r4iaixrx6nsmrh4flz7j7drxk3";
+ };
+} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-4.4.nix b/pkgs/os-specific/linux/kernel/linux-4.4.nix
index 766eef83ddf..0b05387472e 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.4.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.4.nix
@@ -1,11 +1,11 @@
{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
buildLinux (args // rec {
- version = "4.4.124";
+ version = "4.4.126";
extraMeta.branch = "4.4";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "0a91phmdpa82s3mqnyw2an3j4v18cksvy1akdyxf5w2byq51qd2r";
+ sha256 = "0n6dk6pdaf5bsgfr1vkv2xy2zhgrnffrgnivqpkj94d8rp2g9j79";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-4.9.nix b/pkgs/os-specific/linux/kernel/linux-4.9.nix
index 4832c79d02f..c46c0eb3747 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.9.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.9.nix
@@ -1,11 +1,11 @@
{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
buildLinux (args // rec {
- version = "4.9.90";
+ version = "4.9.92";
extraMeta.branch = "4.9";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "0mbl0d6z8yx7bn5m804kv17bh64pd0w0nc8lls4pw335jx7hkc0v";
+ sha256 = "0r3fg3za68p6ls40svryqxixmlia2ql3hqnd1kvvrdw6wqgap382";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-copperhead-hardened.nix b/pkgs/os-specific/linux/kernel/linux-copperhead-hardened.nix
index 680c5d8d64f..c19809bcdbd 100644
--- a/pkgs/os-specific/linux/kernel/linux-copperhead-hardened.nix
+++ b/pkgs/os-specific/linux/kernel/linux-copperhead-hardened.nix
@@ -3,9 +3,9 @@
with stdenv.lib;
let
- version = "4.15.13";
+ version = "4.15.15";
revision = "a";
- sha256 = "0zmamaf600jja3m2i41rysxq0rqixiz1vvd1nf5bd8piqkd8dbvf";
+ sha256 = "08jsdnkfqcigcr87yhszbnz8gh62vdmxdwlr38gjxximv95k1gf7";
# modVersion needs to be x.y.z, will automatically add .0 if needed
modVersion = concatStrings (intersperse "." (take 3 (splitString "." "${version}.0")));
diff --git a/pkgs/os-specific/linux/kernel/manual-config.nix b/pkgs/os-specific/linux/kernel/manual-config.nix
index 60fb0064513..9833bb57baf 100644
--- a/pkgs/os-specific/linux/kernel/manual-config.nix
+++ b/pkgs/os-specific/linux/kernel/manual-config.nix
@@ -35,6 +35,8 @@ in {
extraMeta ? {},
# Whether to utilize the controversial import-from-derivation feature to parse the config
allowImportFromDerivation ? false,
+ # ignored
+ features ? null,
hostPlatform
}:
diff --git a/pkgs/os-specific/linux/mdadm/default.nix b/pkgs/os-specific/linux/mdadm/default.nix
index 85a65b8f824..7a59c2ea757 100644
--- a/pkgs/os-specific/linux/mdadm/default.nix
+++ b/pkgs/os-specific/linux/mdadm/default.nix
@@ -1,10 +1,21 @@
-{ stdenv
+{ stdenv, writeScript
, fetchurl, groff
, buildPlatform, hostPlatform
}:
assert stdenv.isLinux;
+let
+ sendmail-script = writeScript "sendmail-script" ''
+ #!/bin/sh
+
+ if [ -x /run/wrappers/bin/sendmail ]; then
+ /run/wrappers/bin/sendmail "$@"
+ else
+ /run/current-system/sw/bin/sendmail "$@"
+ fi
+ '';
+in
stdenv.mkDerivation rec {
name = "mdadm-4.0";
@@ -15,7 +26,7 @@ stdenv.mkDerivation rec {
# This is to avoid self-references, which causes the initrd to explode
# in size and in turn prevents mdraid systems from booting.
- allowedReferences = [ stdenv.cc.libc.out ];
+ allowedReferences = [ stdenv.cc.libc.out sendmail-script ];
patches = [ ./no-self-references.patch ];
@@ -32,7 +43,7 @@ stdenv.mkDerivation rec {
preConfigure = ''
sed -e 's@/lib/udev@''${out}/lib/udev@' \
-e 's@ -Werror @ @' \
- -e 's@/usr/sbin/sendmail@/run/wrappers/bin/sendmail@' -i Makefile
+ -e 's@/usr/sbin/sendmail@${sendmail-script}@' -i Makefile
'';
meta = {
diff --git a/pkgs/os-specific/linux/nmon/default.nix b/pkgs/os-specific/linux/nmon/default.nix
new file mode 100644
index 00000000000..ae6abeb1f56
--- /dev/null
+++ b/pkgs/os-specific/linux/nmon/default.nix
@@ -0,0 +1,27 @@
+{ fetchurl, stdenv, ncurses }:
+
+stdenv.mkDerivation rec {
+ name = "nmon-${version}";
+ version = "16g";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/nmon/lmon${version}.c";
+ sha256 = "127n8xvmg7byp42sm924mdr7hd3bsfsxpryzahl0cfsh7dlxv0ns";
+ };
+
+ buildInputs = [ ncurses ];
+ unpackPhase = ":";
+ buildPhase = "cc -o nmon ${src} -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM -lncurses -lm -g -D X86";
+ installPhase = ''
+ mkdir -p $out/bin
+ cp nmon $out/bin
+ '';
+
+ meta = with stdenv.lib; {
+ description = "AIX & Linux Performance Monitoring tool";
+ homepage = "http://nmon.sourceforge.net";
+ license = licenses.gpl3Plus;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ sveitser ];
+ };
+}
diff --git a/pkgs/os-specific/linux/phc-intel/default.nix b/pkgs/os-specific/linux/phc-intel/default.nix
index 81db8a9f26d..cc6ac64d58a 100644
--- a/pkgs/os-specific/linux/phc-intel/default.nix
+++ b/pkgs/os-specific/linux/phc-intel/default.nix
@@ -6,14 +6,14 @@ assert stdenv.lib.versionAtLeast kernel.version "4.10";
let
release = "0.4.0";
- revbump = "rev24"; # don't forget to change forum download id...
+ revbump = "rev25"; # don't forget to change forum download id...
in stdenv.mkDerivation rec {
name = "linux-phc-intel-${version}-${kernel.version}";
version = "${release}-${revbump}";
src = fetchurl {
- sha256 = "02b4j8ap1fy09z36pmpplbw4vpwqdi16jyzw5kl0a60ydgxkmrpz";
- url = "http://www.linux-phc.org/forum/download/file.php?id=178";
+ sha256 = "1w91hpphd8i0br7g5qra26jdydqar45zqwq6jq8yyz6l0vb10zlz";
+ url = "http://www.linux-phc.org/forum/download/file.php?id=194";
name = "phc-intel-pack-${revbump}.tar.bz2";
};
diff --git a/pkgs/os-specific/linux/radeontop/default.nix b/pkgs/os-specific/linux/radeontop/default.nix
index c87bec3a526..504d2595785 100644
--- a/pkgs/os-specific/linux/radeontop/default.nix
+++ b/pkgs/os-specific/linux/radeontop/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "radeontop-${version}";
- version = "2016-10-28";
+ version = "2018-03-25";
src = fetchFromGitHub {
- sha256 = "0y4rl8pm7p22s1ipyb75mlsk9qb6j4rd6nlqb3digmimnyxda1q3";
- rev = "v1.0";
+ sha256 = "0s41xy9nrzxmimkdg23fr86rqcfiw6iqh99zpph0j990l8yzmv9b";
+ rev = "v1.1";
repo = "radeontop";
owner = "clbr";
};
diff --git a/pkgs/os-specific/linux/selinux-sandbox/default.nix b/pkgs/os-specific/linux/selinux-sandbox/default.nix
index 71d2ee6e80a..431f5e9ef51 100644
--- a/pkgs/os-specific/linux/selinux-sandbox/default.nix
+++ b/pkgs/os-specific/linux/selinux-sandbox/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
substituteInPlace Makefile --replace "-m 4755" "-m 755"
substituteInPlace sandboxX.sh \
--replace "#!/bin/sh" "#!${bash}/bin/sh" \
- --replace "/usr/share/sandbox/start" "${placeholder "out"}/share/sandbox/start" \
+ --replace "/usr/share/sandbox/start" "$out/share/sandbox/start" \
--replace "/usr/bin/cut" "${coreutils}/bin/cut" \
--replace "/usr/bin/Xephyr" "${xorgserver}/bin/Xepyhr" \
--replace "secon" "${policycoreutils}/bin/secon"
diff --git a/pkgs/os-specific/linux/spl/default.nix b/pkgs/os-specific/linux/spl/default.nix
index 9460ee46c0f..e7139d17ace 100644
--- a/pkgs/os-specific/linux/spl/default.nix
+++ b/pkgs/os-specific/linux/spl/default.nix
@@ -66,9 +66,9 @@ in
};
splUnstable = common {
- version = "2018-01-24";
- rev = "23602fdb39e1254c669707ec9d2d0e6bcdbf1771";
- sha256 = "09py2dwj77f6s2qcnkwdslg5nxb3hq2bq39zpxpm6msqyifhl69h";
+ version = "2018-03-09";
+ rev = "43983eb2024ec6b3280e6e06a6fb621ee3bb2a41";
+ sha256 = "00h7z30hzxd09cfa44w7yv7zympvdwzdximfgjvpa1layzppjpsh";
};
splLegacyCrypto = common {
diff --git a/pkgs/os-specific/linux/sysdig/default.nix b/pkgs/os-specific/linux/sysdig/default.nix
index 5c7b2e69edf..6223c967619 100644
--- a/pkgs/os-specific/linux/sysdig/default.nix
+++ b/pkgs/os-specific/linux/sysdig/default.nix
@@ -3,13 +3,13 @@
with stdenv.lib;
stdenv.mkDerivation rec {
name = "sysdig-${version}";
- version = "0.20.0";
+ version = "0.21.0";
src = fetchFromGitHub {
owner = "draios";
repo = "sysdig";
rev = version;
- sha256 = "0nbsfm2jh5gjy2wh79f35rqk3c3z15lymmcz3gviw0jaxdv6drzw";
+ sha256 = "0dakxv2pkbsivavz09fwvav4dla7qzklnv45zb7x306gankkjgi1";
};
buildInputs = [
diff --git a/pkgs/os-specific/linux/sysvinit/default.nix b/pkgs/os-specific/linux/sysvinit/default.nix
index 6ec8abdc176..b516cfe65ed 100644
--- a/pkgs/os-specific/linux/sysvinit/default.nix
+++ b/pkgs/os-specific/linux/sysvinit/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, withoutInitTools ? false }:
-let version = "2.88dsf"; in
+let version = "2.89"; in
stdenv.mkDerivation {
name = (if withoutInitTools then "sysvtools" else "sysvinit") + "-" + version;
src = fetchurl {
url = "mirror://savannah/sysvinit/sysvinit-${version}.tar.bz2";
- sha256 = "068mvzaz808a673zigyaqb63xc8bndh2klk16zi5c83rw70wifv0";
+ sha256 = "0rdw5lgg2rpcfdmq90br388qr01w89vsqmpvrqcqjqsmxk9zw3c2";
};
prePatch = ''
diff --git a/pkgs/os-specific/linux/v4l2loopback/default.nix b/pkgs/os-specific/linux/v4l2loopback/default.nix
index 920c8c0bdee..3db2814a087 100644
--- a/pkgs/os-specific/linux/v4l2loopback/default.nix
+++ b/pkgs/os-specific/linux/v4l2loopback/default.nix
@@ -1,12 +1,14 @@
-{ stdenv, fetchurl, kernel, kmod }:
+{ stdenv, fetchFromGitHub, kernel, kmod }:
stdenv.mkDerivation rec {
name = "v4l2loopback-${version}-${kernel.version}";
- version = "0.9.1";
+ version = "0.11.0";
- src = fetchurl {
- url = "https://github.com/umlaeute/v4l2loopback/archive/v${version}.tar.gz";
- sha256 = "1crkhxlnskqrfj3f7jmiiyi5m75zmj7n0s26xz07wcwdzdf2p568";
+ src = fetchFromGitHub {
+ owner = "umlaeute";
+ repo = "v4l2loopback";
+ rev = "v${version}";
+ sha256 = "1wb5qmy13w8rl4279bwp69s4sb1x5hk5d2n563p1yk8yi567p2az";
};
hardeningDisable = [ "format" "pic" ];
diff --git a/pkgs/os-specific/linux/zfs/default.nix b/pkgs/os-specific/linux/zfs/default.nix
index aac1576261d..ae51d3d4f98 100644
--- a/pkgs/os-specific/linux/zfs/default.nix
+++ b/pkgs/os-specific/linux/zfs/default.nix
@@ -27,7 +27,7 @@ let
versionAtLeast kernel.version incompatibleKernelVersion then
throw ''
Linux v${kernel.version} is not yet supported by zfsonlinux v${version}.
- ${stdenv.lib.optional (!isUnstable) "Try zfsUnstable or set the NixOS option boot.zfs.enableUnstable."}
+ ${stdenv.lib.optionalString (!isUnstable) "Try zfsUnstable or set the NixOS option boot.zfs.enableUnstable."}
''
else stdenv.mkDerivation rec {
name = "zfs-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}";
@@ -161,21 +161,21 @@ in {
inherit spl;
};
- zfsUnstable = common {
+ zfsUnstable = common rec {
# comment/uncomment if breaking kernel versions are known
- incompatibleKernelVersion = null;
+ incompatibleKernelVersion = "4.16";
# this package should point to a version / git revision compatible with the latest kernel release
- version = "2018-02-02";
+ version = "2018-04-04";
- rev = "fbd42542686af053f0d162ec4630ffd4fff1cc30";
- sha256 = "0qzkwnnk7kz1hwvcaqlpzi5yspfhhmd2alklc07k056ddzbx52qb";
+ rev = "1724eb62debfaa48f5861660615d49a994945d94";
+ sha256 = "1adnmpn7b8zi5rq9r71flwx237vbysss1wywbck8407mcnrfaxzf";
isUnstable = true;
extraPatches = [
(fetchpatch {
- url = "https://github.com/Mic92/zfs/compare/fbd42542686af053f0d162ec4630ffd4fff1cc30...nixos-zfs-2018-02-02.patch";
- sha256 = "05wqwjm9648x60vkwxbp8l6z1q73r2a5l2ni28i2f4pla8s3ahln";
+ url = "https://github.com/Mic92/zfs/compare/${rev}...nixos-zfs-2018-02-02.patch";
+ sha256 = "1gqmgqi39qhk5kbbvidh8f2xqq25vj58i9x0wjqvcx6a71qj49ch";
})
];
diff --git a/pkgs/servers/caddy/default.nix b/pkgs/servers/caddy/default.nix
index ad8aeadeff0..d89e59d662e 100644
--- a/pkgs/servers/caddy/default.nix
+++ b/pkgs/servers/caddy/default.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "caddy-${version}";
- version = "0.10.11";
+ version = "0.10.12";
goPackagePath = "github.com/mholt/caddy";
@@ -12,7 +12,7 @@ buildGoPackage rec {
owner = "mholt";
repo = "caddy";
rev = "v${version}";
- sha256 = "04ls0s79dsyxnrpra55qvl0dk9nyvps59l034326r3bzk4jhb3q6";
+ sha256 = "0vmgswln72qqay73z39qn135sl5k71zlybr2jdrcjlmp4i7hrf88";
};
buildFlagsArray = ''
diff --git a/pkgs/servers/dns/knot-resolver/default.nix b/pkgs/servers/dns/knot-resolver/default.nix
index a222805fc45..09fda1b81b8 100644
--- a/pkgs/servers/dns/knot-resolver/default.nix
+++ b/pkgs/servers/dns/knot-resolver/default.nix
@@ -12,16 +12,16 @@ inherit (stdenv.lib) optional optionals optionalString concatStringsSep;
unwrapped = stdenv.mkDerivation rec {
name = "knot-resolver-${version}";
- version = "2.1.1";
+ version = "2.2.0";
src = fetchurl {
url = "http://secure.nic.cz/files/knot-resolver/${name}.tar.xz";
- sha256 = "0b9caee03d7cd30e1dc8fa0ce5fafade31fc1785314986bbf77cad446522a1b3";
+ sha256 = "1yhlwvpl81klyfb8hhvrhii99q7wvydi3vandmq9j7dvig6z1dvv";
};
outputs = [ "out" "dev" ];
- configurePhase = ":";
+ configurePhase = "patchShebangs scripts/";
nativeBuildInputs = [ pkgconfig which hexdump ];
diff --git a/pkgs/servers/ftp/bftpd/default.nix b/pkgs/servers/ftp/bftpd/default.nix
index 865b6f3faba..38fb7d250e3 100644
--- a/pkgs/servers/ftp/bftpd/default.nix
+++ b/pkgs/servers/ftp/bftpd/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "bftpd";
- version = "4.8";
+ version = "4.9";
# or fetchFromGitHub(owner,repo,rev) or fetchgit(rev)
src = fetchurl {
url = "mirror://sourceforge/project/${pname}/${pname}/${name}/${name}.tar.gz";
- sha256 = "1zlsajj6wjd9wcijzngmafhy2gr3sm5rphsr5n44rlmx1jdkk00c";
+ sha256 = "13pjil9cjggpi773m0516lszyqvwzlgcrmmj8yn9nc24rbxwvn6d";
};
buildInputs = [];
preConfigure = ''
diff --git a/pkgs/servers/ftp/pure-ftpd/default.nix b/pkgs/servers/ftp/pure-ftpd/default.nix
index 3728ee6c2a8..f41bb726a28 100644
--- a/pkgs/servers/ftp/pure-ftpd/default.nix
+++ b/pkgs/servers/ftp/pure-ftpd/default.nix
@@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
homepage = https://www.pureftpd.org;
license = licenses.isc; # with some parts covered by BSD3(?)
maintainers = [ maintainers.lethalman ];
- platforms = platforms.unix;
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix
index e2fc90a2296..5372b577e33 100644
--- a/pkgs/servers/home-assistant/component-packages.nix
+++ b/pkgs/servers/home-assistant/component-packages.nix
@@ -71,7 +71,7 @@
"device_tracker.bluetooth_le_tracker" = ps: with ps; [ ];
"device_tracker.bluetooth_tracker" = ps: with ps; [ ];
"device_tracker.cisco_ios" = ps: with ps; [ pexpect ];
- "device_tracker.fritz" = ps: with ps; [ ];
+ "device_tracker.fritz" = ps: with ps; [ fritzconnection ];
"device_tracker.icloud" = ps: with ps; [ ];
"device_tracker.linksys_ap" = ps: with ps; [ beautifulsoup4 ];
"device_tracker.mikrotik" = ps: with ps; [ ];
@@ -100,7 +100,7 @@
"fan.xiaomi_miio" = ps: with ps; [ ];
"feedreader" = ps: with ps; [ feedparser ];
"ffmpeg" = ps: with ps; [ ha-ffmpeg ];
- "frontend" = ps: with ps; [ user-agents ];
+ "frontend" = ps: with ps; [ ];
"gc100" = ps: with ps; [ ];
"goalfeed" = ps: with ps; [ ];
"google" = ps: with ps; [ google_api_python_client oauth2client ];
@@ -123,7 +123,7 @@
"joaoapps_join" = ps: with ps; [ ];
"juicenet" = ps: with ps; [ ];
"keyboard" = ps: with ps; [ ];
- "keyboard_remote" = ps: with ps; [ ];
+ "keyboard_remote" = ps: with ps; [ evdev ];
"kira" = ps: with ps; [ ];
"knx" = ps: with ps; [ ];
"lametric" = ps: with ps; [ ];
@@ -196,7 +196,7 @@
"media_player.songpal" = ps: with ps; [ ];
"media_player.sonos" = ps: with ps; [ ];
"media_player.soundtouch" = ps: with ps; [ libsoundtouch ];
- "media_player.spotify" = ps: with ps; [ ];
+ "media_player.spotify" = ps: with ps; [ spotipy ];
"media_player.vizio" = ps: with ps; [ ];
"media_player.vlc" = ps: with ps; [ ];
"media_player.webostv" = ps: with ps; [ websockets ];
@@ -278,7 +278,7 @@
"sensor.coinmarketcap" = ps: with ps; [ ];
"sensor.cpuspeed" = ps: with ps; [ ];
"sensor.crimereports" = ps: with ps; [ ];
- "sensor.cups" = ps: with ps; [ ];
+ "sensor.cups" = ps: with ps; [ pycups ];
"sensor.darksky" = ps: with ps; [ ];
"sensor.deluge" = ps: with ps; [ deluge-client ];
"sensor.deutsche_bahn" = ps: with ps; [ ];
@@ -298,8 +298,8 @@
"sensor.fido" = ps: with ps; [ ];
"sensor.fitbit" = ps: with ps; [ ];
"sensor.fixer" = ps: with ps; [ ];
- "sensor.fritzbox_callmonitor" = ps: with ps; [ ];
- "sensor.fritzbox_netmonitor" = ps: with ps; [ ];
+ "sensor.fritzbox_callmonitor" = ps: with ps; [ fritzconnection ];
+ "sensor.fritzbox_netmonitor" = ps: with ps; [ fritzconnection ];
"sensor.gearbest" = ps: with ps; [ ];
"sensor.geizhals" = ps: with ps; [ beautifulsoup4 ];
"sensor.geo_rss_events" = ps: with ps; [ feedparser ];
diff --git a/pkgs/servers/home-assistant/parse-requirements.py b/pkgs/servers/home-assistant/parse-requirements.py
index 3aa9823dbe8..87ef65482ab 100755
--- a/pkgs/servers/home-assistant/parse-requirements.py
+++ b/pkgs/servers/home-assistant/parse-requirements.py
@@ -22,7 +22,8 @@ import json
import re
from pkg_resources import Requirement, RequirementParseError
-PREFIX = '# homeassistant.components.'
+GENERAL_PREFIX = '# homeassistant.'
+COMPONENT_PREFIX = GENERAL_PREFIX + 'components.'
PKG_SET = 'python3Packages'
def get_version():
@@ -37,12 +38,19 @@ def fetch_reqs(version='master'):
for line in response.read().decode().splitlines():
if line == '':
components = []
- elif line[:len(PREFIX)] == PREFIX:
- component = line[len(PREFIX):]
+ elif line[:len(COMPONENT_PREFIX)] == COMPONENT_PREFIX:
+ component = line[len(COMPONENT_PREFIX):]
components.append(component)
if component not in requirements:
requirements[component] = []
- elif line[0] != '#':
+ elif line[:len(GENERAL_PREFIX)] != GENERAL_PREFIX: # skip lines like "# homeassistant.scripts.xyz"
+ # Some dependencies are commented out because they don't build on all platforms
+ # Since they are still required for running the component, don't skip them
+ if line[:2] == '# ':
+ line = line[2:]
+ # Some requirements are specified by url, e.g. https://example.org/foobar#xyz==1.0.0
+ # Therefore, if there's a "#" in the line, only take the part after it
+ line = line[line.find('#') + 1:]
for component in components:
requirements[component].append(line)
return requirements
diff --git a/pkgs/servers/http/apache-modules/mod_wsgi/default.nix b/pkgs/servers/http/apache-modules/mod_wsgi/default.nix
index 007cfc96779..0599d3affc8 100644
--- a/pkgs/servers/http/apache-modules/mod_wsgi/default.nix
+++ b/pkgs/servers/http/apache-modules/mod_wsgi/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "mod_wsgi-${version}";
- version = "4.6.2";
+ version = "4.6.3";
src = fetchurl {
url = "https://github.com/GrahamDumpleton/mod_wsgi/archive/${version}.tar.gz";
- sha256 = "0gviv9x4w4i8d26d8vyrr8zk4p5hdx63rxpzqw769cmhvvy8r3g2";
+ sha256 = "1vi2bf2spak70qqc1c673a7pwmzq01gmli43xwhrwdw7l2ig4wj9";
};
buildInputs = [ apacheHttpd python2 ];
diff --git a/pkgs/servers/http/gatling/default.nix b/pkgs/servers/http/gatling/default.nix
index 549beec674c..19b2d01f5be 100644
--- a/pkgs/servers/http/gatling/default.nix
+++ b/pkgs/servers/http/gatling/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchurl, libowfat, zlib, openssl }:
let
- version = "0.13";
+ version = "0.15";
in
stdenv.mkDerivation rec {
name = "gatling-${version}";
src = fetchurl {
- url = "http://dl.fefe.de/${name}.tar.bz2";
- sha256 = "0icjx20ws8gqxgpm77dx7p9zcwi1fv162in6igx04rmnyzyla8dl";
+ url = "https://www.fefe.de/gatling/${name}.tar.xz";
+ sha256 = "194srqyja3pczpbl6l169zlvx179v7ln0m6yipmhvj6hrv82k8vg";
};
buildInputs = [ libowfat zlib openssl.dev ];
diff --git a/pkgs/servers/mail/dovecot/default.nix b/pkgs/servers/mail/dovecot/default.nix
index 0060a59d807..c9065d04161 100644
--- a/pkgs/servers/mail/dovecot/default.nix
+++ b/pkgs/servers/mail/dovecot/default.nix
@@ -8,7 +8,7 @@
}:
stdenv.mkDerivation rec {
- name = "dovecot-2.3.0.1";
+ name = "dovecot-2.3.1";
nativeBuildInputs = [ perl pkgconfig ];
buildInputs =
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://dovecot.org/releases/2.3/${name}.tar.gz";
- sha256 = "0lzisrdgrj5qqwjb7bv99mf2aljm568r6g108yisp0s644z2nxxb";
+ sha256 = "14zva4f8k64x86sm9n21cp2yvrpph6k6k52bm22a00pxjwdq50q8";
};
preConfigure = ''
diff --git a/pkgs/servers/mail/dovecot/plugins/pigeonhole/default.nix b/pkgs/servers/mail/dovecot/plugins/pigeonhole/default.nix
index 92b404d0f65..e98c58c891a 100644
--- a/pkgs/servers/mail/dovecot/plugins/pigeonhole/default.nix
+++ b/pkgs/servers/mail/dovecot/plugins/pigeonhole/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "dovecot-pigeonhole-${version}";
- version = "0.5.0.1";
+ version = "0.5.1";
src = fetchurl {
url = "http://pigeonhole.dovecot.org/releases/2.3/dovecot-2.3-pigeonhole-${version}.tar.gz";
- sha256 = "1lpsdqh9pwqx917z5v23bahhhbrcb3y5ps3l413sli8cn4a6sdan";
+ sha256 = "0ivmaxic6cygfphvlrvy0xgggydm7j7kjv1ssfqbr08q4rcsmc73";
};
buildInputs = [ dovecot openssl ];
@@ -33,6 +33,6 @@ stdenv.mkDerivation rec {
description = "A sieve plugin for the Dovecot IMAP server";
license = licenses.lgpl21;
maintainers = [ maintainers.rickynils ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/servers/mail/opensmtpd/extras.nix b/pkgs/servers/mail/opensmtpd/extras.nix
index 5e87a1fb099..6b63c317d78 100644
--- a/pkgs/servers/mail/opensmtpd/extras.nix
+++ b/pkgs/servers/mail/opensmtpd/extras.nix
@@ -75,7 +75,7 @@ stdenv.mkDerivation rec {
homepage = https://www.opensmtpd.org/;
description = "Extra plugins for the OpenSMTPD mail server";
license = licenses.isc;
- platforms = platforms.unix;
+ platforms = platforms.linux;
maintainers = with maintainers; [ gebner ];
};
}
diff --git a/pkgs/servers/minio/default.nix b/pkgs/servers/minio/default.nix
index 90a95987267..786a188bbfd 100644
--- a/pkgs/servers/minio/default.nix
+++ b/pkgs/servers/minio/default.nix
@@ -3,13 +3,13 @@
buildGoPackage rec {
name = "minio-${version}";
- version = "2018-03-19T19-22-06Z";
+ version = "2018-03-30T00-38-44Z";
src = fetchFromGitHub {
owner = "minio";
repo = "minio";
rev = "RELEASE.${version}";
- sha256 = "0cqvam7i8caqlb0jdn89s1k18gfy4yndsszj7d81qg2sns0p5zgm";
+ sha256 = "17vam9ifi632yfxakanxi2660wqgqrhrhhzywrgh2jmzljippf80";
};
goPackagePath = "github.com/minio/minio";
diff --git a/pkgs/servers/misc/taskserver/default.nix b/pkgs/servers/misc/taskserver/default.nix
index 0511c822ebe..466c3873c60 100644
--- a/pkgs/servers/misc/taskserver/default.nix
+++ b/pkgs/servers/misc/taskserver/default.nix
@@ -38,6 +38,6 @@ stdenv.mkDerivation rec {
homepage = http://taskwarrior.org;
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.linux;
- maintainers = with stdenv.lib.maintainers; [ matthiasbeyer makefu ];
+ maintainers = with stdenv.lib.maintainers; [ makefu ];
};
}
diff --git a/pkgs/servers/monitoring/grafana/default.nix b/pkgs/servers/monitoring/grafana/default.nix
index 61ff67ed993..d2a0d046389 100644
--- a/pkgs/servers/monitoring/grafana/default.nix
+++ b/pkgs/servers/monitoring/grafana/default.nix
@@ -1,7 +1,7 @@
{ lib, buildGoPackage, fetchurl, fetchFromGitHub, phantomjs2 }:
buildGoPackage rec {
- version = "5.0.3";
+ version = "5.0.4";
name = "grafana-${version}";
goPackagePath = "github.com/grafana/grafana";
@@ -9,12 +9,12 @@ buildGoPackage rec {
rev = "v${version}";
owner = "grafana";
repo = "grafana";
- sha256 = "0508dvkanrfrvdnddjsaz8qm3qbgavznia5hqr8zx3qvq4789hj2";
+ sha256 = "18f69985a5j6fd2ax6z50yfss70phdh1vwyx0z69j145zac3sf90";
};
srcStatic = fetchurl {
url = "https://grafana-releases.s3.amazonaws.com/release/grafana-${version}.linux-x64.tar.gz";
- sha256 = "0dzb93vx72sm6iri6c96k3a15zn8mp26pd2r78m6k3nhg8rsrqmm";
+ sha256 = "0xdpqf8n3ds0g7nhbiwahhdj0hfc4biz69rhkl48vm31idlr92sc";
};
preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace";
diff --git a/pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix b/pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix
index 4989a01c9e3..deac45eadb6 100644
--- a/pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix
+++ b/pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "check_ssl_cert-${version}";
- version = "1.51.0";
+ version = "1.64.0";
src = fetchFromGitHub {
owner = "matteocorti";
repo = "check_ssl_cert";
rev = "v${version}";
- sha256 = "07g4dhwp1plzmlqazapn0s0hysmf3kk0pa2x0wns482xm1v1mr05";
+ sha256 = "0pq297sbz9hzcaccnnsfmra0bac81cki9xfrnb22a1hgfhqjxy5r";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/servers/monitoring/plugins/default.nix b/pkgs/servers/monitoring/plugins/default.nix
index 808257ca121..a0f7341571c 100644
--- a/pkgs/servers/monitoring/plugins/default.nix
+++ b/pkgs/servers/monitoring/plugins/default.nix
@@ -62,7 +62,7 @@ _EOF
'';
meta = {
- description = "Official monitoring plugins for Nagios/Ichinga/Sensu and others.";
+ description = "Official monitoring plugins for Nagios/Icinga/Sensu and others.";
homepage = https://www.monitoring-plugins.org;
license = licenses.gpl2;
platforms = platforms.linux;
diff --git a/pkgs/servers/nosql/arangodb/default.nix b/pkgs/servers/nosql/arangodb/default.nix
index 75ba1f6a940..9d1e6213665 100644
--- a/pkgs/servers/nosql/arangodb/default.nix
+++ b/pkgs/servers/nosql/arangodb/default.nix
@@ -3,14 +3,14 @@
let
in stdenv.mkDerivation rec {
- version = "3.3.4";
+ version = "3.3.5";
name = "arangodb-${version}";
src = fetchFromGitHub {
repo = "arangodb";
owner = "arangodb";
rev = "v${version}";
- sha256 = "0gfjmva043f9nhqjpa0qy2cdbz84z7b1c2wgcy77i3wnskicy0pc";
+ sha256 = "1015fi47m0j71l6wmp7n06qk0x2h3337sjqxfyan5dnnb0himzb6";
};
buildInputs = [
diff --git a/pkgs/servers/nosql/redis/default.nix b/pkgs/servers/nosql/redis/default.nix
index 66211780021..07489b62728 100644
--- a/pkgs/servers/nosql/redis/default.nix
+++ b/pkgs/servers/nosql/redis/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, lua }:
stdenv.mkDerivation rec {
- version = "4.0.8";
+ version = "4.0.9";
name = "redis-${version}";
src = fetchurl {
url = "http://download.redis.io/releases/${name}.tar.gz";
- sha256 = "1b9jqacckx4qqyz905mnclxfcpsvrwc507n6zr4r4canq6w3h37z";
+ sha256 = "0465bv6yxnwmas3wzg07vmrprv2pxhnr56hn5pxrybwf66y76kyz";
};
buildInputs = [ lua ];
diff --git a/pkgs/servers/osrm-backend/default.nix b/pkgs/servers/osrm-backend/default.nix
index c2ec4b9ff17..b7c85a8f9a4 100644
--- a/pkgs/servers/osrm-backend/default.nix
+++ b/pkgs/servers/osrm-backend/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "osrm-backend-${version}";
- version = "5.16.3";
+ version = "5.16.4";
src = fetchFromGitHub {
rev = "v${version}";
owner = "Project-OSRM";
repo = "osrm-backend";
- sha256 = "0dmcp5s5kjnvdd7sn53sbjawfhiwjs30fr7iwi9h6ssz6188x0jp";
+ sha256 = "01wghly0rqv4f9lfabmbfddjp2pclcfip45rmn0fvnj5c6x23v6v";
};
nativeBuildInputs = [ cmake pkgconfig ];
diff --git a/pkgs/servers/sql/mysql/5.7.x.nix b/pkgs/servers/sql/mysql/5.7.x.nix
index b6b1dc7b127..15e8569fd09 100644
--- a/pkgs/servers/sql/mysql/5.7.x.nix
+++ b/pkgs/servers/sql/mysql/5.7.x.nix
@@ -60,7 +60,7 @@ self = stdenv.mkDerivation rec {
install -vD $out/lib/*.a -t $static/lib
rm -r $out/mysql-test
rm $out/share/man/man1/mysql-test-run.pl.1 $out/lib/*.a
- ln -s libmysqlclient.so $out/lib/libmysqlclient_r.so
+ ln -s libmysqlclient${stdenv.hostPlatform.extensions.sharedLibrary} $out/lib/libmysqlclient_r${stdenv.hostPlatform.extensions.sharedLibrary}
'';
passthru = {
diff --git a/pkgs/servers/sql/postgresql/cstore_fdw/default.nix b/pkgs/servers/sql/postgresql/cstore_fdw/default.nix
new file mode 100644
index 00000000000..70b8abf2502
--- /dev/null
+++ b/pkgs/servers/sql/postgresql/cstore_fdw/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchFromGitHub, postgresql, protobufc }:
+
+stdenv.mkDerivation rec {
+ name = "cstore_fdw-${version}";
+ version = "1.6.0";
+
+ nativeBuildInputs = [ protobufc ];
+ buildInputs = [ postgresql ];
+
+ src = fetchFromGitHub {
+ owner = "citusdata";
+ repo = "cstore_fdw";
+ rev = "refs/tags/v${version}";
+ sha256 = "08jbx4hs2r742flilydp0ajjwv8ffnvq82nidh48irrfa4i7n0l0";
+ };
+
+ installPhase = ''
+ mkdir -p $out/{lib,share/extension}
+
+ cp *.so $out/lib
+ cp *.sql $out/share/extension
+ cp *.control $out/share/extension
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Columnar storage for PostgreSQL";
+ homepage = https://www.citusdata.com/;
+ maintainers = with maintainers; [ thoughtpolice ];
+ platforms = platforms.linux;
+ license = licenses.asl20;
+ };
+}
diff --git a/pkgs/servers/sql/postgresql/pg_cron/default.nix b/pkgs/servers/sql/postgresql/pg_cron/default.nix
new file mode 100644
index 00000000000..c5a7a40546e
--- /dev/null
+++ b/pkgs/servers/sql/postgresql/pg_cron/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub, postgresql }:
+
+stdenv.mkDerivation rec {
+ name = "pg_cron-${version}";
+ version = "1.0.2";
+
+ buildInputs = [ postgresql ];
+
+ src = fetchFromGitHub {
+ owner = "citusdata";
+ repo = "pg_cron";
+ rev = "refs/tags/v${version}";
+ sha256 = "0z743bbal9j0pvqskznfj0zvjsqvdl7p90d4fdrl0sc0crc3nvyx";
+ };
+
+ installPhase = ''
+ mkdir -p $out/{lib,share/extension}
+
+ cp *.so $out/lib
+ cp *.sql $out/share/extension
+ cp *.control $out/share/extension
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Run Cron jobs through PostgreSQL";
+ homepage = https://www.citusdata.com/;
+ maintainers = with maintainers; [ thoughtpolice ];
+ platforms = platforms.linux;
+ license = licenses.postgresql;
+ };
+}
diff --git a/pkgs/servers/sql/postgresql/pg_hll/default.nix b/pkgs/servers/sql/postgresql/pg_hll/default.nix
new file mode 100644
index 00000000000..6c453f6a40c
--- /dev/null
+++ b/pkgs/servers/sql/postgresql/pg_hll/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub, postgresql }:
+
+stdenv.mkDerivation rec {
+ name = "pg_hll-${version}";
+ version = "2.10.2-${builtins.substring 0 7 src.rev}";
+
+ buildInputs = [ postgresql ];
+
+ src = fetchFromGitHub {
+ owner = "citusdata";
+ repo = "postgresql-hll";
+ rev = "9af41684d479a3097bab87d04936702c9e6baf5c";
+ sha256 = "044x9v9kjhxb0idqb9f5i7c3yygxxsqliswl4kspqy9f9qcblckl";
+ };
+
+ installPhase = ''
+ mkdir -p $out/{lib,share/extension}
+
+ cp *.so $out/lib
+ cp *.sql $out/share/extension
+ cp *.control $out/share/extension
+ '';
+
+ meta = with stdenv.lib; {
+ description = "HyperLogLog for PostgreSQL";
+ homepage = https://www.citusdata.com/;
+ maintainers = with maintainers; [ thoughtpolice ];
+ platforms = platforms.linux;
+ license = licenses.asl20;
+ };
+}
diff --git a/pkgs/servers/sql/postgresql/timescaledb/default.nix b/pkgs/servers/sql/postgresql/timescaledb/default.nix
index 223bd6e470b..e1a4aed3b7e 100644
--- a/pkgs/servers/sql/postgresql/timescaledb/default.nix
+++ b/pkgs/servers/sql/postgresql/timescaledb/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, postgresql }:
+{ stdenv, fetchFromGitHub, cmake, postgresql }:
# # To enable on NixOS:
# config.services.postgresql = {
@@ -8,29 +8,37 @@
stdenv.mkDerivation rec {
name = "timescaledb-${version}";
- version = "0.6.0";
+ version = "0.9.1";
+ nativeBuildInputs = [ cmake ];
buildInputs = [ postgresql ];
src = fetchFromGitHub {
- owner = "timescale";
- repo = "timescaledb";
- rev = version;
- sha256 = "061z1ll3x7ca7fj12rl2difkdvmqykksqhpsql552qkkylg7iq4d";
+ owner = "timescale";
+ repo = "timescaledb";
+ rev = "refs/tags/${version}";
+ sha256 = "00k8fk5a1xpv9nxlmafnngk31wh80h6m72vsl1hnyq7nhby7ylic";
};
- installPhase = ''
- mkdir -p $out/bin
- install -D timescaledb.so -t $out/lib
- install -D timescaledb.control -t $out/share/extension
- cp -dpR sql/* $out/share/extension/
+ # Fix the install phase which tries to install into the pgsql extension dir,
+ # and cannot be manually overridden. This is rather fragile but works OK.
+ patchPhase = ''
+ for x in CMakeLists.txt sql/CMakeLists.txt; do
+ substituteInPlace "$x" \
+ --replace 'DESTINATION "''${PG_SHAREDIR}/extension"' "DESTINATION \"$out/share/extension\""
+ done
+
+ for x in src/CMakeLists.txt src/loader/CMakeLists.txt; do
+ substituteInPlace "$x" \
+ --replace 'DESTINATION ''${PG_PKGLIBDIR}' "DESTINATION \"$out/lib\""
+ done
'';
meta = with stdenv.lib; {
description = "Scales PostgreSQL for time-series data via automatic partitioning across time and space";
- homepage = https://www.timescale.com/;
+ homepage = https://www.timescale.com/;
maintainers = with maintainers; [ volth ];
- platforms = platforms.linux;
- license = licenses.postgresql;
+ platforms = platforms.linux;
+ license = licenses.postgresql;
};
}
diff --git a/pkgs/servers/sql/postgresql/topn/default.nix b/pkgs/servers/sql/postgresql/topn/default.nix
new file mode 100644
index 00000000000..6886c80cf50
--- /dev/null
+++ b/pkgs/servers/sql/postgresql/topn/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchFromGitHub, postgresql, protobufc }:
+
+stdenv.mkDerivation rec {
+ name = "pg_topn-${version}";
+ version = "2.0.2";
+
+ nativeBuildInputs = [ protobufc ];
+ buildInputs = [ postgresql ];
+
+ src = fetchFromGitHub {
+ owner = "citusdata";
+ repo = "postgresql-topn";
+ rev = "refs/tags/v${version}";
+ sha256 = "00hc3hgnqv9xaalizbcvprb7s55sydj2qgk3rhgrdlwg2g025h62";
+ };
+
+ installPhase = ''
+ mkdir -p $out/{lib,share/extension}
+
+ cp *.so $out/lib
+ cp *.sql $out/share/extension
+ cp *.control $out/share/extension
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Efficient querying of 'top values' for PostgreSQL";
+ homepage = https://www.citusdata.com/;
+ maintainers = with maintainers; [ thoughtpolice ];
+ platforms = platforms.linux;
+ license = licenses.agpl3;
+ };
+}
diff --git a/pkgs/servers/tvheadend/default.nix b/pkgs/servers/tvheadend/default.nix
index c5e2b45fe96..c0a3b5a28c3 100644
--- a/pkgs/servers/tvheadend/default.nix
+++ b/pkgs/servers/tvheadend/default.nix
@@ -3,7 +3,7 @@
, which, zlib }:
let
- version = "4.2.5";
+ version = "4.2.6";
in stdenv.mkDerivation rec {
name = "tvheadend-${version}";
@@ -12,7 +12,7 @@ in stdenv.mkDerivation rec {
owner = "tvheadend";
repo = "tvheadend";
rev = "v${version}";
- sha256 = "199b0xm4lfdspmrirvzzg511yh358awciz23zmccvlvq86b548pz";
+ sha256 = "0rnhk0r34mfmz3cnf735nzkkyal7pnv16hfyrs0g4v5rk99rlab3";
};
buildInputs = [
diff --git a/pkgs/servers/web-apps/klaus/default.nix b/pkgs/servers/web-apps/klaus/default.nix
index bb953ecc03a..81d1e57e7a0 100644
--- a/pkgs/servers/web-apps/klaus/default.nix
+++ b/pkgs/servers/web-apps/klaus/default.nix
@@ -35,6 +35,6 @@ python.pkgs.buildPythonApplication rec {
description = "The first Git web viewer that Just Works";
homepage = https://github.com/jonashaag/klaus;
license = licenses.isc;
- maintainers = with maintainers; [ matthiasbeyer ];
+ maintainers = with maintainers; [ ];
};
}
diff --git a/pkgs/servers/web-apps/matomo/default.nix b/pkgs/servers/web-apps/matomo/default.nix
index c99b20a46bd..c8a918c2bd2 100644
--- a/pkgs/servers/web-apps/matomo/default.nix
+++ b/pkgs/servers/web-apps/matomo/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "matomo-${version}";
- version = "3.3.0";
+ version = "3.4.0";
src = fetchurl {
# TODO: As soon as the tarballs are renamed as well on future releases, this should be enabled again
# url = "https://builds.matomo.org/${name}.tar.gz";
url = "https://builds.matomo.org/piwik-${version}.tar.gz";
- sha256 = "1ybzj3kk0x29nv8c6xnhir5d9dr0q0fl1vnm4i7zvhml73ryqk0f";
+ sha256 = "1hnja8mvjvlbqgw7maa76lxd5hxxg7d5ggq9wyrff25mapj398wc";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/servers/web-apps/shaarli/default.nix b/pkgs/servers/web-apps/shaarli/default.nix
index 4c4cd21cddf..8f6722ed86e 100644
--- a/pkgs/servers/web-apps/shaarli/default.nix
+++ b/pkgs/servers/web-apps/shaarli/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "shaarli-${version}";
- version = "0.9.5";
+ version = "0.9.6";
src = fetchurl {
url = "https://github.com/shaarli/Shaarli/releases/download/v${version}/shaarli-v${version}-full.tar.gz";
- sha256 = "133ffxyw9bf61rky01d3rkkm34np5z4kwmgwx6ygshl83y0ylnwf";
+ sha256 = "0vi59988bjxb1cyifh0fynpxa7l6cl0v57hrxima5c9iid10pw54";
};
outputs = [ "out" "doc" ];
diff --git a/pkgs/shells/nix-bash-completions/default.nix b/pkgs/shells/nix-bash-completions/default.nix
index c8582366d1a..739dbd538a6 100644
--- a/pkgs/shells/nix-bash-completions/default.nix
+++ b/pkgs/shells/nix-bash-completions/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
- version = "0.6.4";
+ version = "0.6.5";
name = "nix-bash-completions-${version}";
src = fetchFromGitHub {
owner = "hedning";
repo = "nix-bash-completions";
rev = "v${version}";
- sha256 = "1kdysrfc8dx24q438wj3aisn64g2w5yb6mx91qa385p5hz7b1yz2";
+ sha256 = "10f70jw81vky52s3fidf7vzl725fihiypsw39825wnkpynayhmrg";
};
# To enable lazy loading via. bash-completion we need a symlink to the script
diff --git a/pkgs/stdenv/generic/check-meta.nix b/pkgs/stdenv/generic/check-meta.nix
index 2f4ff62f767..26522ad6045 100644
--- a/pkgs/stdenv/generic/check-meta.nix
+++ b/pkgs/stdenv/generic/check-meta.nix
@@ -174,9 +174,10 @@ let
else "key '${k}' is unrecognized; expected one of: \n\t [${lib.concatMapStringsSep ", " (x: "'${x}'") (lib.attrNames metaTypes)}]";
checkMeta = meta: if shouldCheckMeta then lib.remove null (lib.mapAttrsToList checkMetaAttr meta) else [];
- checkPlatform = attrs:
- (!(attrs ? meta.platforms) || lib.any (lib.meta.platformMatch hostPlatform) attrs.meta.platforms) &&
- (!(attrs ? meta.badPlatforms && lib.any (lib.meta.platformMatch hostPlatform) attrs.meta.badPlatforms));
+ checkPlatform = attrs: let
+ anyMatch = lib.any (lib.meta.platformMatch hostPlatform);
+ in anyMatch (attrs.meta.platforms or lib.platforms.all) &&
+ ! anyMatch (attrs.meta.badPlatforms or []);
# Check if a derivation is valid, that is whether it passes checks for
# e.g brokenness or license.
diff --git a/pkgs/tools/X11/xpra/default.nix b/pkgs/tools/X11/xpra/default.nix
index 805e5c03816..b931f270dee 100644
--- a/pkgs/tools/X11/xpra/default.nix
+++ b/pkgs/tools/X11/xpra/default.nix
@@ -12,11 +12,11 @@ let
inherit (python2Packages) python cython buildPythonApplication;
in buildPythonApplication rec {
name = "xpra-${version}";
- version = "2.2.4";
+ version = "2.2.5";
src = fetchurl {
url = "http://xpra.org/src/${name}.tar.xz";
- sha256 = "0v8yflvisk94bfj0zg4ggdfwrig0f3ss9kjnws3zflsr33cb2hxy";
+ sha256 = "1q2l00nc3bgwlhjzkbk4a8x2l8z9w1799yn31icsx5hrgh98a1js";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/tools/audio/abcmidi/default.nix b/pkgs/tools/audio/abcmidi/default.nix
index 7af507c35be..ab06a3b6983 100644
--- a/pkgs/tools/audio/abcmidi/default.nix
+++ b/pkgs/tools/audio/abcmidi/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "abcMIDI-${version}";
- version = "2018.03.08";
+ version = "2018.03.21";
src = fetchzip {
url = "http://ifdo.ca/~seymour/runabc/${name}.zip";
- sha256 = "0pdia3n23l4nhc4lmyphgh6swq35nnzqk2z4ykif1xajbkbddxm3";
+ sha256 = "0h34bjs5p3vkabg6c1dpwrwfxypki0xyd0m6jf4ys7xbs9qnal6l";
};
# There is also a file called "makefile" which seems to be preferred by the standard build phase
diff --git a/pkgs/tools/backup/borg/default.nix b/pkgs/tools/backup/borg/default.nix
index 4f0d24a27d9..77d7626a526 100644
--- a/pkgs/tools/backup/borg/default.nix
+++ b/pkgs/tools/backup/borg/default.nix
@@ -1,16 +1,19 @@
-{ stdenv, fetchurl, python3Packages, acl, lz4, openssl, openssh }:
+{ stdenv, python3Packages, acl, lz4, openssl, openssh }:
python3Packages.buildPythonApplication rec {
- name = "borgbackup-${version}";
- version = "1.1.4";
- namePrefix = "";
+ pname = "borgbackup";
+ version = "1.1.5";
- src = fetchurl {
- url = "https://github.com/borgbackup/borg/releases/download/"
- + "${version}/${name}.tar.gz";
- sha256 = "1cicqwh85wfp65y00qaq6q4i4jcyy9b66qz5gpl80qc880wab912";
+ src = python3Packages.fetchPypi {
+ inherit pname version;
+ sha256 = "4356e6c712871f389e3cb1d6382e341ea635f9e5c65de1cd8fcd103d0fb66d3d";
};
+ postPatch = ''
+ # loosen constraint on msgpack version, only 0.5.0 had problems
+ sed -i "s/'msgpack-python.*'/'msgpack-python'/g" setup.py
+ '';
+
nativeBuildInputs = with python3Packages; [
# For building documentation:
sphinx guzzle_sphinx_theme
diff --git a/pkgs/tools/backup/diskrsync/default.nix b/pkgs/tools/backup/diskrsync/default.nix
index b04a1dab40f..2e86ad0deda 100644
--- a/pkgs/tools/backup/diskrsync/default.nix
+++ b/pkgs/tools/backup/diskrsync/default.nix
@@ -1,4 +1,4 @@
-{ buildGoPackage, fetchFromGitHub, stdenv }:
+{ buildGoPackage, fetchFromGitHub, stdenv, openssh, makeWrapper }:
buildGoPackage rec {
@@ -16,6 +16,12 @@ buildGoPackage rec {
goPackagePath = "github.com/dop251/diskrsync";
goDeps = ./deps.nix;
+ buildInputs = [ makeWrapper ];
+
+ preFixup = ''
+ wrapProgram "$bin/bin/diskrsync" --prefix PATH : ${openssh}/bin
+ '';
+
meta = with stdenv.lib; {
description = "Rsync for block devices and disk images";
homepage = https://github.com/dop251/diskrsync;
diff --git a/pkgs/tools/backup/mtx/default.nix b/pkgs/tools/backup/mtx/default.nix
index bc1f584f1c0..46f213a6ef4 100644
--- a/pkgs/tools/backup/mtx/default.nix
+++ b/pkgs/tools/backup/mtx/default.nix
@@ -22,6 +22,6 @@ stdenv.mkDerivation rec {
homepage = https://sourceforge.net/projects/mtx/;
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.redvers ];
- platforms = stdenv.lib.platforms.all;
+ platforms = stdenv.lib.platforms.linux;
};
}
diff --git a/pkgs/tools/filesystems/fatsort/default.nix b/pkgs/tools/filesystems/fatsort/default.nix
index 3e4425847fa..75a94400627 100644
--- a/pkgs/tools/filesystems/fatsort/default.nix
+++ b/pkgs/tools/filesystems/fatsort/default.nix
@@ -1,12 +1,12 @@
{stdenv, fetchurl, help2man}:
stdenv.mkDerivation rec {
- version = "1.3.365";
+ version = "1.4.2.439";
name = "fatsort-${version}";
src = fetchurl {
- url = "mirror://sourceforge/fatsort/${name}.tar.gz";
- sha256 = "0g9zn2ns86g7zmy0y8hw1w1zhnd51hy8yl6kflyhxs49n5sc7b3p";
+ url = "mirror://sourceforge/fatsort/${name}.tar.xz";
+ sha256 = "1q51qq69854kr12knhyqjv7skj95qld6j04pv5v3xvxs0y9zkg5x";
};
patches = [ ./fatsort-Makefiles.patch ];
diff --git a/pkgs/tools/graphics/asymptote/default.nix b/pkgs/tools/graphics/asymptote/default.nix
index 04863d6ce62..ce66402d09f 100644
--- a/pkgs/tools/graphics/asymptote/default.nix
+++ b/pkgs/tools/graphics/asymptote/default.nix
@@ -9,11 +9,11 @@ let
s = # Generated upstream information
rec {
baseName="asymptote";
- version="2.41";
+ version="2.42";
name="${baseName}-${version}";
- hash="1w7fbq6gy65g0mxg6wdxi7v178c5yxvh9yrnv3bzm4sjzf4pwvhx";
- url="https://freefr.dl.sourceforge.net/project/asymptote/2.41/asymptote-2.41.src.tgz";
- sha256="1w7fbq6gy65g0mxg6wdxi7v178c5yxvh9yrnv3bzm4sjzf4pwvhx";
+ hash="0dprc4shzdpvp87kc97ggh5ay2zmskjjaciay7mnblx63rhk1d95";
+ url="https://freefr.dl.sourceforge.net/project/asymptote/2.42/asymptote-2.42.src.tgz";
+ sha256="0dprc4shzdpvp87kc97ggh5ay2zmskjjaciay7mnblx63rhk1d95";
};
buildInputs = [
ghostscriptX imagemagick fftw
diff --git a/pkgs/tools/graphics/gmic/default.nix b/pkgs/tools/graphics/gmic/default.nix
index cbfdd56cca1..a8c491b049f 100644
--- a/pkgs/tools/graphics/gmic/default.nix
+++ b/pkgs/tools/graphics/gmic/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "gmic-${version}";
- version = "2.2.0";
+ version = "2.2.1";
src = fetchurl {
url = "http://gmic.eu/files/source/gmic_${version}.tar.gz";
- sha256 = "0yvb9iwwmjxvck2in3ymqszaddz502v2ryk50qs0wskhbhdh96c7";
+ sha256 = "0iac1zaix2zv1dfp45ca0wk9pj6k02gf8l1vmg820z8jd12pa19w";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/tools/graphics/pywal/default.nix b/pkgs/tools/graphics/pywal/default.nix
new file mode 100644
index 00000000000..95f7c547b55
--- /dev/null
+++ b/pkgs/tools/graphics/pywal/default.nix
@@ -0,0 +1,28 @@
+{ lib, python3Packages, fetchFromGitHub, imagemagick, feh }:
+
+python3Packages.buildPythonApplication rec {
+ pname = "pywal";
+ version = "2.0.5";
+
+ src = python3Packages.fetchPypi {
+ inherit pname version;
+ sha256 = "117f61db013409ee2657aab9230cc5c2cb2b428c17f7fbcf664909122962165e";
+ };
+
+ # necessary for imagemagick to be found during tests
+ buildInputs = [ imagemagick ];
+
+ makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ imagemagick feh ]}" ];
+
+ preCheck = ''
+ mkdir tmp
+ HOME=$PWD/tmp
+ '';
+
+ meta = with lib; {
+ description = "Generate and change colorschemes on the fly. A 'wal' rewrite in Python 3.";
+ homepage = https://github.com/dylanaraps/pywal;
+ license = licenses.mit;
+ maintainers = with maintainers; [ Fresheyeball ];
+ };
+}
diff --git a/pkgs/tools/graphics/swfdec/default.nix b/pkgs/tools/graphics/swfdec/default.nix
new file mode 100644
index 00000000000..1c3c0f3b451
--- /dev/null
+++ b/pkgs/tools/graphics/swfdec/default.nix
@@ -0,0 +1,38 @@
+{stdenv, fetchurl
+, cairo, pango, glib, liboil, zlib, gstreamer, gst-plugins-base
+, gst-plugins-good , gtk2, libsoup, alsaLib, pkgconfig
+}:
+
+stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
+ pname = "swfdec";
+ version = "0.8.4";
+
+ src = fetchurl {
+ url = "http://swfdec.freedesktop.org/download/swfdec/0.8/swfdec-${version}.tar.gz";
+ sha256 = "00nqrd0fzf0g76rn80d7h56n6hxv7x1x6k89zj45bj564lzwc3vs";
+ };
+
+ buildInputs = [
+ cairo glib liboil pango zlib gstreamer gst-plugins-base gst-plugins-good
+ gtk2 libsoup alsaLib pkgconfig
+ ];
+
+ postInstall = ''
+ mkdir "$out/bin"
+ cp tools/.libs/swfdec-extract "$out/bin"
+ cp tools/.libs/dump "$out/bin/swfdec-dump"
+ cp player/.libs/swfplay "$out/bin/swfplay"
+ '';
+
+ enableParallelBuilding = true;
+
+ meta = {
+ inherit version;
+ description = "Decoder/renderer for Macromedia Flash animations";
+ license = stdenv.lib.licenses.lgpl21 ;
+ maintainers = [stdenv.lib.maintainers.raskin];
+ platforms = stdenv.lib.platforms.linux;
+ homepage = https://swfdec.freedesktop.org/wiki/;
+ };
+}
diff --git a/pkgs/tools/inputmethods/m17n-db/default.nix b/pkgs/tools/inputmethods/m17n-db/default.nix
index 944d6de1084..dd8e96f8a6f 100644
--- a/pkgs/tools/inputmethods/m17n-db/default.nix
+++ b/pkgs/tools/inputmethods/m17n-db/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, gettext }:
stdenv.mkDerivation rec {
- name = "m17n-db-1.7.0";
+ name = "m17n-db-1.8.0";
src = fetchurl {
url = "http://download.savannah.gnu.org/releases/m17n/${name}.tar.gz";
- sha256 = "1w08hnsbknrcjlzp42c99bgwc9hzsnf5m4apdv0dacql2s09zfm2";
+ sha256 = "0vfw7z9i2s9np6nmx1d4dlsywm044rkaqarn7akffmb6bf1j6zv5";
};
buildInputs = [ gettext ];
diff --git a/pkgs/tools/misc/byobu/default.nix b/pkgs/tools/misc/byobu/default.nix
index 8f3c067018d..c5ebe7cf32e 100644
--- a/pkgs/tools/misc/byobu/default.nix
+++ b/pkgs/tools/misc/byobu/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, ncurses, python, perl, textual-window-manager }:
stdenv.mkDerivation rec {
- version = "5.124";
+ version = "5.125";
name = "byobu-" + version;
src = fetchurl {
url = "https://launchpad.net/byobu/trunk/${version}/+download/byobu_${version}.orig.tar.gz";
- sha256 = "08pipvh2iwy5d4b1bnrh0vwlmm884cqzgsz6jx3ar4shp63i5jjf";
+ sha256 = "1nx9vpyfn9zs8iyqnqdlskr8lqh4zlciijwd9qfpzmd50lkwh8jh";
};
doCheck = true;
diff --git a/pkgs/tools/misc/convmv/default.nix b/pkgs/tools/misc/convmv/default.nix
index e6ff7e99353..253e6a50b36 100644
--- a/pkgs/tools/misc/convmv/default.nix
+++ b/pkgs/tools/misc/convmv/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
- name = "convmv-2.04";
+ name = "convmv-2.05";
src = fetchurl {
url = "http://www.j3e.de/linux/convmv/${name}.tar.gz";
- sha256 = "075xn1ill26hbhg4nl54sp75b55db3ikl7lvhqb9ijvkpi67j6yy";
+ sha256 = "19hwv197p7c23f43vvav5bs19z9b72jzca2npkjsxgprwj5ardjk";
};
preBuild=''
diff --git a/pkgs/tools/misc/debootstrap/default.nix b/pkgs/tools/misc/debootstrap/default.nix
index bd5678c651f..9e3abaaedfc 100644
--- a/pkgs/tools/misc/debootstrap/default.nix
+++ b/pkgs/tools/misc/debootstrap/default.nix
@@ -4,13 +4,13 @@
# There is also cdebootstrap now. Is that easier to maintain?
stdenv.mkDerivation rec {
name = "debootstrap-${version}";
- version = "1.0.93";
+ version = "1.0.95";
src = fetchurl {
# git clone git://git.debian.org/d-i/debootstrap.git
# I'd like to use the source. However it's lacking the lanny script ? (still true?)
url = "mirror://debian/pool/main/d/debootstrap/debootstrap_${version}.tar.gz";
- sha256 = "1nyp9fwb7xrk1vin81dmgx2g9rb52yg4gwz4rcx97gamw4mlvbfd";
+ sha256 = "1xpd1yblcgwhri64hzgxhalpf5j8gqbmkrsm1fs0pbwiy0wdz0ry";
};
buildInputs = [ dpkg gettext gawk perl ];
diff --git a/pkgs/tools/misc/gsmartcontrol/default.nix b/pkgs/tools/misc/gsmartcontrol/default.nix
index d4322f051d0..f7cdf5ca608 100644
--- a/pkgs/tools/misc/gsmartcontrol/default.nix
+++ b/pkgs/tools/misc/gsmartcontrol/default.nix
@@ -1,18 +1,28 @@
-{ fetchurl, stdenv, smartmontools, gtkmm2, libglademm, pkgconfig, pcre }:
+{ fetchurl, stdenv, smartmontools, autoreconfHook, gettext, gtkmm3, pkgconfig, wrapGAppsHook, pcre-cpp, gnome3 }:
stdenv.mkDerivation rec {
- version="0.8.7";
+ version="1.1.3";
name = "gsmartcontrol-${version}";
src = fetchurl {
- url = "http://artificialtime.com/gsmartcontrol/gsmartcontrol-${version}.tar.bz2";
- sha256 = "1ipykzqpfvlr84j38hr7q2cag4imrn1gql10slp8bfrs4h1si3vh";
+ url = "mirror://sourceforge/gsmartcontrol/gsmartcontrol-${version}.tar.bz2";
+ sha256 = "1a8j7dkml9zvgpk83xcdajfz7g6mmpmm5k86dl5sjc24zb7n4kxn";
};
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ smartmontools gtkmm2 libglademm pcre ];
+ patches = [
+ ./fix-paths.patch
+ ];
- #installTargets = "install datainstall";
+ nativeBuildInputs = [ autoreconfHook gettext pkgconfig wrapGAppsHook ];
+ buildInputs = [ gtkmm3 pcre-cpp gnome3.adwaita-icon-theme ];
+
+ enableParallelBuilding = true;
+
+ preFixup = ''
+ gappsWrapperArgs+=(
+ --prefix PATH : "${stdenv.lib.makeBinPath [ smartmontools ]}"
+ )
+ '';
meta = {
description = "Hard disk drive health inspection tool";
@@ -25,7 +35,7 @@ stdenv.mkDerivation rec {
It allows you to inspect the drive's SMART data to determine its health,
as well as run various tests on it.
'';
- homepage = http://gsmartcontrol.sourceforge.net/;
+ homepage = https://gsmartcontrol.sourceforge.io/;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [qknight];
platforms = with stdenv.lib.platforms; linux;
diff --git a/pkgs/tools/misc/gsmartcontrol/fix-paths.patch b/pkgs/tools/misc/gsmartcontrol/fix-paths.patch
new file mode 100644
index 00000000000..905b63bee0c
--- /dev/null
+++ b/pkgs/tools/misc/gsmartcontrol/fix-paths.patch
@@ -0,0 +1,58 @@
+diff --git a/configure.ac b/configure.ac
+--- a/configure.ac
++++ b/configure.ac
+@@ -475,6 +475,7 @@
+
+
+ AC_CONFIG_FILES([ data/gsmartcontrol.desktop data/gsmartcontrol.appdata.xml \
++ data/org.gsmartcontrol.policy \
+ data/nsis/distribution.txt data/nsis/gsmartcontrol.nsi \
+ debian.dist/changelog \
+ src/gsc_winres.rc src/gsmartcontrol.exe.manifest \
+diff --git a/data/gsmartcontrol-root.in b/data/gsmartcontrol-root.in
+--- a/data/gsmartcontrol-root.in
++++ b/data/gsmartcontrol-root.in
+@@ -8,7 +8,7 @@
+ # Run gsmartcontrol with root, asking for root password first.
+ # export GSMARTCONTROL_SU to override a su command (e.g. "kdesu -c").
+
+-EXEC_BIN="@prefix@/sbin/gsmartcontrol";
++EXEC_BIN="@prefix@/bin/gsmartcontrol";
+ prog_name="gsmartcontrol"
+
+
+@@ -118,7 +118,7 @@
+ # Add @prefix@/sbin as well (freebsd seems to require it).
+ # Note that beesu won't show a GUI login box if /usr/sbin is before /usr/bin,
+ # so add it first as well.
+-EXTRA_PATHS="/usr/bin:/usr/sbin:/usr/local/sbin:@prefix@/sbin";
++EXTRA_PATHS="/usr/bin:/usr/sbin:/usr/local/sbin:@prefix@/bin";
+ export PATH="$EXTRA_PATHS:$PATH"
+
+
+diff --git a/data/org.gsmartcontrol.policy b/data/org.gsmartcontrol.policy.in
+rename from data/org.gsmartcontrol.policy
+rename to data/org.gsmartcontrol.policy.in
+--- a/data/org.gsmartcontrol.policy
++++ b/data/org.gsmartcontrol.policy.in
+@@ -12,7 +12,7 @@
+ auth_admin
+ auth_admin
+
+- /usr/sbin/gsmartcontrol
++ @prefix@/bin/gsmartcontrol
+ true
+
+
+diff --git a/src/Makefile.am b/src/Makefile.am
+--- a/src/Makefile.am
++++ b/src/Makefile.am
+@@ -24,7 +24,7 @@
+ # endif
+
+
+-sbin_PROGRAMS = gsmartcontrol
++bin_PROGRAMS = gsmartcontrol
+
+ gsmartcontrol_LDADD = $(top_builddir)/src/applib/libapplib.a \
+ $(top_builddir)/src/libdebug/libdebug.a \
diff --git a/pkgs/tools/misc/lf/default.nix b/pkgs/tools/misc/lf/default.nix
index 0a7073f4d48..8ef5bd1c07c 100644
--- a/pkgs/tools/misc/lf/default.nix
+++ b/pkgs/tools/misc/lf/default.nix
@@ -2,13 +2,13 @@
buildGoPackage rec {
name = "lf-${version}";
- version = "1";
+ version = "2";
src = fetchFromGitHub {
owner = "gokcehan";
repo = "lf";
rev = "r${version}";
- sha256 = "0mq83m7mvavd0dzhk8g6ffldy57i22n0846yzqnlz733chiy3anz";
+ sha256 = "0g9fy6x3wc5hda886ci79wj7rnjwvaidbwhsrckqgiqymbzvrdb8";
};
goPackagePath = "github.com/gokcehan/lf";
@@ -24,7 +24,7 @@ buildGoPackage rec {
runHook preBuild
runHook renameImports
cd go/src/${goPackagePath}
- go install -ldflags="-s -w -X main.gVersion=${version}"
+ go install -ldflags="-s -w -X main.gVersion=r${version}"
runHook postBuild
'';
diff --git a/pkgs/tools/misc/libbitcoin/libbitcoin-network.nix b/pkgs/tools/misc/libbitcoin/libbitcoin-network.nix
index 11657c03615..c17c99980a8 100644
--- a/pkgs/tools/misc/libbitcoin/libbitcoin-network.nix
+++ b/pkgs/tools/misc/libbitcoin/libbitcoin-network.nix
@@ -3,7 +3,7 @@
let
pname = "libbitcoin-network";
- version = "3.4.0";
+ version = "3.5.0";
in stdenv.mkDerivation {
name = "${pname}-${version}";
@@ -12,7 +12,7 @@ in stdenv.mkDerivation {
owner = "libbitcoin";
repo = pname;
rev = "v${version}";
- sha256 = "1zlhyh5z0fla1yc6kwkx65ycwgmrcrkvzj8119wbkxy3xhzpwxpv";
+ sha256 = "0vqg3i40kwmbys4lyp82xvg2nx3ik4qhc66gcm8k66a86wpj9ji6";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
diff --git a/pkgs/tools/misc/mbuffer/default.nix b/pkgs/tools/misc/mbuffer/default.nix
index ed6c08d5554..664c5cc8e78 100644
--- a/pkgs/tools/misc/mbuffer/default.nix
+++ b/pkgs/tools/misc/mbuffer/default.nix
@@ -3,12 +3,12 @@
} :
stdenv.mkDerivation rec {
- version = "20171011";
+ version = "20180318";
name = "mbuffer-${version}";
src = fetchurl {
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
- sha256 = "1z6is359dnlf61n6ida9ivghafzz5m8cf4hzdhma8nxv12brfbzb";
+ sha256 = "1sh0ipf77aav1k17dgl9dcjlb17zygs07x01g0nn0cg7yw5y5hfk";
};
buildInputs = [ openssl ];
diff --git a/pkgs/tools/misc/mpdscribble/default.nix b/pkgs/tools/misc/mpdscribble/default.nix
index 56684848eba..47eec54e127 100644
--- a/pkgs/tools/misc/mpdscribble/default.nix
+++ b/pkgs/tools/misc/mpdscribble/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
description = "A Music Player Daemon (MPD) client which submits information about tracks beeing played to a scrobbler (e.g. last.fm)";
homepage = http://mpd.wikia.com/wiki/Client:mpdscribble;
license = licenses.gpl2;
- maintainers = [ maintainers.matthiasbeyer ];
+ maintainers = [ ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/tools/misc/multitail/default.nix b/pkgs/tools/misc/multitail/default.nix
index bd446395bc7..82155eb51c7 100644
--- a/pkgs/tools/misc/multitail/default.nix
+++ b/pkgs/tools/misc/multitail/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = http://www.vanheusden.com/multitail/;
description = "tail on Steroids";
- maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
+ maintainers = with stdenv.lib.maintainers; [ ];
platforms = stdenv.lib.platforms.unix;
};
}
diff --git a/pkgs/tools/misc/neofetch/default.nix b/pkgs/tools/misc/neofetch/default.nix
index de4a22ee9e4..097eb2408f8 100644
--- a/pkgs/tools/misc/neofetch/default.nix
+++ b/pkgs/tools/misc/neofetch/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
name = "neofetch-${version}";
- version = "3.3.0";
+ version = "3.4.0";
src = fetchFromGitHub {
owner = "dylanaraps";
repo = "neofetch";
rev = version;
- sha256 = "1f1hvd635wv81qg802jdi0yggi4631w9nlznipaxkvk4y1zpdq5j";
+ sha256 = "10h4f7n6bllbq459nm9wppvk65n81zzv556njfqplzw3mpdrbiyx";
};
dontBuild = true;
diff --git a/pkgs/tools/misc/parallel/default.nix b/pkgs/tools/misc/parallel/default.nix
index 7287da2079a..e42a45b260e 100644
--- a/pkgs/tools/misc/parallel/default.nix
+++ b/pkgs/tools/misc/parallel/default.nix
@@ -1,11 +1,11 @@
{ fetchurl, stdenv, perl, makeWrapper, procps }:
stdenv.mkDerivation rec {
- name = "parallel-20180222";
+ name = "parallel-20180322";
src = fetchurl {
url = "mirror://gnu/parallel/${name}.tar.bz2";
- sha256 = "1bwx1rcrqz04d8fajlllhrfkjqxg0mfvsd86wf6p067gmgdrf6g8";
+ sha256 = "15v46pv4z98xm3fkwy7335faw4r7pilrxp4xis5a4zi4319sv2b3";
};
nativeBuildInputs = [ makeWrapper perl ];
diff --git a/pkgs/tools/misc/pdd/default.nix b/pkgs/tools/misc/pdd/default.nix
new file mode 100644
index 00000000000..d362bccb993
--- /dev/null
+++ b/pkgs/tools/misc/pdd/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchFromGitHub, buildPythonApplication, dateutil }:
+
+buildPythonApplication rec {
+ pname = "pdd";
+ version = "1.1";
+
+ src = fetchFromGitHub {
+ owner = "jarun";
+ repo = "pdd";
+ rev = "v${version}";
+ sha256 = "1nb64vdlym4najjyfxq1nprqcwgrwnqj1mml0fcg20hrgbjm4bf2";
+ };
+
+ format = "other";
+
+ propagatedBuildInputs = [ dateutil ];
+
+ installFlags = [ "PREFIX=$(out)" ];
+
+ meta = with stdenv.lib; {
+ homepage = "https://github.com/jarun/pdd";
+ description = "Tiny date, time diff calculator";
+ longDescription = ''
+ There are times you want to check how old you are (in years, months, days)
+ or how long you need to wait for the next flash sale or the number of days
+ left of your notice period in your current job. pdd (Python3 Date Diff) is
+ a small cmdline utility to calculate date and time difference. If no
+ program arguments are specified it shows the current date, time and
+ timezone.
+ '';
+ maintainers = [ maintainers.infinisil ];
+ license = licenses.gpl3;
+ };
+}
diff --git a/pkgs/tools/misc/plantuml/default.nix b/pkgs/tools/misc/plantuml/default.nix
index 447ef9dd5ec..2eb6f1aa8e6 100644
--- a/pkgs/tools/misc/plantuml/default.nix
+++ b/pkgs/tools/misc/plantuml/default.nix
@@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
# "java -jar plantuml.jar -license" says GPLv3 or later
license = licenses.gpl3Plus;
maintainers = [ maintainers.bjornfor ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/misc/recoverjpeg/default.nix b/pkgs/tools/misc/recoverjpeg/default.nix
index e0fefe85b9f..72ea7f2ea0b 100644
--- a/pkgs/tools/misc/recoverjpeg/default.nix
+++ b/pkgs/tools/misc/recoverjpeg/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "recoverjpeg-${version}";
- version = "2.6.1";
+ version = "2.6.2";
src = fetchurl {
url = "https://www.rfc1149.net/download/recoverjpeg/${name}.tar.gz";
- sha256 = "00zi23l4nq9nfjg1zzbpsfxf1s47r5w713aws90w13fd19jqn0rj";
+ sha256 = "01vayn2b3mqmyqz2ka2j3k4a93bjdvkhv5ry9207v04r83r7iwfp";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/tools/misc/smc/default.nix b/pkgs/tools/misc/smc/default.nix
index 83c384e5ec0..e0d1ff20835 100644
--- a/pkgs/tools/misc/smc/default.nix
+++ b/pkgs/tools/misc/smc/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, jre }:
stdenv.mkDerivation rec {
- name = "smc-6.6.0";
+ name = "smc-6.6.3";
src = fetchurl {
- url = "mirror://sourceforge/project/smc/smc/6_6_0/smc_6_6_0.tgz";
- sha256 = "14lf286dslm7ymkr4my1xgjvwvqc9181mwkfr65ab49cxl0q85wz";
+ url = "mirror://sourceforge/project/smc/smc/6_6_3/smc_6_6_3.tgz";
+ sha256 = "1gv0hrgdl4wp562virpf9sib6pdhapwv4zvwbl0d5f5xyx04il11";
};
# Prebuilt Java package.
diff --git a/pkgs/tools/misc/smenu/default.nix b/pkgs/tools/misc/smenu/default.nix
index 061a6c58d23..3db0ee9af26 100644
--- a/pkgs/tools/misc/smenu/default.nix
+++ b/pkgs/tools/misc/smenu/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
your selection will be sent to standard output.
'';
license = licenses.gpl2;
- maintainers = [ maintainers.matthiasbeyer ];
+ maintainers = [ ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/tools/misc/txt2man/default.nix b/pkgs/tools/misc/txt2man/default.nix
index 29bd3235dfb..f37892a231a 100644
--- a/pkgs/tools/misc/txt2man/default.nix
+++ b/pkgs/tools/misc/txt2man/default.nix
@@ -1,11 +1,12 @@
{ stdenv, fetchurl, coreutils, gawk }:
stdenv.mkDerivation rec {
- name = "txt2man-1.5.6";
+ name = "txt2man-${version}";
+ version = "1.6.0";
src = fetchurl {
- url = "http://mvertes.free.fr/download/${name}.tar.gz";
- sha256 = "0ammlb4pwc4ya1kc9791vjl830074zrpfcmzc18lkcqczp2jaj4q";
+ url = "https://github.com/mvertes/txt2man/archive/${name}.tar.gz";
+ sha256 = "168cj96974n2z0igin6j1ic1m45zyic7nm5ark7frq8j78rrx4zn";
};
preConfigure = ''
diff --git a/pkgs/tools/misc/vdirsyncer/default.nix b/pkgs/tools/misc/vdirsyncer/default.nix
index ad5b259eb77..9d1e4096776 100644
--- a/pkgs/tools/misc/vdirsyncer/default.nix
+++ b/pkgs/tools/misc/vdirsyncer/default.nix
@@ -33,7 +33,7 @@ pythonPackages.buildPythonApplication rec {
meta = with stdenv.lib; {
homepage = https://github.com/pimutils/vdirsyncer;
description = "Synchronize calendars and contacts";
- maintainers = with maintainers; [ matthiasbeyer jgeerds ];
+ maintainers = with maintainers; [ jgeerds ];
platforms = platforms.all;
license = licenses.mit;
};
diff --git a/pkgs/tools/misc/vimer/default.nix b/pkgs/tools/misc/vimer/default.nix
index a655aa9502e..7ccc6e9dc27 100644
--- a/pkgs/tools/misc/vimer/default.nix
+++ b/pkgs/tools/misc/vimer/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
in an existing instance of GVim or MacVim.
'';
license = licenses.mit;
- maintainers = [ maintainers.matthiasbeyer ];
+ maintainers = [ ];
platforms = platforms.linux;
};
diff --git a/pkgs/tools/misc/woeusb/default.nix b/pkgs/tools/misc/woeusb/default.nix
index 436a252e678..197eea17d88 100644
--- a/pkgs/tools/misc/woeusb/default.nix
+++ b/pkgs/tools/misc/woeusb/default.nix
@@ -3,14 +3,14 @@
, wxGTK30 }:
stdenv.mkDerivation rec {
- version = "3.1.4";
+ version = "3.1.5";
name = "woeusb-${version}";
src = fetchFromGitHub {
owner = "slacka";
repo = "WoeUSB";
rev = "v${version}";
- sha256 = "0hvxsm6k6s29wnr3i5b9drf6ml0i32is2l50l3cxvf1f499w4bpc";
+ sha256 = "0jbyrd49ikwkfpnka884y3p600bm3nfil2zinrgbac7vyhxxqjmw";
};
buildInputs = [ wxGTK30 autoreconfHook makeWrapper ];
diff --git a/pkgs/tools/misc/xburst-tools/default.nix b/pkgs/tools/misc/xburst-tools/default.nix
index c64ae609bcb..6b63e2f55a2 100644
--- a/pkgs/tools/misc/xburst-tools/default.nix
+++ b/pkgs/tools/misc/xburst-tools/default.nix
@@ -22,6 +22,8 @@ stdenv.mkDerivation {
"--enable-firmware CROSS_COMPILE=${crossPrefix}-"
else "";
+ hardeningDisable = [ "pic" "stackprotector" ];
+
# Not to strip cross build binaries (this is for the gcc-cross-wrapper)
dontCrossStrip = true;
diff --git a/pkgs/tools/misc/yad/default.nix b/pkgs/tools/misc/yad/default.nix
index 31b8d673a98..2c5a2b808a5 100644
--- a/pkgs/tools/misc/yad/default.nix
+++ b/pkgs/tools/misc/yad/default.nix
@@ -2,11 +2,11 @@
, wrapGAppsHook }:
stdenv.mkDerivation rec {
- name = "yad-0.37.0";
+ name = "yad-0.40.0";
src = fetchurl {
url = "http://sourceforge.net/projects/yad-dialog/files/${name}.tar.xz";
- sha256 = "0fhqsgml1axaa9avd0hbam5wm77c2c7q1bz4hs7fvyvdnljazvwi";
+ sha256 = "1x0fsv8nfkm8lchdawnf3zw79jaqbnvhv87sk5r8g86knv8vgl62";
};
configureFlags = [
diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix
index 316d3f181fe..cbfbf77739b 100644
--- a/pkgs/tools/misc/youtube-dl/default.nix
+++ b/pkgs/tools/misc/youtube-dl/default.nix
@@ -16,11 +16,11 @@ with stdenv.lib;
buildPythonApplication rec {
pname = "youtube-dl";
- version = "2018.03.14";
+ version = "2018.03.26.1";
src = fetchurl {
url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz";
- sha256 = "0j8j797gqc29fd5ra3cjvwkp8dgvigdydsj0zzjs05zccfqrj9lh";
+ sha256 = "1sbapwx2zdhprvmljqs6rzxnhiyfpxgin7qyjdrg6h25hhq63vss";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/tools/networking/axel/default.nix b/pkgs/tools/networking/axel/default.nix
index c9d689b8b2c..2155d3c1b3d 100644
--- a/pkgs/tools/networking/axel/default.nix
+++ b/pkgs/tools/networking/axel/default.nix
@@ -19,6 +19,6 @@ stdenv.mkDerivation rec {
description = "Console downloading program with some features for parallel connections for faster downloading";
homepage = http://axel.alioth.debian.org/;
maintainers = with maintainers; [ pSub ];
- platforms = with platforms; linux ++ darwin;
+ platforms = with platforms; linux;
};
}
diff --git a/pkgs/tools/networking/dhcpcd/default.nix b/pkgs/tools/networking/dhcpcd/default.nix
index 02d5a3073f4..93529fe4ce5 100644
--- a/pkgs/tools/networking/dhcpcd/default.nix
+++ b/pkgs/tools/networking/dhcpcd/default.nix
@@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ udev ];
+ preConfigure = "patchShebangs ./configure";
+
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
diff --git a/pkgs/tools/networking/getmail/default.nix b/pkgs/tools/networking/getmail/default.nix
index 4a358255b10..224c7a4ab48 100644
--- a/pkgs/tools/networking/getmail/default.nix
+++ b/pkgs/tools/networking/getmail/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, python2Packages }:
python2Packages.buildPythonApplication rec {
- version = "5.5";
+ version = "5.6";
name = "getmail-${version}";
namePrefix = "";
src = fetchurl {
url = "http://pyropus.ca/software/getmail/old-versions/${name}.tar.gz";
- sha256 = "0l43lbnrnyyrq8mlnw37saq6v0mh3nkirdq1dwnsrihykzjjwf70";
+ sha256 = "16nmvj80szr6yvcxxgmxn2lxqpjqqj4xg5a0b66zhvck6j42q3a6";
};
doCheck = false;
diff --git a/pkgs/tools/networking/htpdate/default.nix b/pkgs/tools/networking/htpdate/default.nix
index f0bb4ab46fa..c8e14ad7f69 100644
--- a/pkgs/tools/networking/htpdate/default.nix
+++ b/pkgs/tools/networking/htpdate/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Utility to fetch time and set the system clock over HTTP";
homepage = http://www.vervest.org/htp/;
- platforms = platforms.unix;
+ platforms = platforms.linux;
license = licenses.gpl2Plus;
};
}
diff --git a/pkgs/tools/networking/http-prompt/default.nix b/pkgs/tools/networking/http-prompt/default.nix
index b1f83c8b216..37f4f96a317 100644
--- a/pkgs/tools/networking/http-prompt/default.nix
+++ b/pkgs/tools/networking/http-prompt/default.nix
@@ -28,7 +28,7 @@ pythonPackages.buildPythonApplication rec {
description = "An interactive command-line HTTP client featuring autocomplete and syntax highlighting";
homepage = https://github.com/eliangcs/http-prompt;
license = licenses.mit;
- maintainers = with maintainers; [ matthiasbeyer ];
+ maintainers = with maintainers; [ ];
platforms = platforms.linux; # can only test on linux
};
}
diff --git a/pkgs/tools/networking/mailutils/default.nix b/pkgs/tools/networking/mailutils/default.nix
index 6f47b4b5576..c85aaea6f3b 100644
--- a/pkgs/tools/networking/mailutils/default.nix
+++ b/pkgs/tools/networking/mailutils/default.nix
@@ -34,7 +34,7 @@ in stdenv.mkDerivation rec {
];
doCheck = true;
- enableParallelBuilding = true;
+ enableParallelBuilding = false;
hardeningDisable = [ "format" ];
configureFlags = [
diff --git a/pkgs/tools/networking/minio-client/default.nix b/pkgs/tools/networking/minio-client/default.nix
index 7538c08249c..bfe7dfc2dc0 100644
--- a/pkgs/tools/networking/minio-client/default.nix
+++ b/pkgs/tools/networking/minio-client/default.nix
@@ -3,13 +3,13 @@
buildGoPackage rec {
name = "minio-client-${version}";
- version = "2018-02-09T23-07-36Z";
+ version = "2018-03-25T01-22-22Z";
src = fetchFromGitHub {
owner = "minio";
repo = "mc";
rev = "RELEASE.${version}";
- sha256 = "1mzjqcvl8740jkkrsyycwqminnd0vdl1m2mvq8hnywj8hs816bfd";
+ sha256 = "1x71va37jaqsi99d0i0mccybrs9kjgmpfsm0dchmc58mmhyagh3k";
};
goPackagePath = "github.com/minio/mc";
diff --git a/pkgs/tools/networking/ngrok-2/default.nix b/pkgs/tools/networking/ngrok-2/default.nix
index 031161da4d5..23725fb2d87 100644
--- a/pkgs/tools/networking/ngrok-2/default.nix
+++ b/pkgs/tools/networking/ngrok-2/default.nix
@@ -1,31 +1,38 @@
{ stdenv, fetchurl, unzip }:
+with stdenv.lib;
+
stdenv.mkDerivation rec {
name = "ngrok-${version}";
version = "2.2.8";
- src = if stdenv.system == "i686-linux" then fetchurl {
+ src = if stdenv.isLinux && stdenv.isi686 then fetchurl {
url = "https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-i386.tgz";
sha256 = "0s5ymlaxrvm13q3mlvfirh74sx60qh56c5sgdma2r7q5qlsq41xg";
- } else if stdenv.system == "x86_64-linux" then fetchurl {
+ } else if stdenv.isLinux && stdenv.isx86_64 then fetchurl {
url = "https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.tgz";
sha256 = "1mn9iwgy6xzrjihikwc2k2j59igqmph0cwx17qp0ziap9lp5xxad";
+ } else if stdenv.isDarwin then fetchurl {
+ url = "https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-darwin-386.zip";
+ sha256 = "0yfd250b55wcpgqd00rqfaa7a82f35fmybb31q5xwdbgc2i47pbh";
} else throw "platform ${stdenv.system} not supported!";
sourceRoot = ".";
+ nativeBuildInputs = optional stdenv.isDarwin unzip;
+
installPhase = ''
install -D ngrok $out/bin/ngrok
'';
- meta = with stdenv.lib; {
+ meta = {
description = "ngrok";
longDescription = ''
Allows you to expose a web server running on your local machine to the internet.
'';
homepage = https://ngrok.com/;
- license = stdenv.lib.licenses.unfree;
- platforms = [ "i686-linux" "x86_64-linux" ];
+ license = licenses.unfree;
+ platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
maintainers = [ maintainers.bobvanderlinden ];
};
}
diff --git a/pkgs/tools/networking/nzbget/default.nix b/pkgs/tools/networking/nzbget/default.nix
index d72ee844c0e..ef65444ae33 100644
--- a/pkgs/tools/networking/nzbget/default.nix
+++ b/pkgs/tools/networking/nzbget/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "nzbget-${version}";
- version = "19.0";
+ version = "19.1";
src = fetchurl {
url = "http://github.com/nzbget/nzbget/releases/download/v${version}/nzbget-${version}-src.tar.gz";
- sha256 = "08kgi4zmh4h1pvxh8x4c3ydf9xl2s6ncm579f0wdm2zknvpf0j16";
+ sha256 = "1rjwv555zc2hiagf00k8l1pzav91qglsnqbqkyy3pmn2d8sl5pq6";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/tools/networking/p2p/libtorrent/default.nix b/pkgs/tools/networking/p2p/libtorrent/default.nix
index 87785f50e6f..87cf6d172c0 100644
--- a/pkgs/tools/networking/p2p/libtorrent/default.nix
+++ b/pkgs/tools/networking/p2p/libtorrent/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
homepage = "http://rtorrent.net/downloads/";
description = "A BitTorrent library written in C++ for *nix, with focus on high performance and good code";
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = with maintainers; [ ebzzry codyopel ];
};
}
diff --git a/pkgs/tools/networking/tlspool/configvar-fix.patch b/pkgs/tools/networking/tlspool/configvar-fix.patch
deleted file mode 100644
index 424fef20dcf..00000000000
--- a/pkgs/tools/networking/tlspool/configvar-fix.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 8561789ba70ae5d741992b143ee288b8e11a5e2b Mon Sep 17 00:00:00 2001
-From: joachim schiele
-Date: Wed, 1 Mar 2017 15:15:22 +0100
-Subject: [PATCH] fix to
- https://github.com/arpa2/tlspool/issues/58#issuecomment-283333738
-
----
- tool/Makefile | 5 ++---
- 1 file changed, 2 insertions(+), 3 deletions(-)
-
-diff --git a/tool/Makefile b/tool/Makefile
-index 9a15012..0f655e9 100644
---- a/tool/Makefile
-+++ b/tool/Makefile
-@@ -38,7 +38,6 @@ pgp11genkey_LIBS = $(P11KIT_LIBS) -lcrypto
-
- configvar_CFLAGS = $(tlspool_CFLAGS)
- configvar_LDFLAGS = $(tlspool_LDFLAGS)
--configvar_LIBS = $(tlspool_LIBS)
-
- P11KIT_CFLAGS = $(shell pkg-config --cflags p11-kit-1)
- P11KIT_LIBS = $(shell pkg-config --libs p11-kit-1)
-@@ -96,8 +95,8 @@ have_db: have_db.c
- pgp11_genkey: pgp11_genkey.c
- gcc -std=gnu11 $(CFLAGS) $(pgp11genkey_CFLAGS) -o "$@" "$<" $(pgp11genkey_LIBS)
-
--configvar: configvar.c $(configvar_LIBS)
-- gcc -std=gnu11 $(CFLAGS) $(configvar_CFLAGS) $(configvar_LDFLAGS) $(configvar_CFLAGS) -o "$@" "$<" $(configvar_LIBS)
-+configvar: configvar.c
-+ gcc -std=gnu11 $(CFLAGS) $(configvar_CFLAGS) $(configvar_LDFLAGS) $(configvar_CFLAGS) -o "$@" "$<"
-
- $(tlspool_LIBS):
- $(MAKE) -C ../lib `basename $(tlspool_LIBS)`
---
-2.12.0
-
diff --git a/pkgs/tools/networking/tlspool/default.nix b/pkgs/tools/networking/tlspool/default.nix
index 02d3f2c2948..b992fef2253 100644
--- a/pkgs/tools/networking/tlspool/default.nix
+++ b/pkgs/tools/networking/tlspool/default.nix
@@ -1,56 +1,51 @@
-{ pkgs, stdenv, fetchFromGitHub, unzip, libtool, pkgconfig, git, p11-kit,
- libtasn1, db, openldap, libmemcached, cyrus_sasl, openssl, softhsm, bash,
- python, libkrb5, quickder, unbound, ldns, gnupg, gnutls-kdh,
- useSystemd ? true, systemd, swig
+{ stdenv, fetchFromGitHub
+, cmake, pkgconfig, arpa2cm
+, openldap, p11-kit, unbound, libtasn1, db, openssl, quickder, libkrb5, ldns, gnutls-kdh
+, softhsm
}:
let
pname = "tlspool";
- version = "20170123";
+ version = "20180227";
in
stdenv.mkDerivation rec {
name = "${pname}-${version}";
- src = fetchFromGitHub {
+ src = fetchFromGitHub {
owner = "arpa2";
repo = "tlspool";
- rev = "90cfa0758b02849114ba6373f280a4f2d3e534bf";
- sha256 = "1qyq6da5bsgb8y9f3jhfrnhbvjns4k80lpkrydkvfx83bg494370";
+ rev = "b4459637d71c7602e94d455e23c74f3973b9cf30";
+ sha256 = "0x78f2bdsiglwicwn3injm5ysfjlfa0yzdpnc0r3iw4z0n89rj2r";
};
- propagatedBuildInputs = [ python softhsm openldap p11-kit.dev p11-kit.out gnupg ];
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ unbound unzip git libtasn1 db libmemcached cyrus_sasl openssl bash quickder
- libkrb5 ldns libtool swig pkgs.pythonPackages.pip gnutls-kdh ]
- ++ stdenv.lib.optional useSystemd systemd;
+ nativeBuildInputs = [
+ cmake pkgconfig arpa2cm
+ ];
- patches = [ ./fixing-rpath.patch ./configvar-fix.patch ];
+ buildInputs = [
+ openldap p11-kit unbound libtasn1 db openssl quickder libkrb5 ldns gnutls-kdh
+ ];
postPatch = ''
+ # CMake is probably confused because the current version isn't 1.2.6, but 1.2-6
+ substituteInPlace CMakeLists.txt \
+ --replace "Quick-DER 1.2.4" "Quick-DER 1.2"
substituteInPlace etc/tlspool.conf \
--replace "dnssec_rootkey ../etc/root.key" "dnssec_rootkey $out/etc/root.key" \
--replace "pkcs11_path /usr/local/lib/softhsm/libsofthsm2.so" "pkcs11_path ${softhsm}/lib/softhsm/libsofthsm2.so"
- substituteInPlace lib/Makefile \
- --replace "DESTDIR=\$(DESTDIR) PREFIX=\$(PREFIX)" "DESTDIR=\$(DESTDIR) PREFIX=\$(PREFIX) SWIG=${swig}/bin/swig"
'';
- buildPhase = ''
- make clean
- make DESTDIR=$out PREFIX=/ all
- '';
-
- installPhase = ''
- mkdir -p $out/bin $out/lib $out/sbin $out/etc/tlspool/ $out/include/${pname}/pulleyback
- make DESTDIR=$out PREFIX=/ install
- cp -R etc/* $out/etc/tlspool/
- cp include/tlspool/*.h $out/include/${pname}
- cp pulleyback/*.h $out/include/${pname}/pulleyback/
- cp src/*.h $out/include/${pname}
+ postInstall = ''
+ mkdir -p $out/include/${pname}/pulleyback $out/etc/tlspool
+ cp -R $src/etc/* $out/etc/tlspool/
+ cp $src/include/tlspool/*.h $out/include/${pname}
+ cp $src/pulleyback/*.h $out/include/${pname}/pulleyback/
+ cp $src/src/*.h $out/include/${pname}
'';
meta = with stdenv.lib; {
description = "A supercharged TLS daemon that allows for easy, strong and consistent deployment";
- license = licenses.bsd2;
+ license = licenses.gpl3;
homepage = http://www.tlspool.org;
maintainers = with maintainers; [ leenaars qknight ];
};
diff --git a/pkgs/tools/networking/tlspool/fixing-rpath.patch b/pkgs/tools/networking/tlspool/fixing-rpath.patch
deleted file mode 100644
index 6a434f3e400..00000000000
--- a/pkgs/tools/networking/tlspool/fixing-rpath.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 8082f050794f771d1afb8e5c3d08862fc633922b Mon Sep 17 00:00:00 2001
-From: joachim schiele
-Date: Wed, 1 Mar 2017 13:12:19 +0100
-Subject: [PATCH] RPATH is back
- https://github.com/arpa2/tlspool/issues/58#issuecomment-283318767
-
----
- tool/Makefile | 10 +++++++++-
- 1 file changed, 9 insertions(+), 1 deletion(-)
-
-diff --git a/tool/Makefile b/tool/Makefile
-index c1e6ce9..9a15012 100644
---- a/tool/Makefile
-+++ b/tool/Makefile
-@@ -18,9 +18,17 @@ LIBS =
-
- PREFIX = /usr/local
-
-+DIR := ${CURDIR}
-+LIBDIR := ""
-+ifndef DESTDIR
-+ LIBDIR=$(DIR)/../lib/
-+else
-+ LIBDIR=$(DESTDIR)/lib
-+endif
-+
- tlspool_CFLAGS =
- tlspool_LIBS = ../lib/libtlspool.so
--tlspool_LDFLAGS = -L ../lib -ltlspool
-+tlspool_LDFLAGS = -L ../lib -ltlspool -Wl,-rpath,$(LIBDIR)
-
- donai_CFLAGS = -DDONAI_ONLY_TEXTPROC
- donai_SRC = ../src/donai.c
---
-2.11.1
-
diff --git a/pkgs/tools/networking/urlwatch/default.nix b/pkgs/tools/networking/urlwatch/default.nix
index 0c37043de9b..3e77117e55f 100644
--- a/pkgs/tools/networking/urlwatch/default.nix
+++ b/pkgs/tools/networking/urlwatch/default.nix
@@ -2,13 +2,13 @@
python3Packages.buildPythonApplication rec {
name = "urlwatch-${version}";
- version = "2.8";
+ version = "2.9";
src = fetchFromGitHub {
owner = "thp";
repo = "urlwatch";
rev = version;
- sha256 = "1nja7n6pc45azd3l1xyvav89855lvcgwabrvf34rps81dbl8cnl4";
+ sha256 = "0biy02vyhdwghy9qjmjwlfd8hzaz9gfsssd53ng6zpww4wkkiydz";
};
propagatedBuildInputs = with python3Packages; [
diff --git a/pkgs/tools/package-management/nix-review/default.nix b/pkgs/tools/package-management/nix-review/default.nix
new file mode 100644
index 00000000000..3dc452db3e2
--- /dev/null
+++ b/pkgs/tools/package-management/nix-review/default.nix
@@ -0,0 +1,31 @@
+{ stdenv
+, python3
+, fetchFromGitHub
+, nix
+, makeWrapper
+}:
+
+python3.pkgs.buildPythonApplication rec {
+ pname = "nix-review";
+ version = "0.1.0";
+
+ src = fetchFromGitHub {
+ owner = "Mic92";
+ repo = "nix-review";
+ rev = version;
+ sha256 = "1kafp3x95dklydy5224w0a292rd8pv30lz6z5ddk6y7zg3fsxrcr";
+ };
+
+ buildInputs = [ makeWrapper ];
+
+ preFixup = ''
+ wrapProgram $out/bin/nix-review --prefix PATH : ${nix}/bin
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Review pull-requests on https://github.com/NixOS/nixpkgs";
+ homepage = https://github.com/Mic92/nix-review;
+ license = licenses.mit;
+ maintainers = [ maintainers.mic92 ];
+ };
+}
diff --git a/pkgs/tools/package-management/nixops/default.nix b/pkgs/tools/package-management/nixops/default.nix
index daecb8746ea..ec82115087b 100644
--- a/pkgs/tools/package-management/nixops/default.nix
+++ b/pkgs/tools/package-management/nixops/default.nix
@@ -1,9 +1,9 @@
{ callPackage, fetchurl }:
callPackage ./generic.nix (rec {
- version = "1.5.2";
+ version = "1.6";
src = fetchurl {
url = "http://nixos.org/releases/nixops/nixops-${version}/nixops-${version}.tar.bz2";
- sha256 = "00y2arc5rffvy6xmx4p6ibpjyc61k8dkiabq7ccwwjgckz1d2dpb";
+ sha256 = "0f8ql1a9maf9swl8q054b1haxqckdn78p2xgpwl7paxc98l67i7x";
};
})
diff --git a/pkgs/tools/package-management/nixops/generic.nix b/pkgs/tools/package-management/nixops/generic.nix
index d9c9661d41a..f392e0f50ed 100644
--- a/pkgs/tools/package-management/nixops/generic.nix
+++ b/pkgs/tools/package-management/nixops/generic.nix
@@ -25,6 +25,7 @@ python2Packages.buildPythonApplication {
pysqlite
datadog
digital-ocean
+ libvirt
];
doCheck = false;
diff --git a/pkgs/tools/security/apg/default.nix b/pkgs/tools/security/apg/default.nix
index 04b29bcf8f7..db490c7822f 100644
--- a/pkgs/tools/security/apg/default.nix
+++ b/pkgs/tools/security/apg/default.nix
@@ -10,7 +10,10 @@ stdenv.mkDerivation rec {
'';
makeFlags = stdenv.lib.optionals stdenv.isDarwin ["CC=cc"];
- patches = [ ./apg.patch ];
+ patches = [
+ ./apg.patch
+ ./phony-install-target.patch
+ ];
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
sed -i -e 's|APG_CLIBS += -lcrypt|APG_CLIBS += -L${openssl.out}/lib -lcrypto|' Makefile
@@ -64,6 +67,6 @@ stdenv.mkDerivation rec {
homepage = http://www.adel.nursat.kz/apg/;
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
- platforms = stdenv.lib.platforms.linux;
+ platforms = stdenv.lib.platforms.unix;
};
}
diff --git a/pkgs/tools/security/apg/phony-install-target.patch b/pkgs/tools/security/apg/phony-install-target.patch
new file mode 100644
index 00000000000..9edf50b4b59
--- /dev/null
+++ b/pkgs/tools/security/apg/phony-install-target.patch
@@ -0,0 +1,11 @@
+diff -ur a/Makefile b/Makefile
+--- a/Makefile 2003-08-08 00:40:39.000000000 +0900
++++ b/Makefile 2018-04-05 22:29:39.284191020 +0900
+@@ -142,6 +142,7 @@
+ strip ${CS_PROGNAME}
+ strip ${BFM_PROGNAME}
+
++.PHONY: install
+ install:
+ if test -x ./apg; then \
+ ./mkinstalldirs ${INSTALL_PREFIX}${APG_BIN_DIR}; \
diff --git a/pkgs/tools/security/bettercap/Gemfile.lock b/pkgs/tools/security/bettercap/Gemfile.lock
deleted file mode 100644
index 9260d1fd5ab..00000000000
--- a/pkgs/tools/security/bettercap/Gemfile.lock
+++ /dev/null
@@ -1,42 +0,0 @@
-GEM
- remote: https://rubygems.org/
- specs:
- bettercap (1.6.2)
- colorize (~> 0.8.0)
- em-proxy (~> 0.1, >= 0.1.8)
- net-dns (~> 0.8, >= 0.8.0)
- network_interface (~> 0.0, >= 0.0.1)
- packetfu (~> 1.1, >= 1.1.10)
- pcaprub (~> 0.12, >= 0.12.0, <= 1.1.11)
- rubydns (~> 1.0, >= 1.0.3)
- celluloid (0.16.0)
- timers (~> 4.0.0)
- celluloid-io (0.16.2)
- celluloid (>= 0.16.0)
- nio4r (>= 1.1.0)
- colorize (0.8.1)
- em-proxy (0.1.9)
- eventmachine
- eventmachine (1.2.5)
- hitimes (1.2.6)
- net-dns (0.8.0)
- network_interface (0.0.2)
- nio4r (2.2.0)
- packetfu (1.1.13)
- pcaprub
- pcaprub (0.12.4)
- rubydns (1.0.3)
- celluloid (= 0.16.0)
- celluloid-io (= 0.16.2)
- timers (~> 4.0.1)
- timers (4.0.4)
- hitimes
-
-PLATFORMS
- ruby
-
-DEPENDENCIES
- bettercap
-
-BUNDLED WITH
- 1.14.6
diff --git a/pkgs/tools/security/bettercap/default.nix b/pkgs/tools/security/bettercap/default.nix
index 46832e83ac9..a85ce7df921 100644
--- a/pkgs/tools/security/bettercap/default.nix
+++ b/pkgs/tools/security/bettercap/default.nix
@@ -1,16 +1,23 @@
-{ lib, bundlerEnv, ruby, libpcap}:
+{ stdenv, buildGoPackage, fetchFromGitHub, pkgconfig, libpcap, libnfnetlink, libnetfilter_queue }:
-bundlerEnv rec {
+buildGoPackage rec {
name = "bettercap-${version}";
+ version = "2.4";
- version = (import gemset).bettercap.version;
- inherit ruby;
- gemdir = ./.;
- gemset = ./gemset.nix;
+ goPackagePath = "github.com/bettercap/bettercap";
- buildInputs = [ libpcap ruby ];
+ src = fetchFromGitHub {
+ owner = "bettercap";
+ repo = "bettercap";
+ rev = "v${version}";
+ sha256 = "1k1ank8z9sr3vxm86dfcrn1y3qa3gfwyb2z0fvkvi38gc88pfljb";
+ };
- meta = with lib; {
+ buildInputs = [libpcap libnfnetlink libnetfilter_queue pkgconfig];
+
+ goDeps = ./deps.nix;
+
+ meta = with stdenv.lib; {
description = "A man in the middle tool";
longDescription = ''
BetterCAP is a powerful, flexible and portable tool created to perform various types of MITM attacks against a network, manipulate HTTP, HTTPS and TCP traffic in realtime, sniff for credentials and much more.
diff --git a/pkgs/tools/security/bettercap/deps.nix b/pkgs/tools/security/bettercap/deps.nix
new file mode 100644
index 00000000000..6a03e88000c
--- /dev/null
+++ b/pkgs/tools/security/bettercap/deps.nix
@@ -0,0 +1,228 @@
+# file generated from Gopkg.lock using dep2nix (https://github.com/nixcloud/dep2nix)
+[
+ {
+ goPackagePath = "github.com/adrianmo/go-nmea";
+ fetch = {
+ type = "git";
+ url = "https://github.com/adrianmo/go-nmea";
+ rev = "22095aa1b48050243d3eb9a001ca80eb91a0c6fa";
+ sha256 = "0hgjfmnff794j537kbrjcsxzr9xyggm09rw3wp2xrzahh9pxdlm5";
+ };
+ }
+ {
+ goPackagePath = "github.com/bettercap/gatt";
+ fetch = {
+ type = "git";
+ url = "https://github.com/bettercap/gatt";
+ rev = "6475b946a0bff32e906c25d861f2b1c6d2056baa";
+ sha256 = "0f2n35yz6fcbmswy1wyv2z72d3iia7xxapjkvwkbj2zqfxxwn26s";
+ };
+ }
+ {
+ goPackagePath = "github.com/bettercap/readline";
+ fetch = {
+ type = "git";
+ url = "https://github.com/bettercap/readline";
+ rev = "9cec905dd29109b64e6752507fba73474c2efd46";
+ sha256 = "1lsnyckg2l78hz4la8dhwvjsyff706khw10nxds5afzl4mrih3vn";
+ };
+ }
+ {
+ goPackagePath = "github.com/chifflier/nfqueue-go";
+ fetch = {
+ type = "git";
+ url = "https://github.com/chifflier/nfqueue-go";
+ rev = "61ca646babef3bd4dea1deb610bfb0005c0a1298";
+ sha256 = "1i1q2xl86f3s9x3j2ffxprwqhcrkh4w23hh4ib7jksxvaq36v33l";
+ };
+ }
+ {
+ goPackagePath = "github.com/dustin/go-humanize";
+ fetch = {
+ type = "git";
+ url = "https://github.com/dustin/go-humanize";
+ rev = "bb3d318650d48840a39aa21a027c6630e198e626";
+ sha256 = "1lqd8ix3cb164j5iazjby2jpa6bdsflhy0h9mi4yldvvcvrc194c";
+ };
+ }
+ {
+ goPackagePath = "github.com/elazarl/goproxy";
+ fetch = {
+ type = "git";
+ url = "https://github.com/elazarl/goproxy";
+ rev = "a96fa3a318260eab29abaf32f7128c9eb07fb073";
+ sha256 = "0grm4n28mkj2w4c42ghl797svxykv1z3hsdi1ihnrvq6pr08xky4";
+ };
+ }
+ {
+ goPackagePath = "github.com/google/go-github";
+ fetch = {
+ type = "git";
+ url = "https://github.com/google/go-github";
+ rev = "437797734d06eec5394734a84cb5b59c82a66ee6";
+ sha256 = "09ajj73rwsxc03dmm39g8b0qaz88h6gnraw2xn8h7z57qqv6ikcx";
+ };
+ }
+ {
+ goPackagePath = "github.com/google/go-querystring";
+ fetch = {
+ type = "git";
+ url = "https://github.com/google/go-querystring";
+ rev = "53e6ce116135b80d037921a7fdd5138cf32d7a8a";
+ sha256 = "0lkbm067nhmxk66pyjx59d77dbjjzwyi43gdvzyx2f8m1942rq7f";
+ };
+ }
+ {
+ goPackagePath = "github.com/google/gopacket";
+ fetch = {
+ type = "git";
+ url = "https://github.com/google/gopacket";
+ rev = "1d3841317373a001d49e2abcc5be4e442211d454";
+ sha256 = "1jffnrvrma3rm5zxmig52145y9bxc3b4ys4jr1nwmq43jk15s3kp";
+ };
+ }
+ {
+ goPackagePath = "github.com/gorilla/context";
+ fetch = {
+ type = "git";
+ url = "https://github.com/gorilla/context";
+ rev = "08b5f424b9271eedf6f9f0ce86cb9396ed337a42";
+ sha256 = "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4";
+ };
+ }
+ {
+ goPackagePath = "github.com/gorilla/mux";
+ fetch = {
+ type = "git";
+ url = "https://github.com/gorilla/mux";
+ rev = "4dbd923b0c9e99ff63ad54b0e9705ff92d3cdb06";
+ sha256 = "02d5c3vh81v2j6g6fnca87ksxjx0xrgp7x7iivfw5x92q1l5h254";
+ };
+ }
+ {
+ goPackagePath = "github.com/gorilla/websocket";
+ fetch = {
+ type = "git";
+ url = "https://github.com/gorilla/websocket";
+ rev = "eb925808374e5ca90c83401a40d711dc08c0c0f6";
+ sha256 = "0swncxnl97pmsl78q1p4npx9jghnrzj7alkxab89jy9cza5w165x";
+ };
+ }
+ {
+ goPackagePath = "github.com/inconshreveable/go-vhost";
+ fetch = {
+ type = "git";
+ url = "https://github.com/inconshreveable/go-vhost";
+ rev = "06d84117953b22058c096b49a429ebd4f3d3d97b";
+ sha256 = "0wliilsybm7xf5h685a23rsm8bnlhkr332pkdkhf32q16sr1a9rk";
+ };
+ }
+ {
+ goPackagePath = "github.com/jpillora/go-tld";
+ fetch = {
+ type = "git";
+ url = "https://github.com/jpillora/go-tld";
+ rev = "a31ae10e978ab5f352c5dad2cfbd60546dcea75f";
+ sha256 = "1gfxnbr1xsnlja2qpqxis8ynnk1lrz9c65aah7vc2c44g8vyy78x";
+ };
+ }
+ {
+ goPackagePath = "github.com/malfunkt/iprange";
+ fetch = {
+ type = "git";
+ url = "https://github.com/malfunkt/iprange";
+ rev = "3a31f5ed42d2d8a1fc46f1be91fd693bdef2dd52";
+ sha256 = "0gv5w678r74jval675xp0y1hzpf7mm5m9apa1rz9krxc9zd0ycr8";
+ };
+ }
+ {
+ goPackagePath = "github.com/mattn/go-colorable";
+ fetch = {
+ type = "git";
+ url = "https://github.com/mattn/go-colorable";
+ rev = "efa589957cd060542a26d2dd7832fd6a6c6c3ade";
+ sha256 = "0kshi4hvm0ayrsxqxy0599iv81kryhd2fn9lwjyczpj593cq069r";
+ };
+ }
+ {
+ goPackagePath = "github.com/mattn/go-isatty";
+ fetch = {
+ type = "git";
+ url = "https://github.com/mattn/go-isatty";
+ rev = "6ca4dbf54d38eea1a992b3c722a76a5d1c4cb25c";
+ sha256 = "0zs92j2cqaw9j8qx1sdxpv3ap0rgbs0vrvi72m40mg8aa36gd39w";
+ };
+ }
+ {
+ goPackagePath = "github.com/mdlayher/dhcp6";
+ fetch = {
+ type = "git";
+ url = "https://github.com/mdlayher/dhcp6";
+ rev = "e26af0688e455a82b14ebdbecf43f87ead3c4624";
+ sha256 = "0fvw8zz2yhla03jfb79bby9vg4rbmaj39v00ypb8yl4fb696zfip";
+ };
+ }
+ {
+ goPackagePath = "github.com/mgutz/ansi";
+ fetch = {
+ type = "git";
+ url = "https://github.com/mgutz/ansi";
+ rev = "9520e82c474b0a04dd04f8a40959027271bab992";
+ sha256 = "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j";
+ };
+ }
+ {
+ goPackagePath = "github.com/mgutz/logxi";
+ fetch = {
+ type = "git";
+ url = "https://github.com/mgutz/logxi";
+ rev = "aebf8a7d67ab4625e0fd4a665766fef9a709161b";
+ sha256 = "1f8sqibkzz9wfplvvblz9s0xvvmhkd2af8ghcsmjw8818gcrzsqx";
+ };
+ }
+ {
+ goPackagePath = "github.com/pkg/errors";
+ fetch = {
+ type = "git";
+ url = "https://github.com/pkg/errors";
+ rev = "816c9085562cd7ee03e7f8188a1cfd942858cded";
+ sha256 = "1ws5crb7c70wdicavl6qr4g03nn6m92zd6wwp9n2ygz5c8rmxh8k";
+ };
+ }
+ {
+ goPackagePath = "github.com/robertkrimen/otto";
+ fetch = {
+ type = "git";
+ url = "https://github.com/robertkrimen/otto";
+ rev = "6c383dd335ef8dcccef05e651ce1eccfe4d0f011";
+ sha256 = "1n6h7c8gi6wv4nklqd7ygzx2afvh7ddxbml9w9x0jxwcfb3bdy17";
+ };
+ }
+ {
+ goPackagePath = "github.com/tarm/serial";
+ fetch = {
+ type = "git";
+ url = "https://github.com/tarm/serial";
+ rev = "eaafced92e9619f03c72527efeab21e326f3bc36";
+ sha256 = "09pii3q72bygv40v9xsh3nzj821iwqwa0b14wvkagid8mfnl3a7k";
+ };
+ }
+ {
+ goPackagePath = "golang.org/x/sys";
+ fetch = {
+ type = "git";
+ url = "https://go.googlesource.com/sys";
+ rev = "378d26f46672a356c46195c28f61bdb4c0a781dd";
+ sha256 = "1d02saysx8lh2wv8s915k4shiqicg4j1fh6sxmcxy6bvywax2q9c";
+ };
+ }
+ {
+ goPackagePath = "gopkg.in/sourcemap.v1";
+ fetch = {
+ type = "git";
+ url = "https://github.com/go-sourcemap/sourcemap";
+ rev = "b019cc30c1eaa584753491b0d8f8c1534bf1eb44";
+ sha256 = "03k44fdrnknba05f7cd58lq4rzk7jdpiqksmc0wxrdzwschrbgw8";
+ };
+ }
+]
\ No newline at end of file
diff --git a/pkgs/tools/security/bettercap/gemset.nix b/pkgs/tools/security/bettercap/gemset.nix
deleted file mode 100644
index bd5c33ba22c..00000000000
--- a/pkgs/tools/security/bettercap/gemset.nix
+++ /dev/null
@@ -1,121 +0,0 @@
-{
- bettercap = {
- dependencies = ["colorize" "em-proxy" "net-dns" "network_interface" "packetfu" "pcaprub" "rubydns"];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1mns96yfyfnksk720p8k83qkwwsid4sicwgrzxaa9gbc53aalll0";
- type = "gem";
- };
- version = "1.6.2";
- };
- celluloid = {
- dependencies = ["timers"];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "044xk0y7i1xjafzv7blzj5r56s7zr8nzb619arkrl390mf19jxv3";
- type = "gem";
- };
- version = "0.16.0";
- };
- celluloid-io = {
- dependencies = ["celluloid" "nio4r"];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1l1x0p6daa5vskywrvaxdlanwib3k5pps16axwyy4p8d49pn9rnx";
- type = "gem";
- };
- version = "0.16.2";
- };
- colorize = {
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "133rqj85n400qk6g3dhf2bmfws34mak1wqihvh3bgy9jhajw580b";
- type = "gem";
- };
- version = "0.8.1";
- };
- em-proxy = {
- dependencies = ["eventmachine"];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1yzkg6jkmcg859b5mf13igpf8q2bjhsmqjsva05948fi733w5n2j";
- type = "gem";
- };
- version = "0.1.9";
- };
- eventmachine = {
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "075hdw0fgzldgss3xaqm2dk545736khcvv1fmzbf1sgdlkyh1v8z";
- type = "gem";
- };
- version = "1.2.5";
- };
- hitimes = {
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "06222h9236jw9jgmdlpi0q7psac1shvxqxqx905qkvabmxdxlfar";
- type = "gem";
- };
- version = "1.2.6";
- };
- net-dns = {
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "12nal6vhdyg0pbcqpsxqr59h7mbgdhcqp3v0xnzvy167n40gabf9";
- type = "gem";
- };
- version = "0.8.0";
- };
- network_interface = {
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1xh4knfq77ii4pjzsd2z1p3nd6nrcdjhb2vi5gw36jqj43ffw0zp";
- type = "gem";
- };
- version = "0.0.2";
- };
- nio4r = {
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "0jjrj7vs29w6dfgsxq08226jfbi2j0x62lf4p9zmvyp19dj4z00a";
- type = "gem";
- };
- version = "2.2.0";
- };
- packetfu = {
- dependencies = ["pcaprub"];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "16ppq9wfxq4x2hss61l5brs3s6fmi8gb50mnp1nnnzb1asq4g8ll";
- type = "gem";
- };
- version = "1.1.13";
- };
- pcaprub = {
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "0pl4lqy7308185pfv0197n8b4v20fhd0zb3wlpz284rk8ssclkvz";
- type = "gem";
- };
- version = "0.12.4";
- };
- rubydns = {
- dependencies = ["celluloid" "celluloid-io" "timers"];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1cvj8li8shz7zn1rc5hdrkqmvr9j187g4y28mvkfvmv1j9hdln62";
- type = "gem";
- };
- version = "1.0.3";
- };
- timers = {
- dependencies = ["hitimes"];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1jx4wb0x182gmbcs90vz0wzfyp8afi1mpl9w5ippfncyk4kffvrz";
- type = "gem";
- };
- version = "4.0.4";
- };
-}
\ No newline at end of file
diff --git a/pkgs/tools/security/browserpass/default.nix b/pkgs/tools/security/browserpass/default.nix
index 1e6e9e788d7..a4656b5db04 100644
--- a/pkgs/tools/security/browserpass/default.nix
+++ b/pkgs/tools/security/browserpass/default.nix
@@ -1,9 +1,9 @@
-# This file was generated by https://github.com/kamilchm/go2nix v1.2.0
+# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "browserpass-${version}";
- version = "2.0.17";
+ version = "2.0.18";
goPackagePath = "github.com/dannyvankooten/browserpass";
@@ -13,7 +13,7 @@ buildGoPackage rec {
repo = "browserpass";
owner = "dannyvankooten";
rev = version;
- sha256 = "1gbhpx75bcacj6z5p4av0011c4chhzqcjjs2bvmfxpi7826hn9kn";
+ sha256 = "0wszjpxfa0krr2zdx7a33vl1r86k74dpy5c940r6ww1zbgqzcibg";
};
postInstall = ''
diff --git a/pkgs/tools/security/krunner-pass/default.nix b/pkgs/tools/security/krunner-pass/default.nix
new file mode 100644
index 00000000000..dac6df56a79
--- /dev/null
+++ b/pkgs/tools/security/krunner-pass/default.nix
@@ -0,0 +1,44 @@
+{ mkDerivation, stdenv,
+ fetchFromGitHub,
+ cmake, extra-cmake-modules, gnumake,
+
+ pass, pass-otp ? null, krunner,
+}:
+let
+ pname = "krunner-pass";
+ version = "1.3.0";
+in
+mkDerivation rec {
+ name = "${pname}-${version}";
+
+ src = fetchFromGitHub {
+ owner = "akermu";
+ repo = "krunner-pass";
+ rev = "v${version}";
+ sha256 = "032fs2174ls545kjixbhzyd65wgxkw4s5vg8b20irc5c9ak3pxm0";
+ };
+
+ buildInputs = [
+ pass
+ pass-otp
+ krunner
+ ];
+
+ nativeBuildInputs = [cmake extra-cmake-modules gnumake];
+
+ patches = [
+ ./pass-path.patch
+ ];
+
+ CXXFLAGS = [
+ ''-DNIXPKGS_PASS=\"${stdenv.lib.getBin pass}/bin/pass\"''
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Integrates krunner with pass the unix standard password manager (https://www.passwordstore.org/)";
+ homepage = https://github.com/akermu/krunner-pass;
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ ysndr ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/tools/security/krunner-pass/pass-path.patch b/pkgs/tools/security/krunner-pass/pass-path.patch
new file mode 100644
index 00000000000..4ceb3c5d92d
--- /dev/null
+++ b/pkgs/tools/security/krunner-pass/pass-path.patch
@@ -0,0 +1,13 @@
+diff --git a/pass.cpp b/pass.cpp
+index c02f9d0..85c5b99 100644
+--- a/pass.cpp
++++ b/pass.cpp
+@@ -193,7 +193,7 @@ void Pass::run(const Plasma::RunnerContext &context, const Plasma::QueryMatch &m
+ } else {
+ args << "show" << match.text();
+ }
+- pass->start("pass", args);
++ pass->start(NIXPKGS_PASS, args);
+
+ connect(pass, static_cast(&QProcess::finished),
+ [=](int exitCode, QProcess::ExitStatus exitStatus) {
diff --git a/pkgs/tools/security/paperkey/default.nix b/pkgs/tools/security/paperkey/default.nix
index eba707b7d07..1c235c9d883 100644
--- a/pkgs/tools/security/paperkey/default.nix
+++ b/pkgs/tools/security/paperkey/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
'';
homepage = http://www.jabberwocky.com/software/paperkey/;
license = licenses.gpl2;
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = with maintainers; [ skeidel ];
};
}
diff --git a/pkgs/tools/security/spectre-meltdown-checker/default.nix b/pkgs/tools/security/spectre-meltdown-checker/default.nix
index 13bebe10c62..0baa1538ea1 100644
--- a/pkgs/tools/security/spectre-meltdown-checker/default.nix
+++ b/pkgs/tools/security/spectre-meltdown-checker/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "spectre-meltdown-checker-${version}";
- version = "0.35";
+ version = "0.36";
src = fetchFromGitHub {
owner = "speed47";
repo = "spectre-meltdown-checker";
rev = "v${version}";
- sha256 = "0pzs6iznrar5zkg92gsh6d0zhdi715zwqcb8hh1aaykx9igjb1xw";
+ sha256 = "0pcw300hizzm130d0ip7j0ivf53sjlv6qzsdk9l68bj2lpx9n3kd";
};
prePatch = ''
diff --git a/pkgs/tools/security/srm/default.nix b/pkgs/tools/security/srm/default.nix
index fd81933fb58..9782d00267f 100644
--- a/pkgs/tools/security/srm/default.nix
+++ b/pkgs/tools/security/srm/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
homepage = http://srm.sourceforge.net;
license = licenses.mit;
maintainers = with maintainers; [ edwtjo ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
-}
\ No newline at end of file
+}
diff --git a/pkgs/tools/system/facter/default.nix b/pkgs/tools/system/facter/default.nix
index 9ff5f58f558..42d34c9a823 100644
--- a/pkgs/tools/system/facter/default.nix
+++ b/pkgs/tools/system/facter/default.nix
@@ -2,10 +2,10 @@
stdenv.mkDerivation rec {
name = "facter-${version}";
- version = "3.10.0";
+ version = "3.11.0";
src = fetchFromGitHub {
- sha256 = "0qj23n5h98iirwhnjpcqzmirqf92sjd8mws5dky0pap359j6w792";
+ sha256 = "15cqn09ng23k6a70xvxbpjjqlxw46838k7qr9216lcvxwl2banih";
rev = version;
repo = "facter";
owner = "puppetlabs";
diff --git a/pkgs/tools/system/ipmitool/default.nix b/pkgs/tools/system/ipmitool/default.nix
index fe411edfcda..c906ad3c8cf 100644
--- a/pkgs/tools/system/ipmitool/default.nix
+++ b/pkgs/tools/system/ipmitool/default.nix
@@ -32,7 +32,7 @@ stdenv.mkDerivation {
description = ''Command-line interface to IPMI-enabled devices'';
license = licenses.bsd3;
homepage = https://sourceforge.net/projects/ipmitool/;
- platforms = platforms.unix;
+ platforms = platforms.linux;
maintainers = with maintainers; [ fpletz ];
};
}
diff --git a/pkgs/tools/system/localtime/default.nix b/pkgs/tools/system/localtime/default.nix
index d9cfc77203e..c49054f3a67 100644
--- a/pkgs/tools/system/localtime/default.nix
+++ b/pkgs/tools/system/localtime/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, go, systemd, polkit, fetchFromGitHub, m4 }:
+{ stdenv, go, systemd, polkit, fetchFromGitHub, m4, removeReferencesTo }:
stdenv.mkDerivation {
name = "localtime-2017-11-07";
@@ -10,10 +10,15 @@ stdenv.mkDerivation {
sha256 = "04fyna8p7q7skzx9fzmncd6gx7x5pwa9jh8a84hpljlvj0kldfs8";
};
- buildInputs = [ go systemd polkit m4 ];
+ buildInputs = [ go systemd polkit m4 removeReferencesTo ];
+ disallowedRequisites = [ go ];
makeFlags = [ "PREFIX=$(out)" ];
+ preFixup = ''
+ find $out/bin -type f -exec remove-references-to -t ${go} '{}' +
+ '';
+
meta = {
description = "A daemon for keeping the system timezone up-to-date based on the current location";
homepage = https://github.com/Stebalien/localtime;
diff --git a/pkgs/tools/system/s6-rc/default.nix b/pkgs/tools/system/s6-rc/default.nix
index 13ce2414abf..ed1da8d450d 100644
--- a/pkgs/tools/system/s6-rc/default.nix
+++ b/pkgs/tools/system/s6-rc/default.nix
@@ -37,7 +37,7 @@ in stdenv.mkDerivation rec {
meta = {
homepage = http://skarnet.org/software/s6-rc/;
description = "A service manager for s6-based systems";
- platforms = stdenv.lib.platforms.all;
+ platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.isc;
maintainers = with stdenv.lib.maintainers; [ pmahoney ];
};
diff --git a/pkgs/tools/system/sg3_utils/default.nix b/pkgs/tools/system/sg3_utils/default.nix
index c1c4527d0a0..ca1af7a74e4 100644
--- a/pkgs/tools/system/sg3_utils/default.nix
+++ b/pkgs/tools/system/sg3_utils/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = http://sg.danny.cz/sg/;
description = "Utilities that send SCSI commands to devices";
- platforms = stdenv.lib.platforms.all;
+ platforms = stdenv.lib.platforms.linux;
maintainers = [ ];
};
}
diff --git a/pkgs/tools/system/syslog-ng/default.nix b/pkgs/tools/system/syslog-ng/default.nix
index a2230503551..b356cd1d484 100644
--- a/pkgs/tools/system/syslog-ng/default.nix
+++ b/pkgs/tools/system/syslog-ng/default.nix
@@ -1,7 +1,9 @@
{ stdenv, fetchurl, openssl, libcap, curl, which
, eventlog, pkgconfig, glib, python, systemd, perl
, riemann_c_client, protobufc, pcre, libnet
-, json_c, libuuid, libivykis, mongoc, rabbitmq-c }:
+, json_c, libuuid, libivykis, mongoc, rabbitmq-c
+, libesmtp
+}:
let
pname = "syslog-ng";
@@ -36,12 +38,14 @@ stdenv.mkDerivation rec {
libivykis
mongoc
rabbitmq-c
+ libesmtp
];
configureFlags = [
"--enable-manpages"
"--enable-dynamic-linking"
"--enable-systemd"
+ "--enable-smtp"
"--with-ivykis=system"
"--with-librabbitmq-client=system"
"--with-mongoc=system"
diff --git a/pkgs/tools/text/ansifilter/default.nix b/pkgs/tools/text/ansifilter/default.nix
index 7b899e0399e..3e9511fefda 100644
--- a/pkgs/tools/text/ansifilter/default.nix
+++ b/pkgs/tools/text/ansifilter/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "ansifilter-${version}";
- version = "2.9";
+ version = "2.10";
src = fetchurl {
url = "http://www.andre-simon.de/zip/ansifilter-${version}.tar.bz2";
- sha256 = "0fmwb8w1bpfxjwddal6cnhgmip26xqgcanpz2vp8jasklkcc1i7r";
+ sha256 = "0gzfxfpic47cs2kqrbvaw166ji62c5nq5cjhh3ngpm2fkm1wzli3";
};
diff --git a/pkgs/tools/text/cconv/default.nix b/pkgs/tools/text/cconv/default.nix
new file mode 100644
index 00000000000..9f6b7a7f122
--- /dev/null
+++ b/pkgs/tools/text/cconv/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, autoreconfHook }:
+let version = "0.6.3"; in
+ stdenv.mkDerivation {
+ name = "cconv-${version}";
+
+ src = fetchurl {
+ url = "https://github.com/xiaoyjy/cconv/archive/v${version}.tar.gz";
+ sha256 = "82f46a94829f5a8157d6f686e302ff5710108931973e133d6e19593061b81d84";
+ };
+
+ nativeBuildInputs = [ autoreconfHook ];
+
+ meta = with stdenv.lib; {
+ description = "A iconv based simplified-traditional chinese conversion tool";
+ homepage = https://github.com/xiaoyjy/cconv;
+ license = licenses.mit;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.redfish64 ];
+ };
+}
diff --git a/pkgs/tools/text/diction/default.nix b/pkgs/tools/text/diction/default.nix
index bf27fc3de5d..cfb627d7042 100644
--- a/pkgs/tools/text/diction/default.nix
+++ b/pkgs/tools/text/diction/default.nix
@@ -1,11 +1,12 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "diction-1.11";
+ name = "diction-${version}";
+ version = "1.13";
src = fetchurl {
- url = "mirror://gnu/diction/${name}.tar.gz";
- sha256 = "1xi4l1x1vvzmzmbhpx0ghmfnwwrhabjwizrpyylmy3fzinzz3him";
+ url = "http://www.moria.de/~michael/diction/${name}.tar.gz";
+ sha256 = "08fi971b8qa4xycxbgb42i6b5ms3qx9zpp5hwpbxy2vypfs0wph9";
};
meta = {
diff --git a/pkgs/tools/text/discount/default.nix b/pkgs/tools/text/discount/default.nix
index 8a1de29b0d9..81b88ff8d83 100644
--- a/pkgs/tools/text/discount/default.nix
+++ b/pkgs/tools/text/discount/default.nix
@@ -1,12 +1,12 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
- version = "2.2.3";
+ version = "2.2.3a";
name = "discount-${version}";
src = fetchurl {
url = "http://www.pell.portland.or.us/~orc/Code/discount/discount-${version}.tar.bz2";
- sha256 = "17797xiaq0kk152pj4rvd9grg4i518x3glnwg1lgl8rry3dbrzx8";
+ sha256 = "0m09x9dd75d3pqvmrwr0kqw3dm2x3ss9clj5fxf7lq79lbyxbxbm";
};
patches = ./fix-configure-path.patch;
diff --git a/pkgs/tools/text/mdbook/default.nix b/pkgs/tools/text/mdbook/default.nix
index 5bbe8cfd094..4ea36ddbd5e 100644
--- a/pkgs/tools/text/mdbook/default.nix
+++ b/pkgs/tools/text/mdbook/default.nix
@@ -2,17 +2,16 @@
rustPlatform.buildRustPackage rec {
name = "mdbook-${version}";
- version = "0.1.3";
+ version = "0.1.5";
src = fetchFromGitHub {
owner = "rust-lang-nursery";
repo = "mdBook";
rev = "v${version}";
- sha256 = "0m0vprjpd02z4nr3vd4qha2jka7l36k4liw8jcbf4xs09c584sjv";
+ sha256 = "0k86zjrqb5wdxvmzz9cxl9c0mpjnr46fh5r5sbs5q9fk2h4lp4ip";
};
- cargoSha256 = "19hpr78p9rzgirq6fjw8v11d5mgcglms6vbqgjyvg49xmkklsqzr";
- depsSha256 = "0q68qyl2h6i0qsz82z840myxlnjay8p1w5z7hfyr8fqp7wgwa9cx";
+ cargoSha256 = "0gj1x996lvn9j87dfmng2fn3fgz8rgvrw3akcz641psj4hlfgm5w";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];
diff --git a/pkgs/tools/text/untex/default.nix b/pkgs/tools/text/untex/default.nix
index ec99e8b4a27..b1671ad38b5 100644
--- a/pkgs/tools/text/untex/default.nix
+++ b/pkgs/tools/text/untex/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "untex-${version}";
- version = "1.2";
+ version = "1.3";
src = fetchurl {
- url = "https://www.ctan.org/tex-archive/support/untex/${name}.tar.gz";
- sha256 = "07p836jydd5yjy905m5ylnnac1h4cc4jsr41panqb808mlsiwmmy";
+ url = "ftp://ftp.thp.uni-duisburg.de/pub/source/${name}.tar.gz";
+ sha256 = "1jww43pl9qvg6kwh4h8imp966fzd62dk99pb4s93786lmp3kgdjv";
};
hardeningDisable = [ "format" ];
diff --git a/pkgs/tools/typesetting/tectonic/default.nix b/pkgs/tools/typesetting/tectonic/default.nix
index ad612fa18af..f3f0a60b480 100644
--- a/pkgs/tools/typesetting/tectonic/default.nix
+++ b/pkgs/tools/typesetting/tectonic/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, rustPlatform, makeWrapper
-, fontconfig, harfbuzz-icu, openssl, pkgconfig }:
+, darwin, fontconfig, harfbuzz-icu, openssl, pkgconfig }:
rustPlatform.buildRustPackage rec {
name = "tectonic-${version}";
@@ -16,7 +16,8 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ fontconfig harfbuzz-icu openssl ];
+ buildInputs = [ fontconfig harfbuzz-icu openssl ]
+ ++ stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ ApplicationServices Cocoa Foundation ]);
# tests fail due to read-only nix store
doCheck = false;
diff --git a/pkgs/tools/typesetting/ted/default.nix b/pkgs/tools/typesetting/ted/default.nix
new file mode 100644
index 00000000000..b60cbcf22ad
--- /dev/null
+++ b/pkgs/tools/typesetting/ted/default.nix
@@ -0,0 +1,84 @@
+{ stdenv, fetchurl, pkgconfig, zlib, pcre, xorg, libjpeg, libtiff, libpng, gtk2, libpaper, makeWrapper, ghostscript }:
+
+stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
+ pname = "ted";
+ version = "2.23";
+
+ src = fetchurl {
+ url = "http://ftp.nluug.nl/pub/editors/${pname}/${name}.src.tar.gz";
+ sha256 = "0v1ipynyjklb3chd1vq26a21sjjg66sir57gi2kkrbwnpk195a9z";
+ };
+
+ preConfigure = ''
+ mkdir pkgconfig-append
+ pushd pkgconfig-append
+
+ # ted looks for libtiff, not libtiff-4 in its pkg-config invokations
+ cp ${libtiff.dev}/lib/pkgconfig/libtiff-4.pc libtiff.pc
+
+ # ted needs a libpaper pkg-config file
+ cat > libpaper.pc << EOF
+ prefix=${libpaper}
+ libdir=${libpaper}/lib
+ includedir=${libpaper}/include
+ exec_prefix=\''${prefix}
+
+ Name: libpaper
+ Version: ${libpaper.version}
+ Description: ${libpaper.meta.description}
+ Libs: -L\''${libdir} -lpaper
+ Cflags: -I\''${includedir}
+ EOF
+
+ export PKG_CONFIG_PATH="$PWD:$PKG_CONFIG_PATH"
+
+ popd
+ '';
+
+ makeFlags = [ "CONFIGURE_OPTIONS=--with-GTK" "CONFIGURE_OPTIONS+=--prefix=$(out)" "compile.shared" ];
+
+ installPhase = ''
+ runHook preInstall
+
+ make tedPackage/makefile
+ pushd tedPackage
+ substituteInPlace makefile --replace /usr ""
+ make PKGDESTDIR=$out datadir
+ popd
+
+ pushd $out/share/Ted/examples
+ for f in rtf2*.sh
+ do
+ makeWrapper "$PWD/$f" "$out/bin/$f" --prefix PATH : $out/bin:${stdenv.lib.makeBinPath [ ghostscript ]}
+ done
+ popd
+
+ cp -v Ted/Ted $out/bin
+
+ runHook postInstall
+ '';
+
+ buildInputs = [ pkgconfig zlib pcre xorg.xlibsWrapper xorg.libXpm libjpeg libtiff libpng gtk2 libpaper makeWrapper ];
+
+ meta = with stdenv.lib; {
+ description = "Ted, an easy rich text processor";
+ longDescription = ''
+ Ted is a text processor running under X Windows on Unix/Linux systems.
+ Ted was developed as a standard easy light weight word processor, having
+ the role of Wordpad on MS-Windows. Since then, Ted has evolved to a real
+ word processor. It still has the same easy appearance and the same speed
+ as the original. The possibility to type a letter, a note or a report
+ with a simple light weight program on a Unix/Linux machine is clearly
+ missing. Ted was made to make it possible to edit rich text documents on
+ Unix/Linux in a wysiwyg way. RTF files from Ted are fully compatible with
+ MS-Word. Additionally, Ted also is an RTF to PostScript and an RTF to
+ Acrobat PDF converter.
+ '';
+ homepage = https://nllgg.nl/Ted/;
+ license = licenses.gpl2;
+ platforms = platforms.all;
+ broken = stdenv.isDarwin;
+ maintainers = with maintainers; [ obadz ];
+ };
+}
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index 9962c3c8fe6..70d40fa9d98 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -59,7 +59,6 @@ mapAliases (rec {
digikam5 = digikam; # added 2017-02-18
double_conversion = double-conversion; # 2017-11-22
dwarf_fortress = dwarf-fortress; # added 2016-01-23
- dwbWrapper = dwb; # added 2015-01
enblendenfuse = enblend-enfuse; # 2015-09-30
evolution_data_server = evolution-data-server; # added 2018-02-25
exfat-utils = exfat; # 2015-09-11
@@ -213,6 +212,10 @@ mapAliases (rec {
telepathy_qt = telepathy-qt; # added 2018-02-25
telepathy_qt5 = libsForQt5.telepathy; # added 2015-12-19
telepathy_salut = telepathy-salut; # added 2018-02-25
+ tex-gyre-bonum-math = tex-gyre-math.bonum; # added 2018-04-03
+ tex-gyre-pagella-math = tex-gyre-math.pagella; # added 2018-04-03
+ tex-gyre-schola-math = tex-gyre-math.schola; # added 2018-04-03
+ tex-gyre-termes-math = tex-gyre-math.termes; # added 2018-04-03
tftp_hpa = tftp-hpa; # added 2015-04-03
transmission_gtk = transmission-gtk; # added 2018-01-06
transmission_remote_gtk = transmission-remote-gtk; # added 2018-01-06
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index be6957c7a57..3debf1a9489 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -111,6 +111,8 @@ with pkgs;
buildMaven = callPackage ../build-support/build-maven.nix {};
+ castxml = callPackage ../development/tools/castxml { };
+
cmark = callPackage ../development/libraries/cmark { };
dhallToNix = callPackage ../build-support/dhall-to-nix.nix {
@@ -611,6 +613,8 @@ with pkgs;
container-linux-config-transpiler = callPackage ../development/tools/container-linux-config-transpiler { };
+ cconv = callPackage ../tools/text/cconv { };
+
chkcrontab = callPackage ../tools/admin/chkcrontab { };
djmount = callPackage ../tools/filesystems/djmount { };
@@ -975,8 +979,12 @@ with pkgs;
image-analyzer = callPackage ../misc/emulators/cdemu/analyzer.nix { };
+ cbor-diag = callPackage ../development/tools/cbor-diag { };
+
ccnet = callPackage ../tools/networking/ccnet { };
+ cddl = callPackage ../development/tools/cddl { };
+
cfdyndns = callPackage ../applications/networking/dyndns/cfdyndns { };
ckbcomp = callPackage ../tools/X11/ckbcomp { };
@@ -1003,6 +1011,8 @@ with pkgs;
colpack = callPackage ../applications/science/math/colpack { };
+ compactor = callPackage ../applications/networking/compactor { };
+
consul = callPackage ../servers/consul { };
consul-ui = callPackage ../servers/consul/ui.nix { };
@@ -1786,6 +1796,8 @@ with pkgs;
crackxls = callPackage ../tools/security/crackxls { };
+ create-cycle-app = nodePackages_8_x.create-cycle-app;
+
createrepo_c = callPackage ../tools/package-management/createrepo_c { };
cromfs = callPackage ../tools/archivers/cromfs { };
@@ -1931,7 +1943,7 @@ with pkgs;
diction = callPackage ../tools/text/diction { };
diffoscope = callPackage ../tools/misc/diffoscope {
- jdk = jdk7;
+ jdk = jdk8;
};
diffstat = callPackage ../tools/text/diffstat { };
@@ -2657,6 +2669,8 @@ with pkgs;
inherit (xorg) libXdmcp;
};
+ gron = callPackage ../development/tools/gron { };
+
groonga = callPackage ../servers/search/groonga { };
grub = callPackage_i686 ../tools/misc/grub {
@@ -2694,9 +2708,7 @@ with pkgs;
sbsigntool = callPackage ../tools/security/sbsigntool { };
- gsmartcontrol = callPackage ../tools/misc/gsmartcontrol {
- inherit (gnome2) libglademm;
- };
+ gsmartcontrol = callPackage ../tools/misc/gsmartcontrol { };
gssdp = callPackage ../development/libraries/gssdp {
inherit (gnome2) libsoup;
@@ -2756,8 +2768,16 @@ with pkgs;
pgjwt = callPackage ../servers/sql/postgresql/pgjwt {};
+ cstore_fdw = callPackage ../servers/sql/postgresql/cstore_fdw {};
+
+ pg_hll = callPackage ../servers/sql/postgresql/pg_hll {};
+
+ pg_cron = callPackage ../servers/sql/postgresql/pg_cron {};
+
pgtap = callPackage ../servers/sql/postgresql/pgtap {};
+ pg_topn = callPackage ../servers/sql/postgresql/topn {};
+
pigz = callPackage ../tools/compression/pigz { };
pixz = callPackage ../tools/compression/pixz { };
@@ -3074,6 +3094,8 @@ with pkgs;
jing = self.jing-trang;
jing-trang = callPackage ../tools/text/xml/jing-trang { };
+ jl = haskellPackages.callPackage ../development/tools/jl { };
+
jmespath = callPackage ../development/tools/jmespath { };
jmtpfs = callPackage ../tools/filesystems/jmtpfs { };
@@ -3162,6 +3184,8 @@ with pkgs;
krename = libsForQt5.callPackage ../applications/misc/krename { };
+ krunner-pass = libsForQt5.callPackage ../tools/security/krunner-pass { };
+
kronometer = libsForQt5.callPackage ../tools/misc/kronometer { };
elisa = libsForQt5.callPackage ../applications/audio/elisa { };
@@ -4212,6 +4236,8 @@ with pkgs;
pcsc-cyberjack = callPackage ../tools/security/pcsc-cyberjack { };
+ pdd = python3Packages.callPackage ../tools/misc/pdd { };
+
pdf2djvu = callPackage ../tools/typesetting/pdf2djvu { };
pdf2htmlEX = callPackage ../tools/typesetting/pdf2htmlEX { };
@@ -4411,6 +4437,8 @@ with pkgs;
pwnat = callPackage ../tools/networking/pwnat { };
+ pwndbg = callPackage ../development/tools/misc/pwndbg { };
+
pycangjie = pythonPackages.pycangjie;
pydb = callPackage ../development/tools/pydb { };
@@ -4423,6 +4451,8 @@ with pkgs;
pytrainer = callPackage ../applications/misc/pytrainer { };
+ pywal = callPackage ../tools/graphics/pywal {};
+
remarshal = callPackage ../development/tools/remarshal { };
rtaudio = callPackage ../development/libraries/audio/rtaudio { };
@@ -4625,6 +4655,8 @@ with pkgs;
rpPPPoE = callPackage ../tools/networking/rp-pppoe { };
+ rpiboot-unstable = callPackage ../development/misc/rpiboot/unstable.nix { };
+
rpm = callPackage ../tools/package-management/rpm { };
rpm-ostree = callPackage ../tools/misc/rpm-ostree {
@@ -4635,6 +4667,8 @@ with pkgs;
rrdtool = callPackage ../tools/misc/rrdtool { };
+ rsibreak = libsForQt5.callPackage ../applications/misc/rsibreak { };
+
rss2email = callPackage ../applications/networking/feedreaders/rss2email {
pythonPackages = python3Packages;
};
@@ -4805,6 +4839,10 @@ with pkgs;
slsnif = callPackage ../tools/misc/slsnif { };
+ slstatus = callPackage ../applications/misc/slstatus {
+ conf = config.slstatus.conf or null;
+ };
+
smartmontools = callPackage ../tools/system/smartmontools {
inherit (darwin.apple_sdk.frameworks) IOKit ApplicationServices;
};
@@ -4966,6 +5004,8 @@ with pkgs;
inherit (perlPackages) LWP URI HTMLParser HTTPServerSimple Parent;
};
+ swfdec = callPackage ../tools/graphics/swfdec {};
+
svnfs = callPackage ../tools/filesystems/svnfs { };
svtplay-dl = callPackage ../tools/misc/svtplay-dl { };
@@ -5019,6 +5059,8 @@ with pkgs;
tcpreplay = callPackage ../tools/networking/tcpreplay { };
+ ted = callPackage ../tools/typesetting/ted { };
+
teamviewer = callPackage ../applications/networking/remote/teamviewer {
stdenv = stdenv_32bit;
};
@@ -5942,7 +5984,9 @@ with pkgs;
fpc = callPackage ../development/compilers/fpc { };
gambit = callPackage ../development/compilers/gambit { };
+ gambit-unstable = callPackage ../development/compilers/gambit/unstable.nix { };
gerbil = callPackage ../development/compilers/gerbil { };
+ gerbil-unstable = callPackage ../development/compilers/gerbil/unstable.nix { };
gccFun = callPackage ../development/compilers/gcc/7;
gcc = gcc7;
@@ -6315,10 +6359,6 @@ with pkgs;
gwt240 = callPackage ../development/compilers/gwt/2.4.0.nix { };
- icedtea7_web = callPackage ../development/compilers/icedtea-web {
- jdk = jdk7;
- };
-
icedtea8_web = callPackage ../development/compilers/icedtea-web {
jdk = jdk8;
};
@@ -6356,15 +6396,6 @@ with pkgs;
hugs = callPackage ../development/interpreters/hugs { };
- openjdk7 =
- if stdenv.isDarwin then
- callPackage ../development/compilers/openjdk-darwin { }
- else
- callPackage ../development/compilers/openjdk/7.nix {
- ant = apacheAnt_1_9;
- bootjdk = callPackage ../development/compilers/openjdk/bootstrap.nix { version = "7"; };
- };
-
openjdk8 =
if stdenv.isDarwin then
callPackage ../development/compilers/openjdk-darwin/8.nix { }
@@ -6374,28 +6405,14 @@ with pkgs;
inherit (gnome2) GConf gnome_vfs;
};
- openjdk9 =
- # if stdenv.isDarwin then
- # callPackage ../development/compilers/openjdk-darwin/9.nix { }
- # else
- callPackage ../development/compilers/openjdk/9.nix {
- bootjdk = openjdk8;
- inherit (gnome2) GConf gnome_vfs;
- };
-
openjdk10 =
callPackage ../development/compilers/openjdk/10.nix {
- bootjdk = openjdk9;
+ bootjdk = callPackage ../development/compilers/openjdk/bootstrap.nix { version = "10"; };
inherit (gnome2) GConf gnome_vfs;
};
openjdk = openjdk8;
- jdk7 = openjdk7 // { outputs = [ "out" ]; };
- jre7 = lib.setName "openjre-${lib.getVersion pkgs.openjdk7.jre}"
- (lib.addMetaAttrs { outputsToInstall = [ "jre" ]; }
- (openjdk7.jre // { outputs = [ "jre" ]; }));
-
jdk8 = if stdenv.isArm || stdenv.isAarch64 then oraclejdk8 else openjdk8 // { outputs = [ "out" ]; };
jre8 = if stdenv.isArm || stdenv.isAarch64 then oraclejre8 else lib.setName "openjre-${lib.getVersion pkgs.openjdk8.jre}"
(lib.addMetaAttrs { outputsToInstall = [ "jre" ]; }
@@ -6410,19 +6427,19 @@ with pkgs;
(lib.addMetaAttrs { outputsToInstall = [ "jre" ]; }
((openjdk8.override { minimal = true; }).jre // { outputs = [ "jre" ]; }));
- jdk9 = if stdenv.isArm || stdenv.isAarch64 then oraclejdk9 else openjdk9 // { outputs = [ "out" ]; };
- jre9 = if stdenv.isArm || stdenv.isAarch64 then oraclejre9 else lib.setName "openjre-${lib.getVersion pkgs.openjdk9.jre}"
+ jdk10 = if stdenv.isArm || stdenv.isAarch64 then oraclejdk10 else openjdk10 // { outputs = [ "out" ]; };
+ jre10 = if stdenv.isArm || stdenv.isAarch64 then oraclejre10 else lib.setName "openjre-${lib.getVersion pkgs.openjdk10.jre}"
(lib.addMetaAttrs { outputsToInstall = [ "jre" ]; }
- (openjdk9.jre // { outputs = [ "jre" ]; }));
- jre9_headless =
+ (openjdk10.jre // { outputs = [ "jre" ]; }));
+ jre10_headless =
if stdenv.isArm || stdenv.isAarch64 then
- oraclejre9
+ oraclejre10
else if stdenv.isDarwin then
- jre9
+ jre10
else
- lib.setName "openjre-${lib.getVersion pkgs.openjdk9.jre}-headless"
+ lib.setName "openjre-${lib.getVersion pkgs.openjdk10.jre}-headless"
(lib.addMetaAttrs { outputsToInstall = [ "jre" ]; }
- ((openjdk9.override { minimal = true; }).jre // { outputs = [ "jre" ]; }));
+ ((openjdk10.override { minimal = true; }).jre // { outputs = [ "jre" ]; }));
jdk = jdk8;
jre = jre8;
@@ -6438,8 +6455,6 @@ with pkgs;
oraclejdk8psu = pkgs.oraclejdk8psu_distro true false;
- oraclejdk9 = pkgs.oraclejdk9distro "JDK" false;
-
oraclejdk10 = pkgs.oraclejdk10distro "JDK" false;
oraclejre = lowPrio (pkgs.jdkdistro false false);
@@ -6448,12 +6463,8 @@ with pkgs;
oraclejre8psu = lowPrio (pkgs.oraclejdk8psu_distro false false);
- oraclejre9 = lowPrio (pkgs.oraclejdk9distro "JRE" false);
-
oraclejre10 = lowPrio (pkgs.oraclejdk10distro "JRE" false);
- oracleserverjre9 = lowPrio (pkgs.oraclejdk9distro "ServerJRE" false);
-
oracleserverjre10 = lowPrio (pkgs.oraclejdk10distro "ServerJRE" false);
jrePlugin = jre8Plugin;
@@ -6470,10 +6481,6 @@ with pkgs;
(if pluginSupport then appendToName "with-plugin" else x: x)
(callPackage ../development/compilers/oraclejdk/jdk8psu-linux.nix { inherit installjdk pluginSupport; });
- oraclejdk9distro = packageType: pluginSupport:
- (if pluginSupport then appendToName "with-plugin" else x: x)
- (callPackage ../development/compilers/oraclejdk/jdk9-linux.nix { inherit packageType pluginSupport; });
-
oraclejdk10distro = packageType: pluginSupport:
(if pluginSupport then appendToName "with-plugin" else x: x)
(callPackage ../development/compilers/oraclejdk/jdk10-linux.nix { inherit packageType pluginSupport; });
@@ -7341,8 +7348,6 @@ with pkgs;
sourceFromHead = callPackage ../build-support/source-from-head-fun.nix {};
- ecj = callPackage ../development/eclipse/ecj { };
-
jruby = callPackage ../development/interpreters/jruby { };
jython = callPackage ../development/interpreters/jython {};
@@ -7605,7 +7610,9 @@ with pkgs;
cl-launch = callPackage ../development/tools/misc/cl-launch {};
- cloudfoundry-cli = callPackage ../development/tools/cloudfoundry-cli { };
+ cloudfoundry-cli = callPackage ../development/tools/cloudfoundry-cli {
+ go = go_1_9;
+ };
coan = callPackage ../development/tools/analysis/coan { };
@@ -7656,6 +7663,10 @@ with pkgs;
cppcheck = callPackage ../development/tools/analysis/cppcheck { };
+ cquery = callPackage ../development/tools/misc/cquery {
+ llvmPackages = llvmPackages_6;
+ };
+
creduce = callPackage ../development/tools/misc/creduce {
inherit (perlPackages) perl
ExporterLite FileWhich GetoptTabular RegexpCommon TermReadKey;
@@ -7780,7 +7791,7 @@ with pkgs;
flow = callPackage ../development/tools/analysis/flow {
inherit (darwin.apple_sdk.frameworks) CoreServices;
inherit (darwin) cf-private;
- inherit (ocamlPackages) ocaml findlib camlp4 sedlex ocamlbuild ocaml_lwt
+ inherit (ocamlPackages) ocaml findlib camlp4 sedlex ocamlbuild lwt_ppx
wtf8 dtoa;
};
@@ -7833,8 +7844,8 @@ with pkgs;
gnumake42 = callPackage ../development/tools/build-managers/gnumake/4.2 { };
gnumake = if hostPlatform.isRiscV # Technically this check should be for glibc version.
then gnumake42HEAD
- else gnumake42;
- gnumake42HEAD = callPackage ../development/tools/build-managers/gnumake/4.2/head.nix { };
+ else gnumake42;
+ gnumake42HEAD = lowPrio (callPackage ../development/tools/build-managers/gnumake/4.2/head.nix { });
gnustep = recurseIntoAttrs (callPackage ../desktops/gnustep {});
@@ -8040,6 +8051,8 @@ with pkgs;
pahole = callPackage ../development/tools/misc/pahole {};
+ panopticon = callPackage ../development/tools/analysis/panopticon {};
+
pants = callPackage ../development/tools/build-managers/pants {};
parse-cli-bin = callPackage ../development/tools/parse-cli-bin { };
@@ -8531,12 +8544,6 @@ with pkgs;
classads = callPackage ../development/libraries/classads { };
- classpath = callPackage ../development/libraries/java/classpath {
- javac = gcj;
- jvm = gcj;
- gconf = gnome2.GConf;
- };
-
clearsilver = callPackage ../development/libraries/clearsilver { };
clipper = callPackage ../development/libraries/clipper { };
@@ -8714,6 +8721,8 @@ with pkgs;
esdl = callPackage ../development/libraries/esdl { };
+ libesmtp = callPackage ../development/libraries/libesmtp { };
+
exiv2 = callPackage ../development/libraries/exiv2 { };
expat = callPackage ../development/libraries/expat { };
@@ -9073,6 +9082,8 @@ with pkgs;
grpc = callPackage ../development/libraries/grpc { };
+ gsettings-qt = libsForQt5.callPackage ../development/libraries/gsettings-qt { };
+
gst_all_1 = recurseIntoAttrs(callPackage ../development/libraries/gstreamer {
callPackage = pkgs.newScope (pkgs // { libav = pkgs.ffmpeg; });
});
@@ -9543,6 +9554,8 @@ with pkgs;
libantlr3c = callPackage ../development/libraries/libantlr3c {};
+ libaom = callPackage ../development/libraries/libaom { };
+
libappindicator-gtk2 = callPackage ../development/libraries/libappindicator { gtkVersion = "2"; };
libappindicator-gtk3 = callPackage ../development/libraries/libappindicator { gtkVersion = "3"; };
@@ -11201,6 +11214,7 @@ with pkgs;
qca-qt5 = callPackage ../development/libraries/qca-qt5 { };
qmltermwidget = callPackage ../development/libraries/qmltermwidget { };
+ qmlbox2d = libsForQt59.callPackage ../development/libraries/qmlbox2d { };
qscintilla = callPackage ../development/libraries/qscintilla {
withQt5 = true;
@@ -12064,8 +12078,11 @@ with pkgs;
buildGo19Package = callPackage ../development/go-modules/generic {
go = go_1_9;
};
+ buildGo110Package = callPackage ../development/go-modules/generic {
+ go = go_1_10;
+ };
- buildGoPackage = buildGo19Package;
+ buildGoPackage = buildGo110Package;
go2nix = callPackage ../development/tools/go2nix { };
@@ -13167,6 +13184,8 @@ with pkgs;
inherit (darwin) IOKit;
};
+ nmon = callPackage ../os-specific/linux/nmon { };
+
# GNU/Hurd core packages.
gnu = recurseIntoAttrs (callPackage ../os-specific/gnu {
inherit platform;
@@ -13363,6 +13382,21 @@ with pkgs;
];
};
+ linux_4_16 = callPackage ../os-specific/linux/kernel/linux-4.16.nix {
+ kernelPatches =
+ [ kernelPatches.bridge_stp_helper
+ # See pkgs/os-specific/linux/kernel/cpu-cgroup-v2-patches/README.md
+ # when adding a new linux version
+ # kernelPatches.cpu-cgroup-v2."4.11"
+ kernelPatches.modinst_arg_list_too_long
+ ]
+ ++ lib.optionals ((platform.kernelArch or null) == "mips")
+ [ kernelPatches.mips_fpureg_emu
+ kernelPatches.mips_fpu_sigill
+ kernelPatches.mips_ext3_n32
+ ];
+ };
+
linux_testing = callPackage ../os-specific/linux/kernel/linux-testing.nix {
kernelPatches = [
kernelPatches.bridge_stp_helper
@@ -13554,7 +13588,7 @@ with pkgs;
linux = linuxPackages.kernel;
# Update this when adding the newest kernel major version!
- linuxPackages_latest = linuxPackages_4_15;
+ linuxPackages_latest = linuxPackages_4_16;
linux_latest = linuxPackages_latest.kernel;
# Build the kernel modules for the some of the kernels.
@@ -13565,17 +13599,31 @@ with pkgs;
linuxPackages_4_9 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_9);
linuxPackages_4_14 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_14);
linuxPackages_4_15 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_15);
+ linuxPackages_4_16 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_16);
# Don't forget to update linuxPackages_latest!
# Intentionally lacks recurseIntoAttrs, as -rc kernels will quite likely break out-of-tree modules and cause failed Hydra builds.
linuxPackages_testing = linuxPackagesFor pkgs.linux_testing;
- linuxPackages_custom = { version, src, configfile }:
+ linuxPackages_custom = { version, src, configfile, allowImportFromDerivation ? true }:
recurseIntoAttrs (linuxPackagesFor (pkgs.linuxManualConfig {
- inherit version src configfile stdenv;
- allowImportFromDerivation = true;
+ inherit version src configfile stdenv allowImportFromDerivation;
+ inherit (stdenv) hostPlatform;
}));
+ # This serves as a test for linuxPackages_custom
+ linuxPackages_custom_tinyconfig_kernel = let
+ base = pkgs.linuxPackages.kernel;
+ tinyLinuxPackages = pkgs.linuxPackages_custom {
+ inherit (base) version src;
+ allowImportFromDerivation = false;
+ configfile = pkgs.linuxConfig {
+ makeTarget = "tinyconfig";
+ src = base.src;
+ };
+ };
+ in tinyLinuxPackages.kernel;
+
# Build a kernel with bcachefs module
linuxPackages_testing_bcachefs = recurseIntoAttrs (linuxPackagesFor pkgs.linux_testing_bcachefs);
@@ -13613,6 +13661,20 @@ with pkgs;
# A function to build a manually-configured kernel
linuxManualConfig = makeOverridable (callPackage ../os-specific/linux/kernel/manual-config.nix {});
+
+ # Derive one of the default .config files
+ linuxConfig = { src, makeTarget ? "defconfig", name ? "kernel.config" }:
+ stdenv.mkDerivation {
+ inherit name src;
+ buildPhase = ''
+ set -x
+ make ${makeTarget}
+ '';
+ installPhase = ''
+ cp .config $out
+ '';
+ };
+
buildLinux = attrs: callPackage ../os-specific/linux/kernel/generic.nix attrs;
keyutils = callPackage ../os-specific/linux/keyutils { };
@@ -13843,6 +13905,7 @@ with pkgs;
radeontop = callPackage ../os-specific/linux/radeontop { };
raspberrypifw = callPackage ../os-specific/linux/firmware/raspberrypi {};
+ raspberrypi-tools = callPackage ../os-specific/linux/firmware/raspberrypi/tools.nix {};
regionset = callPackage ../os-specific/linux/regionset { };
@@ -14525,15 +14588,9 @@ with pkgs;
terminus_font_ttf = callPackage ../data/fonts/terminus-font-ttf { };
- tex-gyre = callPackage ../data/fonts/tex-gyre { };
+ tex-gyre = callPackages ../data/fonts/tex-gyre { };
- tex-gyre-bonum-math = callPackage ../data/fonts/tex-gyre-math { variant = "bonum"; };
-
- tex-gyre-pagella-math = callPackage ../data/fonts/tex-gyre-math { variant = "pagella"; };
-
- tex-gyre-schola-math = callPackage ../data/fonts/tex-gyre-math { variant = "schola"; };
-
- tex-gyre-termes-math = callPackage ../data/fonts/tex-gyre-math { variant = "termes"; };
+ tex-gyre-math = callPackages ../data/fonts/tex-gyre-math { };
tipa = callPackage ../data/fonts/tipa { };
@@ -14626,7 +14683,6 @@ with pkgs;
};
abiword = callPackage ../applications/office/abiword {
- inherit (gnome2) libglade libgnomecanvas;
iconTheme = gnome3.defaultIconTheme;
};
@@ -14877,7 +14933,7 @@ with pkgs;
blender = callPackage ../applications/misc/blender {
cudaSupport = config.cudaSupport or false;
- python = python35;
+ pythonPackages = python35Packages;
stdenv = overrideCC stdenv gcc6;
};
@@ -15026,6 +15082,7 @@ with pkgs;
};
cni = callPackage ../applications/networking/cluster/cni {};
+ cni-plugins = callPackage ../applications/networking/cluster/cni/plugins.nix {};
communi = libsForQt5.callPackage ../applications/networking/irc/communi { };
@@ -15209,9 +15266,6 @@ with pkgs;
inherit (gnome2) libgnomeui;
};
- dwb-unwrapped = callPackage ../applications/networking/browsers/dwb { dconf = gnome3.dconf; };
- dwb = wrapFirefox dwb-unwrapped { desktopName = "dwb"; };
-
dwm = callPackage ../applications/window-managers/dwm {
patches = config.dwm.patches or [];
};
@@ -15226,7 +15280,9 @@ with pkgs;
eaglemode = callPackage ../applications/misc/eaglemode { };
- eclipses = recurseIntoAttrs (callPackage ../applications/editors/eclipse { webkitgtk24x-gtk2 = null; });
+ eclipses = recurseIntoAttrs (callPackage ../applications/editors/eclipse {
+ jdk = jdk10;
+ });
ecs-agent = callPackage ../applications/virtualization/ecs-agent { };
@@ -15622,6 +15678,8 @@ with pkgs;
gtk2 = gtk2-x11;
};
+ gpx = callPackage ../applications/misc/gpx { };
+
gqrx = qt5.callPackage ../applications/misc/gqrx { };
gpx-viewer = callPackage ../applications/misc/gpx-viewer { };
@@ -16581,6 +16639,8 @@ with pkgs;
lyx = libsForQt5.callPackage ../applications/misc/lyx { };
+ magic-wormhole = with python3Packages; toPythonApplication magic-wormhole;
+
mail-notification = callPackage ../desktops/gnome-2/desktop/mail-notification {};
magnetophonDSP = {
@@ -16689,15 +16749,20 @@ with pkgs;
mod-distortion = callPackage ../applications/audio/mod-distortion { };
monero = callPackage ../applications/altcoins/monero {
- inherit (darwin.apple_sdk.frameworks) IOKit;
+ inherit (darwin.apple_sdk.frameworks) CoreData IOKit PCSC;
+ boost = boost15x;
};
- monero-gui = libsForQt5.callPackage ../applications/altcoins/monero-gui { };
+ monero-gui = libsForQt5.callPackage ../applications/altcoins/monero-gui {
+ boost = boost15x;
+ };
xmr-stak = callPackage ../applications/misc/xmr-stak {
hwloc = hwloc-nox;
};
+ xmrig = callPackage ../applications/misc/xmrig { };
+
monkeysAudio = callPackage ../applications/audio/monkeys-audio { };
monkeysphere = callPackage ../tools/security/monkeysphere { };
@@ -16997,6 +17062,8 @@ with pkgs;
nedit = callPackage ../applications/editors/nedit { };
+ nheko = callPackage ../applications/networking/instant-messengers/nheko { };
+
nomacs = libsForQt5.callPackage ../applications/graphics/nomacs { };
notepadqq = libsForQt5.callPackage ../applications/editors/notepadqq { };
@@ -17258,10 +17325,6 @@ with pkgs;
qiv = callPackage ../applications/graphics/qiv { };
- processing = callPackage ../applications/graphics/processing {
- jdk = jdk7;
- };
-
# perhaps there are better apps for this task? It's how I had configured my preivous system.
# And I don't want to rewrite all rules
procmail = callPackage ../applications/misc/procmail { };
@@ -17482,7 +17545,8 @@ with pkgs;
rkt = callPackage ../applications/virtualization/rkt { };
- rofi = callPackage ../applications/misc/rofi { };
+ rofi-unwrapped = callPackage ../applications/misc/rofi { };
+ rofi = callPackage ../applications/misc/rofi/wrapper.nix { };
rofi-pass = callPackage ../tools/security/pass/rofi-pass.nix { };
@@ -17704,6 +17768,8 @@ with pkgs;
curaLulzbot = callPackage ../applications/misc/cura/lulzbot.nix { };
+ curaByDagoma = callPackage ../applications/misc/curabydagoma { };
+
peru = callPackage ../applications/version-management/peru {};
pmidi = callPackage ../applications/audio/pmidi { };
@@ -17787,9 +17853,11 @@ with pkgs;
inherit sbcl lispPackages;
};
- sublime = callPackage ../applications/editors/sublime { };
+ sublime3Packages = recurseIntoAttrs (callPackage ../applications/editors/sublime/3/packages.nix { });
- sublime3 = lowPrio (callPackage ../applications/editors/sublime3 { });
+ sublime3 = sublime3Packages.sublime3;
+
+ sublime3-dev = sublime3Packages.sublime3-dev;
inherit (callPackages ../applications/version-management/subversion/default.nix {
bdbSupport = true;
@@ -17896,6 +17964,8 @@ with pkgs;
vte = gnome2.vte.override { pythonSupport = true; };
};
+ terminus = callPackage ../applications/misc/terminus { inherit (gnome2) GConf; };
+
lxterminal = callPackage ../applications/misc/lxterminal {
vte = gnome3.vte;
};
@@ -17987,6 +18057,8 @@ with pkgs;
toxic = callPackage ../applications/networking/instant-messengers/toxic { };
+ toxiproxy = callPackage ../development/tools/toxiproxy { };
+
tqsl = callPackage ../applications/misc/tqsl { };
transcode = callPackage ../applications/audio/transcode { };
@@ -18906,6 +18978,8 @@ with pkgs;
factorio-headless = callPackage ../games/factorio { releaseType = "headless"; };
+ factorio-headless-experimental = callPackage ../games/factorio { releaseType = "headless"; experimental = true; };
+
factorio-demo = callPackage ../games/factorio { releaseType = "demo"; };
factorio-mods = callPackage ../games/factorio/mods.nix { };
@@ -18957,6 +19031,8 @@ with pkgs;
gcs = callPackage ../games/gcs { };
+ gcompris = libsForQt59.callPackage ../games/gcompris { };
+
gemrb = callPackage ../games/gemrb { };
gl117 = callPackage ../games/gl-117 {};
@@ -19485,7 +19561,7 @@ with pkgs;
gnome3 = recurseIntoAttrs (callPackage ../desktops/gnome-3 { });
- gnomeExtensions = {
+ gnomeExtensions = recurseIntoAttrs {
appindicator = callPackage ../desktops/gnome-3/extensions/appindicator { };
battery-status = callPackage ../desktops/gnome-3/extensions/battery-status { };
caffeine = callPackage ../desktops/gnome-3/extensions/caffeine { };
@@ -19493,10 +19569,12 @@ with pkgs;
dash-to-dock = callPackage ../desktops/gnome-3/extensions/dash-to-dock { };
dash-to-panel = callPackage ../desktops/gnome-3/extensions/dash-to-panel { };
icon-hider = callPackage ../desktops/gnome-3/extensions/icon-hider { };
+ impatience = callPackage ../desktops/gnome-3/extensions/impatience.nix { };
mediaplayer = callPackage ../desktops/gnome-3/extensions/mediaplayer { };
nohotcorner = callPackage ../desktops/gnome-3/extensions/nohotcorner { };
no-title-bar = callPackage ../desktops/gnome-3/extensions/no-title-bar { };
remove-dropdown-arrows = callPackage ../desktops/gnome-3/extensions/remove-dropdown-arrows { };
+ system-monitor = callPackage ../desktops/gnome-3/extensions/system-monitor { };
taskwhisperer = callPackage ../desktops/gnome-3/extensions/taskwhisperer { };
timepp = callPackage ../desktops/gnome-3/extensions/timepp { };
topicons-plus = callPackage ../desktops/gnome-3/extensions/topicons-plus { };
@@ -19836,6 +19914,8 @@ with pkgs;
aspino = callPackage ../applications/science/logic/aspino {};
+ beluga = callPackage ../applications/science/logic/beluga { };
+
boogie = dotnetPackages.Boogie;
inherit (callPackage ./coq-packages.nix {})
@@ -19974,6 +20054,8 @@ with pkgs;
why3 = callPackage ../applications/science/logic/why3 {};
+ workcraft = callPackage ../applications/science/logic/workcraft {};
+
yices = callPackage ../applications/science/logic/yices {
gmp-static = gmp.override { withStatic = true; };
};
@@ -20157,6 +20239,8 @@ with pkgs;
megam = callPackage ../applications/science/misc/megam { };
+ ns-3 = callPackage ../development/libraries/science/networking/ns3 { };
+
root = callPackage ../applications/science/misc/root {
inherit (darwin.apple_sdk.frameworks) Cocoa OpenGL;
};
@@ -20523,6 +20607,8 @@ with pkgs;
nix-repl = callPackage ../tools/package-management/nix-repl { nix = nix1; };
+ nix-review = callPackage ../tools/package-management/nix-review { };
+
nix-serve = callPackage ../tools/package-management/nix-serve { };
nixos-artwork = callPackage ../data/misc/nixos-artwork { };
@@ -20752,8 +20838,12 @@ with pkgs;
terraform-inventory = callPackage ../applications/networking/cluster/terraform-inventory {};
+ terraform-provider-nixos = callPackage ../applications/networking/cluster/terraform-provider-nixos {};
+
terraform-landscape = callPackage ../applications/networking/cluster/terraform-landscape {};
+ terraform-provider-libvirt = callPackage ../applications/networking/cluster/terraform-provider-libvirt {};
+
terragrunt = callPackage ../applications/networking/cluster/terragrunt {};
terragrunt_0_11_1 = callPackage ../applications/networking/cluster/terragrunt/0.11.1.nix {
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index 56d5aada81b..f9cd2eb9433 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -67,6 +67,12 @@ in rec {
buildLlvmPackages = buildPackages.llvmPackages_5;
llvmPackages = pkgs.llvmPackages_5;
};
+ ghc842 = callPackage ../development/compilers/ghc/8.4.2.nix rec {
+ bootPkgs = packages.ghc821Binary;
+ inherit (bootPkgs) alex happy;
+ buildLlvmPackages = buildPackages.llvmPackages_5;
+ llvmPackages = pkgs.llvmPackages_5;
+ };
ghcHEAD = callPackage ../development/compilers/ghc/head.nix rec {
bootPkgs = packages.ghc821Binary;
inherit (bootPkgs) alex happy;
@@ -128,6 +134,11 @@ in rec {
ghc = bh.compiler.ghc841;
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.4.x.nix { };
};
+ ghc842 = callPackage ../development/haskell-modules {
+ buildHaskellPackages = bh.packages.ghc842;
+ ghc = bh.compiler.ghc842;
+ compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.4.x.nix { };
+ };
ghcHEAD = callPackage ../development/haskell-modules {
buildHaskellPackages = bh.packages.ghcHEAD;
ghc = bh.compiler.ghcHEAD;
diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix
index 65d3de2d9e2..e7dba3e8855 100644
--- a/pkgs/top-level/ocaml-packages.nix
+++ b/pkgs/top-level/ocaml-packages.nix
@@ -330,6 +330,8 @@ let
js_of_ocaml-ppx = callPackage ../development/tools/ocaml/js_of_ocaml/ppx.nix {};
+ js_of_ocaml-ppx_deriving_json = callPackage ../development/tools/ocaml/js_of_ocaml/ppx_deriving_json.nix {};
+
jsonm = callPackage ../development/ocaml-modules/jsonm { };
lablgl = callPackage ../development/ocaml-modules/lablgl { };
@@ -366,16 +368,18 @@ let
lru = callPackage ../development/ocaml-modules/lru { };
- lwt2 = callPackage ../development/ocaml-modules/lwt { };
+ lwt2 = callPackage ../development/ocaml-modules/lwt/legacy.nix { };
lwt3 = if lib.versionOlder "4.02" ocaml.version
- then callPackage ../development/ocaml-modules/lwt {
- version = "3.0.0";
- }
+ then callPackage ../development/ocaml-modules/lwt { }
else throw "lwt3 is not available for OCaml ${ocaml.version}";
ocaml_lwt = if lib.versionOlder "4.02" ocaml.version then lwt3 else lwt2;
+ lwt_ppx = callPackage ../development/ocaml-modules/lwt/ppx.nix {
+ lwt = lwt3;
+ };
+
lwt_react = callPackage ../development/ocaml-modules/lwt_react {
lwt = lwt3;
};
@@ -650,7 +654,9 @@ let
ssl = callPackage ../development/ocaml-modules/ssl { };
- stog = callPackage ../applications/misc/stog { };
+ stog = callPackage ../applications/misc/stog {
+ ocaml_lwt = lwt2;
+ };
stringext = callPackage ../development/ocaml-modules/stringext { };
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index 13554ff6ee6..c65adafc78f 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -5756,6 +5756,20 @@ let self = _self // overrides; _self = with self; {
};
};
+ FilePid = buildPerlPackage rec {
+ name = "File-Pid-1.01";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/C/CW/CWEST/${name}.tar.gz";
+ sha256 = "bafeee8fdc96eb06306a0c58bbdb7209b6de45f850e75fdc6b16db576e05e422";
+ };
+ propagatedBuildInputs = [ ClassAccessor ];
+ meta = {
+ license = stdenv.lib.licenses.free; # Same as Perl
+ description = "Pid File Manipulation";
+ maintainers = [ maintainers.limeytexan ];
+ };
+ };
+
Filepushd = buildPerlPackage {
name = "File-pushd-1.005";
src = fetchurl {
@@ -5847,21 +5861,6 @@ let self = _self // overrides; _self = with self; {
};
};
- FileTemp = null;
-
- FileType = buildPerlPackage {
- name = "File-Type-0.22";
- src = fetchurl {
- url = mirror://cpan/authors/id/P/PM/PMISON/File-Type-0.22.tar.gz;
- sha256 = "0hfkaafp6wb0nw19x47wc6wc9mwlw8s2rxiii3ylvzapxxgxjp6k";
- };
- meta = {
- description = "File::Type uses magic numbers (typically at the start of a file) to determine the MIME type of that file.";
- license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
- platforms = with stdenv.lib.platforms; linux ++ darwin;
- };
- };
-
FileSlurp = buildPerlPackage {
name = "File-Slurp-9999.19";
# WARNING: check on next update if deprecation warning is gone
@@ -5902,6 +5901,48 @@ let self = _self // overrides; _self = with self; {
};
};
+ FileTail = buildPerlPackage rec {
+ name = "File-Tail-1.3";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/M/MG/MGRABNAR/${name}.tar.gz";
+ sha256 = "1ixg6kn4h330xfw3xgvqcbzfc3v2wlzjim9803jflhvfhf0rzl16";
+ };
+ meta = {
+ description = "Perl extension for reading from continously updated files";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ maintainers = [ maintainers.limeytexan ];
+ };
+ };
+
+ FileTemp = null;
+
+ FileTouch = buildPerlPackage rec {
+ name = "File-Touch-0.11";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/N/NE/NEILB/${name}.tar.gz";
+ sha256 = "e379a5ff89420cf39906e5ceff309b8ce958f99f9c3e57ad52b5002a3982d93c";
+ };
+ meta = {
+ homepage = https://github.com/neilb/File-Touch;
+ description = "Update file access and modification times, optionally creating files if needed";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ maintainers = [ maintainers.limeytexan ];
+ };
+ };
+
+ FileType = buildPerlPackage {
+ name = "File-Type-0.22";
+ src = fetchurl {
+ url = mirror://cpan/authors/id/P/PM/PMISON/File-Type-0.22.tar.gz;
+ sha256 = "0hfkaafp6wb0nw19x47wc6wc9mwlw8s2rxiii3ylvzapxxgxjp6k";
+ };
+ meta = {
+ description = "File::Type uses magic numbers (typically at the start of a file) to determine the MIME type of that file.";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ platforms = with stdenv.lib.platforms; linux ++ darwin;
+ };
+ };
+
FileUtil = buildPerlPackage rec {
name = "File-Util-4.161950";
src = fetchurl {
@@ -6743,6 +6784,18 @@ let self = _self // overrides; _self = with self; {
};
};
+ HTMLTagCloud = buildPerlPackage rec {
+ name = "HTML-TagCloud-0.38";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/R/RO/ROBERTSD/${name}.tar.gz";
+ sha256 = "05bhnrwwlwd6cj3cn91zw5r99xddvy142bznid26p1pg5m3rk029";
+ };
+ meta = {
+ description = "Generate An HTML Tag Cloud";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
HTMLQuoted = buildPerlPackage {
name = "HTML-Quoted-0.04";
src = fetchurl {
@@ -8741,6 +8794,14 @@ let self = _self // overrides; _self = with self; {
};
};
+ MathVecStat = buildPerlPackage rec {
+ name = "Math-VecStat-0.08";
+ src = fetchurl {
+ url = "mirror://cpan/modules/by-module/Math/${name}.tar.gz";
+ sha256 = "03bdcl9pn2bc9b50c50nhnr7m9wafylnb3v21zlch98h9c78x6j0";
+ };
+ };
+
Memoize = buildPerlPackage {
name = "Memoize-1.03.tgz";
src = fetchurl {
@@ -10502,14 +10563,7 @@ let self = _self // overrides; _self = with self; {
};
};
- NetLDAP = buildPerlPackage {
- name = "Net-LDAP-0.4001";
- propagatedBuildInputs = [ ConvertASN1 ];
- src = fetchurl {
- url = mirror://cpan/authors/id/G/GB/GBARR/perl-ldap-0.4001.tar.gz;
- sha256 = "0spwid70yxkh5zbad3ldw8yb2m5shkm59a7f0kllw8bb7ccczqps";
- };
- };
+ NetLDAP = perlldap;
NetOAuth = buildPerlPackage {
name = "Net-OAuth-0.28";
@@ -11244,6 +11298,22 @@ let self = _self // overrides; _self = with self; {
};
};
+ perlldap = buildPerlPackage rec {
+ name = "perl-ldap-0.65";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/M/MA/MARSCHAP/${name}.tar.gz";
+ sha256 = "5f57dd261dc16ebf942a272ddafe69526598df71151a51916edc37a4f2f23834";
+ };
+ buildInputs = [ TextSoundex ];
+ propagatedBuildInputs = [ ConvertASN1 ];
+ meta = {
+ homepage = http://ldap.perl.org/;
+ description = "LDAP client library";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ maintainers = [ maintainers.limeytexan ];
+ };
+ };
+
PerlMagick = buildPerlPackage rec {
name = "PerlMagick-6.89-1";
src = fetchurl {
@@ -11868,11 +11938,11 @@ let self = _self // overrides; _self = with self; {
};
};
- PodPerldoc = buildPerlPackage {
- name = "Pod-Perldoc-3.25";
+ PodPerldoc = buildPerlPackage rec {
+ name = "Pod-Perldoc-3.28";
src = fetchurl {
- url = mirror://cpan/authors/id/M/MA/MALLEN/Pod-Perldoc-3.25.tar.gz;
- sha256 = "f1a4b3ac7aa244485456b0e8733c773bbb39ae35b01a59515f6cba6bbe293a84";
+ url = "mirror://cpan/authors/id/M/MA/MALLEN/${name}.tar.gz";
+ sha256 = "0kf6xwdha8jl0nxv60r2v7xsfnvv6i3gy135xsl40g71p02ychfc";
};
meta = {
description = "Look up Perl documentation in Pod format";
diff --git a/pkgs/top-level/php-packages.nix b/pkgs/top-level/php-packages.nix
index c36cf6f9215..02d9ec51b3d 100644
--- a/pkgs/top-level/php-packages.nix
+++ b/pkgs/top-level/php-packages.nix
@@ -383,11 +383,11 @@ let
php-cs-fixer = pkgs.stdenv.mkDerivation rec {
name = "php-cs-fixer-${version}";
- version = "2.10.4";
+ version = "2.11.1";
src = pkgs.fetchurl {
url = "https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v${version}/php-cs-fixer.phar";
- sha256 = "00i90cbd6lkq3wssp8z2b0l2q8ahajxlrzdrqcf2jnjdhv2xms4a";
+ sha256 = "1270s5y7bgcml452lngq4fqn3a1mx15gfgmgcczjiiv0fxir446b";
};
phases = [ "installPhase" ];
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 963b255a887..c5211a1a314 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -233,6 +233,8 @@ in {
email_validator = callPackage ../development/python-modules/email-validator { };
+ ewmh = callPackage ../development/python-modules/ewmh { };
+
dbus-python = callPackage ../development/python-modules/dbus {
dbus = pkgs.dbus;
};
@@ -634,7 +636,7 @@ in {
meta = {
description = "Atomic file writes on POSIX";
homepage = https://pypi.python.org/pypi/atomicwrites/0.1.0;
- maintainers = with maintainers; [ matthiasbeyer ];
+ maintainers = with maintainers; [ ];
};
};
@@ -1151,11 +1153,11 @@ in {
};
betamax = buildPythonPackage rec {
- name = "betamax-0.8.0";
+ name = "betamax-0.8.1";
src = pkgs.fetchurl {
url = "mirror://pypi/b/betamax/${name}.tar.gz";
- sha256 = "18f8v5gng3j773jlbbzx4rg1i4y2zw3m2l1zpmbvp8bh5a2q1i42";
+ sha256 = "1hki1c2vs7adq7zr56wi6i5bhrkia4s2ywpv2c98ibnczz709w2v";
};
propagatedBuildInputs = [ self.requests ];
@@ -1850,17 +1852,17 @@ in {
bugwarrior = buildPythonPackage rec {
name = "bugwarrior-${version}";
- version = "1.4.0";
+ version = "1.5.1";
src = pkgs.fetchurl {
url = "mirror://pypi/b/bugwarrior/${name}.tar.gz";
- sha256 = "1jkz5vzbwspi1jcb3qsgcl619yip77khb696pc3ryk0pdhjhgs5w";
+ sha256 = "0kxknjbw5kchd88i577vlzibg8j60r7zzdhbnragj9wg5s3w60xb";
};
buildInputs = with self; [ mock unittest2 nose /* jira megaplan */ ];
propagatedBuildInputs = with self; [
twiggy requests offtrac bugzilla taskw dateutil pytz keyring six
- jinja2 pycurl dogpile_cache lockfile click pyxdg
+ jinja2 pycurl dogpile_cache lockfile click pyxdg future15
];
# for the moment jira>=0.22 and megaplan>=1.4 are missing for running the test suite.
@@ -2918,6 +2920,8 @@ in {
python-jose = callPackage ../development/python-modules/python-jose {};
+ python-ly = callPackage ../development/python-modules/python-ly {};
+
pyhepmc = buildPythonPackage rec {
name = "pyhepmc-${version}";
version = "0.5.0";
@@ -4757,7 +4761,7 @@ in {
description = "Python humanize utilities";
homepage = https://github.com/jmoiron/humanize;
license = licenses.mit;
- maintainers = with maintainers; [ matthiasbeyer ];
+ maintainers = with maintainers; [ ];
platforms = platforms.linux; # can only test on linux
};
@@ -4845,7 +4849,7 @@ in {
description = "WSGI HTTP Digest Authentication middleware";
homepage = https://github.com/jonashaag/httpauth;
license = licenses.bsd2;
- maintainers = with maintainers; [ matthiasbeyer ];
+ maintainers = with maintainers; [ ];
};
};
@@ -4870,29 +4874,7 @@ in {
};
- imbalanced-learn = buildPythonPackage rec {
- name = "imbalanced-learn-${version}";
- version = "0.3.2";
-
- src = pkgs.fetchurl {
- url = "mirror://pypi/i/imbalanced-learn/${name}.tar.gz";
- sha256 = "0j76m0rrsvyqj9bimky9m7b609y5v6crf9apigww3xvcnchhj901";
- };
-
- preConfigure = ''
- export HOME=$PWD
- '';
-
- propagatedBuildInputs = with self; [ scikitlearn ];
- buildInputs = with self; [ nose pytest pandas ];
-
- meta = {
- description = "Library offering a number of re-sampling techniques commonly used in datasets showing strong between-class imbalance";
- homepage = https://github.com/scikit-learn-contrib/imbalanced-learn;
- license = with licenses; [ mit ];
- };
-
- };
+ imbalanced-learn = callPackage ../development/python-modules/imbalanced-learn { };
imread = buildPythonPackage rec {
name = "python-imread-${version}";
@@ -5008,6 +4990,8 @@ in {
jdcal = callPackage ../development/python-modules/jdcal { };
+ jieba = callPackage ../development/python-modules/jieba { };
+
internetarchive = callPackage ../development/python-modules/internetarchive {};
JPype1 = callPackage ../development/python-modules/JPype1 {};
@@ -5698,6 +5682,11 @@ in {
};
};
+ poppler-qt5 = callPackage ../development/python-modules/poppler-qt5 {
+ inherit (pkgs.qt5) qtbase;
+ inherit (pkgs.libsForQt5) poppler;
+ };
+
poyo = buildPythonPackage rec {
version = "0.4.0";
name = "poyo-${version}";
@@ -7681,6 +7670,15 @@ in {
};
future = callPackage ../development/python-modules/future { };
+ future15 = self.future.overridePythonAttrs (old: rec {
+ name = "future-${version}";
+ version = "0.15.2";
+ src = fetchPypi {
+ pname = "future";
+ version = "0.15.2";
+ sha256 = "15wvcfzssc68xqnqi1dq4fhd0848hwi9jn42hxyvlqna40zijfrx";
+ };
+ });
futures = buildPythonPackage rec {
name = "futures-${version}";
@@ -7954,14 +7952,14 @@ in {
github3_py = buildPythonPackage rec {
name = "github3.py-${version}";
- version = "1.0.0a4";
+ version = "1.0.2";
src = pkgs.fetchurl {
url = "mirror://pypi/g/github3.py/${name}.tar.gz";
- sha256 = "0rhnrhb7qc60h82hkd4wnj1jh544yzrf4pjmn4rqacdi59p7f3jp";
+ sha256 = "1g91a8q9w0dalf4y4v0g72zi7vfrxwpx639an28vvys20y5zlvwp";
};
- buildInputs = with self; [ unittest2 pytest mock betamax betamax-matchers ];
+ buildInputs = with self; [ unittest2 pytest mock betamax betamax-matchers dateutil ];
propagatedBuildInputs = with self; [ requests pyopenssl uritemplate_py
ndg-httpsclient requests_toolbelt pyasn1 ];
@@ -8090,6 +8088,8 @@ in {
google_gax = callPackage ../development/python-modules/google_gax { };
+ gpgme = toPythonModule (pkgs.gpgme.override { withPython=true; });
+
grammalecte = callPackage ../development/python-modules/grammalecte { };
greenlet = buildPythonPackage rec {
@@ -8813,7 +8813,7 @@ in {
keyutils = callPackage ../development/python-modules/keyutils { };
klein = callPackage ../development/python-modules/klein { };
-
+
koji = callPackage ../development/python-modules/koji { };
kombu = buildPythonPackage rec {
@@ -9181,6 +9181,8 @@ in {
marisa = pkgs.marisa;
};
+ marisa-trie = callPackage ../development/python-modules/marisa-trie { };
+
markupsafe = buildPythonPackage rec {
name = "markupsafe-${version}";
version = "1.0";
@@ -9692,6 +9694,8 @@ in {
};
});
+ mock-open = callPackage ../development/python-modules/mock-open { };
+
modestmaps = buildPythonPackage rec {
name = "ModestMaps-1.4.6";
@@ -9837,30 +9841,7 @@ in {
};
-
- mrbob = buildPythonPackage rec {
- name = "mrbob-${version}";
- version = "0.1.2";
-
- src = pkgs.fetchurl {
- url = "mirror://pypi/m/mr.bob/mr.bob-${version}.tar.gz";
- sha256 = "6737eaf98aaeae85e07ebef844ee5156df2f06a8b28d7c3dcb056f811c588121";
- };
-
- buildInputs = [ pkgs.glibcLocales self.mock ];
-
- disabled = isPy3k;
-
- LC_ALL="en_US.UTF-8";
-
- propagatedBuildInputs = with self; [ argparse jinja2 six ] ++
- (optionals isPy26 [ importlib ordereddict ]);
-
- meta = {
- homepage = https://github.com/domenkozar/mr.bob.git;
- description = "A tool to generate code skeletons from templates";
- };
- };
+ mrbob = callPackage ../development/python-modules/mrbob {};
msgpack = callPackage ../development/python-modules/msgpack {};
@@ -10758,6 +10739,8 @@ in {
};
};
+ langcodes = callPackage ../development/python-modules/langcodes { };
+
livestreamer = buildPythonPackage rec {
version = "1.12.2";
name = "livestreamer-${version}";
@@ -11345,6 +11328,8 @@ in {
propagatedBuildInputs = with self; [ six requests ];
};
+ mecab-python3 = callPackage ../development/python-modules/mecab-python3 { };
+
mox3 = buildPythonPackage rec {
name = "mox3-${version}";
version = "0.23.0";
@@ -14492,6 +14477,8 @@ in {
};
};
+ Rtree = callPackage ../development/python-modules/Rtree { inherit (pkgs) libspatialindex; };
+
squaremap = buildPythonPackage rec {
name = "squaremap-1.0.4";
disabled = isPy3k;
@@ -15441,17 +15428,29 @@ in {
sipsimple = buildPythonPackage rec {
name = "sipsimple-${version}";
- version = "3.0.0";
+ version = "3.1.1";
disabled = isPy3k;
- src = pkgs.fetchurl {
- url = "http://download.ag-projects.com/SipClient/python-${name}.tar.gz";
- sha256 = "1q35kgz151rr99240jq55rs39y741m8shh9yihl3x95rkjxchji4";
+ src = pkgs.fetchdarcs {
+ url = http://devel.ag-projects.com/repositories/python-sipsimple;
+ rev = "release-${version}";
+ sha256 = "0jdilm11f5aahxrzrkxrfx9sgjgkbla1r0wayc5dzd2wmjrdjyrg";
};
+ preConfigure = ''
+ chmod +x ./deps/pjsip/configure ./deps/pjsip/aconfigure
+ '';
+
nativeBuildInputs = [ pkgs.pkgconfig ];
buildInputs = with pkgs; [ alsaLib ffmpeg libv4l sqlite libvpx ];
propagatedBuildInputs = with self; [ cython pkgs.openssl dnspython dateutil xcaplib msrplib lxml python-otr ];
+
+ meta = {
+ description = "SIP SIMPLE implementation for Python";
+ homepage = http://sipsimpleclient.org/;
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ pSub ];
+ };
};
@@ -16643,11 +16642,11 @@ in {
uritemplate_py = buildPythonPackage rec {
name = "uritemplate.py-${version}";
- version = "0.3.0";
+ version = "3.0.0";
src = pkgs.fetchurl {
url = "mirror://pypi/u/uritemplate.py/${name}.tar.gz";
- sha256 = "0xvvdiwnag2pdi96hjf7v8asdia98flk2rxcjqnwcs3rk99alygx";
+ sha256 = "1k5zvc5fyyrgv33mi3p86a9jn5n0pqffs9cviz92fw6q1kf7zvmr";
};
meta = with stdenv.lib; {
@@ -16741,7 +16740,7 @@ in {
homepage = https://github.com/uri-templates/uritemplate-py;
description = "Python implementation of URI Template";
license = licenses.asl20;
- maintainers = with maintainers; [ matthiasbeyer ];
+ maintainers = with maintainers; [ ];
};
};
@@ -17109,6 +17108,8 @@ EOF
widgetsnbextension = callPackage ../development/python-modules/widgetsnbextension { };
+ wordfreq = callPackage ../development/python-modules/wordfreq { };
+
magic-wormhole = callPackage ../development/python-modules/magic-wormhole { };
magic-wormhole-transit-relay = callPackage ../development/python-modules/magic-wormhole-transit-relay { };
@@ -18616,6 +18617,8 @@ EOF
};
};
+ vxi11 = callPackage ../development/python-modules/vxi11 { };
+
svg2tikz = self.buildPythonPackage {
name = "svg2tikz-1.0.0";
disabled = ! isPy27;
@@ -18718,6 +18721,10 @@ EOF
propagatedBuildInputs = with self; [];
};
+ pybindgen = callPackage ../development/python-modules/pybindgen {};
+
+ pygccxml = callPackage ../development/python-modules/pygccxml {};
+
pymacaroons-pynacl = callPackage ../development/python-modules/pymacaroons-pynacl { };
pynacl = callPackage ../development/python-modules/pynacl { };
@@ -19778,12 +19785,15 @@ EOF
tensorflow-tensorboard = callPackage ../development/python-modules/tensorflow-tensorboard { };
- tensorflow = callPackage ../development/python-modules/tensorflow rec {
- cudaSupport = pkgs.config.cudaSupport or false;
- inherit (pkgs.linuxPackages) nvidia_x11;
- cudatoolkit = pkgs.cudatoolkit9;
- cudnn = pkgs.cudnn_cudatoolkit9;
- };
+ tensorflow =
+ if stdenv.isDarwin
+ then callPackage ../development/python-modules/tensorflow/bin.nix { }
+ else callPackage ../development/python-modules/tensorflow rec {
+ cudaSupport = pkgs.config.cudaSupport or false;
+ inherit (pkgs.linuxPackages) nvidia_x11;
+ cudatoolkit = pkgs.cudatoolkit9;
+ cudnn = pkgs.cudnn_cudatoolkit9;
+ };
tensorflowWithoutCuda = self.tensorflow.override {
cudaSupport = false;
@@ -20187,6 +20197,8 @@ EOF
yapf = callPackage ../development/python-modules/yapf { };
+ black = callPackage ../development/python-modules/black { };
+
autobahn = callPackage ../development/python-modules/autobahn { };
jsonref = callPackage ../development/python-modules/jsonref { };